Python >= 3.8.1
-
Clone the repository
-
create a virtual Environment by using this cmd
python3 -m venv env
orpython -m venv env
for windows users -
Activate the virual environment by using cmd
source env/bin/activate
(For mac and Linux) orenv/Scripts/Activate.ps1
(Form windows users) . -
Install packages using
pip3 install -r requirements.txt
-
Inside
keys
folder create a file namedkey.py
and put the secret key there.open_ai_key="your openai secret key"
-
Now run the application by using cmd :
uvicorn main:app --reload
-
the backend will run on
8000
port now.