# simple-chat-bot This is a simple chat bot using openAI GPT models. ## Create env 1. Create conda env ``` conda create -n chat_bot_env python=3.10 ``` 2. Activate env ``` conda activate chat_bot_env ``` 3. install packages ``` pip install -r requirements.txt ``` ## Run the application ``` streamlit run src\app.py ```