# # MSSE AI Engineering Project This project is a Retrieval-Augmented Generation (RAG) application that answers questions about a corpus of company policies. ## Setup 1. Clone the repository: ```bash git clone https://github.com/sethmcknight/msse-ai-engineering.git cd msse-ai-engineering ``` 2. Create and activate a virtual environment: ```bash python3 -m venv venv source venv/bin/activate ``` 3. Install the dependencies: ```bash pip install -r requirements.txt ``` ## Running the Application To run the Flask application: ```bash flask run ``` ## Running Tests To run the test suite: ```bash pytest ``` Repo for the Quantic MSSE AI Engineering project code