Spaces:
Sleeping
Sleeping
File size: 889 Bytes
221f416 4a5efb8 9cbc442 4a5efb8 221f416 d4a7025 ee2d18c d4a7025 ee2d18c d4a7025 ee2d18c d4a7025 ee2d18c d4a7025 ee2d18c 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
---
title: This is a simple chat bot using openAI GPT models.
colorFrom: red
colorTo: green
emoji: 👾
sdk: streamlit
sdk_version: 1.31.1
app_file: app.py
pinned: false
---
# simple-chat-bot
This is a simple chat bot using openAI GPT models.
## Docker
1. Create the docker container
```bash
docker build -t streamlit .
```
2. run the container
```bash
docker run -p 8501:8501 streamlit
```
3. The application is running on `http://localhost:8501/` URL.
## Create env
1. Create conda env
```bash
conda create -n chat_bot_env python=3.10
```
2. Activate env
```bash
conda activate chat_bot_env
```
3. install packages
```bash
pip install -r requirements.txt
```
## Run the application
1. start the application
```bash
streamlit run src\app.py
```
|