Spaces:
Runtime error
Runtime error
File size: 1,604 Bytes
089ac6b |
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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# ReferenceBot
## Installation
Follow the instructions below to run the Streamlit server locally.
### Pre-requisites
Make sure you have Python `≥3.10` installed.
### Steps
These instructions were tested on macOS 13.6 Ventura with ARM CPU and Python `3.10.11`.
1. Clone the repository:
```bash
git clone https://github.com/andreped/ReferenceBot
cd ReferenceBot
```
2. Setup virtual environment and install dependencies:
```bash
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```
3. Create the secrets file at `.streamlit/secrets.toml` and fill in the relevant info:
```bash
OPENAI_API_KEY = "<insert OpenAI API key>"
CHATGPT_MODEL = "<insert model name>"
OPENAI_API_BASE = "https://<insert-openai-service-name>.openai.azure.com"
OPENAI_API_VERSION = "<insert version>"
ENGINE = "<insert deployment model name>"
ENGINE_EMBEDDING = "<insert deployment embedding name>"
```
4. Run the Streamlit server
```bash
streamlit run knowledge_gpt/main.py
```
## Build with Docker
Run the following commands to build and run the Docker image.
```bash
cd knowledge_gpt
docker build -t ReferenceBot .
docker run -p 8501:8501 ReferenceBot
```
Open http://localhost:8501 in your browser to access the app.
## Acknowledgements
We have built on-top of [KnowledgeGPT](https://github.com/mmz-001/knowledge_gpt) to enable the tool be be used with Azure OpenAI Services. Thus, all credit should go towards the original developers.
## License
Distributed under the MIT License. See [LICENSE](https://github.com/andreped/ReferenceBot/blob/main/LICENSE) for more information.
|