- If you are using
poetry
you can start with:
poetry shell
poetry install
- Then you are done with python dependencies installation.
- But if you don't have
poetry
that ok too you can use pip to install dependencies fromrequirments.txt
file as well.
pip install -r requirements.txt
- or using conda to create new environment.
conda create -n test python=3.11 -y
conda activate test
pip install -r requirements.txt
- Remember to use python version
^3.11
.
- Export OpenAI token by using:
cp .env.development .env
- After complete install dependecies, you can now start running the chatbot.
- run these commands to start chatbot.
set -a
source .env
python frontend/front_end.py
- Then go to this link to use chatbot's user interface: http://127.0.0.1:7861/