Welcome to GraphRAG Local with Index/Prompt-Tuning and Querying/Chat UIs! This project is an adaptation of Microsoft's GraphRAG, tailored to support local models and featuring a comprehensive interactive user interface ecosystem.
For more details on the original GraphRAG implementation, please refer to the GraphRAG paper.
api.py
) serving as the core of the GraphRAG operations.index_app.py
) for managing indexing and prompt tuning processes.The GraphRAG Local UI ecosystem is currently undergoing a major transition. While the main app remains functional, I am actively developing separate applications for Indexing/Prompt Tuning and Querying/Chat, all built around a robust central API. Users should expect some changes and potential instability during this transition period.
While it is currently functional, it has only been primarily tested on a Mac Studio M2.
My vision for the GraphRAG Local UI ecosystem is to become the ultimate set of tools for working with GraphRAG and local LLMs, incorporating as many cool features and knowledge graph tools as possible. I am continuously working on improvements and new features.
api.py
)index_app.py
)I am committed to making the GraphRAG Local UI ecosystem the most comprehensive and user-friendly toolset for working with knowledge graphs and LLMs. Your feedback and suggestions are much needed in shaping the future of this project.
Feel free to open an Issue if you run into an error, and I will try to address it as soon as possible to minimize any downtime you might experience.
Follow these steps to set up and run the GraphRAG Local UI ecosystem:
Create and activate a new conda environment:
conda create -n graphrag-local -y
conda activate graphrag-local
Install the required packages:
First install the GraphRAG dir from this repo (has changes not present in the Microsoft repo):
pip install -e ./graphrag
Then install the rest of the dependencies:
pip install -r requirements.txt
Launch the API server:
python api.py --host 0.0.0.0 --port 8012 --reload
If using Ollama for embeddings, launch the embedding proxy:
python embedding_proxy.py --port 11435 --host http://localhost:11434
Note: For detailed instructions on using Ollama embeddings with GraphRAG, refer to the EMBEDDING_PROXY_README.md file.
Launch the Indexing and Prompt Tuning UI:
gradio index_app.py
Launch the main interactive UI (legacy app):
gradio app.py
or
python app.py
Access the UIs:
http://localhost:7861
http://localhost:7860
GraphRAG is designed for flexibility, allowing you to quickly create and initialize your own indexing directory. Follow these steps to set up your environment:
This repo comes with a pre-made Indexing folder but you may want to make your own, so here are the steps. First, create the required directory structure for your input data and indexing results:
mkdir -p ./indexing/input
This directory will store:
If you want to start with sample data, copy it to your new input directory:
cp input/* ./indexing/input
You can also add your own .txt files to this directory for indexing.
Run the following command to initialize the ./indexing folder with the required files:
python -m graphrag.index --init --root ./indexing
Move the pre-configured settings.yaml
file to your indexing directory:
mv settings.yaml ./indexing
This file contains the main configuration, pre-set for use with local models.
You can customize your setup by modifying the following environment variables:
ROOT_DIR
: Points to your main indexing directoryINPUT_DIR
: Specifies the location of your input filesFor more detailed information and advanced usage, refer to the official GraphRAG documentation.
The GraphRAG Local UI ecosystem consists of three main components, each serving a specific purpose in the knowledge graph creation and querying process:
api.py
)The api.py
file serves as the backbone of the GraphRAG system, providing a robust FastAPI-based server that handles all core operations.
Key features:
Usage:
python api.py --host 0.0.0.0 --port 8012 --reload
Note: If using Ollama for embeddings, make sure to run the embedding proxy (embedding_proxy.py
) alongside api.py
. Refer to the EMBEDDING_PROXY_README.md for detailed instructions.
index_app.py
)api.py
) to enable backend functionality.embedding_proxy.py
).index_app.py
) to prepare your data and fine-tune the system.app.py
) for visualization and legacy features.This modular approach allows for greater flexibility and easier maintenance of the GraphRAG system. As development continues, the functionality of app.py
will be gradually integrated into new, specialized interfaces that interact with the core API.
index_app.py
)The index_app.py
file provides a user-friendly Gradio interface for managing the indexing and prompt tuning processes.
Key features:
Usage:
python index_app.py
Access the UI at http://localhost:7861
app.py
)The app.py
file is the pre-existing main application, which is being phased out but still provides useful functionality.
Key features:
Usage:
python app.py
or
gradio app.py
Access the UI at http://localhost:7860
api.py
) to enable backend functionality.index_app.py
) to prepare your data and fine-tune the system.app.py
) for visualization and legacy features.This modular approach allows for greater flexibility and easier maintenance of the GraphRAG system. As development continues, the functionality of app.py
will be gradually integrated into new, specialized interfaces that interact with the core API.
gradio app.py
, try running pip install --upgrade gradio
and then exit out and start a new terminal. It should then load and launch properly as a Gradio app.For any issues or feature requests, please open an issue on the GitHub repository. Happy knowledge graphing!