Spaces:
Running
Running
File size: 367 Bytes
d4a7025 |
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 |
# simple-chat-bot
This is a simple chat bot using openAI GPT models.
## Create env
1. Create conda env
```
conda create -n chat_bot_env python=3.10
```
2. Activate env
```
conda activate chat_bot_env
```
3. install packages
```
pip install -r requirements.txt
```
## Run the application
```
streamlit run src\app.py
```
|