- Create a virtual env using
python3 -m venv venv
- Activate the virtual environment using
source venv/bin/activate
- Install all the dependencies needed for this application using
pip install -r requirements.txt
- Create a .env file and add following environment variables in the file `` OPENAI_API_KEY=sk-...
- Run server using
streamlit run main.py
command