simple-chat-bot / README.md
Fahad Mattoo
Simple app (#5) (#6)
d4a7025 unverified
|
raw
history blame
367 Bytes
# 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
```