In this project, we implement chatbot trained on our own data (Admissions, Insitutions, Professional Insertion...). This chatbot answers any questions about these data.
This shows how to setup the environement with anaconda to run the project
- Clone the repo
git clone [email protected]:tanios13/Chatbot.git
- Open the Anaconda Prompt, cd to the directory of the project and create a new env:
conda create --name myenv python=3.8
- Install the list of required packages:
pip install -r requirements.txt
- Install the package in editable mode (used to fix import from sibling folders):
pip install -e .
- Export the OPENAI api key
conda env config vars set OPENAI_API_KEY=sky
conda deactivate env_name
conda activate env_name
- Export the PINECONE api key
conda env config vars set PINECONE_API_KEY=sky
conda deactivate env_name
conda activate env_name
- Use your new env as your python interpreter in your editor.