This project we built a chatbot for the Duke AI MEng program. The goal of the chatbot is to be able to answer questions from prospective students about our AI Master of Engineering program.
- Python 3.8+
- Required dependencies (see requirements.txt)
After you fork and git clone the project, You should do the following steps:
- Prepare for the virtual environment
python -m venv venv - Activate virtual environment.
Windows:venv\Scripts\activate, MacOS or Linux:source venv/bin/activate - Install required packages
pip install -r requirements.txt
To run the chatbot, you can run the following command:
python -m streamlit run src/web/web_demo.py --server.port 8000 --server.address 0.0.0.0 --browser.gatherUsageStats false
