Skip to content

mattoofahad/ChatBot-Template

Repository files navigation

title colorFrom colorTo emoji sdk sdk_version app_file pinned
This is a simple chat bot using openAI GPT models.
red
green
👾
streamlit
1.31.1
app.py
false

simple-chat-bot

This is a simple chat bot using openAI GPT models.

Docker

  1. Create the docker container

    docker build -t streamlit .
  2. run the container

    docker run -p 8501:8501 streamlit
  3. The application is running on http://localhost:8501/ URL.

Create env

  1. Create conda env

    conda create -n chat_bot_env python=3.10 -y
  2. Activate env

    conda activate chat_bot_env
  3. install packages

    pip install -r requirements.txt

Run the application

  1. start the application
    streamlit run src\app.py