deepset/search-all-the-docs
26
1---2title: SEARCH ALL THE DOCS3emoji: ๐4colorFrom: yellow5colorTo: pink6python_version: 3.117sdk: streamlit8sdk_version: 1.27.29app_file: main.py10pinned: false11---12 1314 15## Getting started16 17First create your virtual env so you don't pollute your OS environment.18This demo has only been tested with Python 3.11, so I suggest you use that.19 20```shell21mkvirtualenv search-all-the-docs22workon search-all-the-docs23```24 25Install the dependencies:26 27```shell28pip install -r requirements.txt29```30 31Create a `.env` file with your OpenAI key:32 33```34OPENAI_API_KEY="<your_key_here>"35```36 37And you're good to go!38 39```shell40streamlit run main.py41```42 