Spaces:
Sleeping
Sleeping
File size: 663 Bytes
2ebf9d3 1bb783b f3fc704 e928b26 f3fc704 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
---
title: SEARCH ALL THE DOCS
emoji: 🔎
colorFrom: yellow
colorTo: pink
python_version: 3.11
sdk: streamlit
sdk_version: 1.27.2
app_file: main.py
pinned: false
---
![SEARCH ALL THE DOCS](meme.jpg)
## Getting started
First create your virtual env so you don't pollute your OS environment.
This demo has only been tested with Python 3.11, so I suggest you use that.
```shell
mkvirtualenv search-all-the-docs
workon search-all-the-docs
```
Install the dependencies:
```shell
pip install -r requirements.txt
```
Create a `.env` file with your OpenAI key:
```
OPENAI_API_KEY="<your_key_here>"
```
And you're good to go!
```shell
streamlit run main.py
```
|