git clone https://github.com/mrn3088/tutor.git
python3 -m venv venv
source venv/bin/activate # on linux/macos
venv\Scripts\activate # on windows
mkdir db
mkdir document
pip install -r requirements.txt
brew tap mongodb/brew
brew install mongodb-community
brew services start mongodb-community
sudo apt-get install -y mongodb-org
sudo systemctl start mongod
Please follow the instructions here.
echo "OPENAI_API_KEY=YOUR_API_KEY" > .env
streamlit run app.py