https://github.com/IAmBlackHacker/openai-chatbot/blob/main/DesignDocument.md
Python 3.10.9
Install Virtual Environment
pytohn -m pip install virtualenv
Create Virtual Environment
python -m virtualenv venv
Activate Virtual Environment
source ./venv/bin/activate
Go Inside chatbot-backend folder in terminal
cd chatbot-backend
Install Dependencies
python -m pip install -r requirements.txt
Set API Key
export OPENAI_API_KEY=<YOUR_OPENAPI_KEY>
Start the backend server
python app.py
Check that backend server should be running at http://localhost:5001
node v20.17.0
yarn 4.5.0
cd chatbot-ui
yarn start
Check that frontend server should be running at http://localhost:3000