This is a simple AI chat bot that can be used to answer questions. The chatbot privides users with a choice of using multiple models for text generation like gpt-3.5-turbo-instruct, davinci, text-curie-001 and babbage.
To get a local copy up and running follow these simple example steps.
Below is an example of how you can instruct your audience on installing and setting up your app. This template doesn't rely on any external dependencies or services.
- Fork this repo- fork
- Clone the forked repo
git clone https://github.com/your_username_/forked-reo-name.git
- Go the preoject directory
cd path/to/cloned/repo/ - Make a new virtual environment
conda create -p venv python==3.9 -y conda activate venv/
- Install requirements
and
pip install -r requirements.txt
pip install -r requirements2.txt
- Setup your OpenAI api keys in
.envfileOPENAI_API_KEY = "your-api-key" - Run the dashboard
streamlit run app.py
