Spaces:
Running
Running
metadata
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
Create the docker container
docker build -t streamlit .
run the container
docker run -p 8501:8501 streamlit
The application is running on
http://localhost:8501/
URL.
Create env
Create conda env
conda create -n chat_bot_env python=3.10 -y
Activate env
conda activate chat_bot_env
install packages
pip install -r requirements.txt
Run the application
- start the application
streamlit run app.py
Local Action Commands
Pylint
pylint src