This repository contains the code for building an Agentic Rag (a type of language model) using the LlamaIndex library. The project utilizes various components, including Python files, asset directories, and a virtual environment.
To get started with this project, follow these steps:
- Clone the repository to your local machine.
- Create a new virtual environment using your preferred tool (e.g.,
python -m venv venv
for Python's built-invenv
module). - Activate the virtual environment (e.g.,
source venv/bin/activate
on Unix-based systems orvenv\Scripts\activate
on Windows). - Install the required Python packages by running
pip install -r requirements.txt
. - Set up the necessary environment variables (if applicable) in the
.env
file. - Open the
RouterQueryEngine.ipynb
Jupyter Notebook and follow the instructions provided to build and interact with the Agentic Rag model.
If you'd like to contribute to this project, please follow the standard Git workflow:
- Fork the repository
- Create a new branch for your feature or bug fix
- Make your changes and commit them with descriptive commit messages
- Push your changes to your forked repository
- Submit a pull request to the main repository
This project is licensed under the MIT License. Please see the LICENSE file for more details.
- LlamaIndex - The library used for building the Agentic Rag model.
- Other relevant libraries or resources