Find a detailed explanation of the project in our team's confluence page here.
Please follow these steps mentioned below to run this project in your local.
Clone the repository
git clone https://github.com/VamsiPranav/kai.git
cd kaiCreate a Virtual Environment and activate it
python3 -m venv .venv
source .venv/bin/activateInstall python dependencies
python3 -m pip install -r requirements.txtInstall npm dependencies for Front-End
npm installInstall Ollama and run the below script to download llm model
ollama pull llama3.1:8bStart the Back-End server for langchain via Flask
python3 app.pyStart the Front-End server in another terminal
python3 -m http.serverOpen the below link in a browser
http://localhost:8000