simple-chat-bot / README.md
mattoofahad
updateing
28a4b1b
|
raw
history blame contribute delete
No virus
952 Bytes

A newer version of the Streamlit SDK is available: 1.38.0

Upgrade
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

  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 app.py
    

Local Action Commands

Pylint

pylint src