English | 简体中文
GraphRAG-UI is a user-friendly interface for GraphRAG, a powerful tool that uses the Retrieval-Augmented Generation (RAG) approach to index and query large text data. This project supports the latest version graphrag-0.3.3 and aims to provide a convenient management and interaction method for GraphRAG, supporting the configuration of local large language models like Ollama, making it easier for users to leverage.
This project is currently an upgrade based on the work of severian42 and his GraphRAG-Local-UI project. I would like to express my sincere gratitude to him for laying a solid foundation for this project. New features may be added in the future.
- Intuitive Web Interface: GraphRAG-UI provides a user-friendly web interface for easy configuration and use of GraphRAG.
- Index Management: Quickly create, update, and manage your text data indexes.
- Query Execution: Submit natural language queries and retrieve relevant content from indexed data, followed by responses from a large language model.
- Configuration Options: Customize various settings and parameters to fine-tune the indexing and querying processes.
- Logging and Monitoring: Monitor the progress of indexing and querying tasks through detailed logs and status updates.
-
Install Ollama (optional):
Visit the Ollama website to install. If you're on Linux, you can run the following command directly:
curl -fsSL https://ollama.com/install.sh | sh
-
Install this software via pip:
pip install graphrag-ui or pip install graphrag-ui -i https://pypi.org/simple
-
Start the API Server
graphrag-ui-server
-
Start the UI
Start the comprehensive UI
graphrag-ui
Or start the pure UI
graphrag-ui-pure
-
Create and activate a new conda environment:
conda create -n graphrag-ui -y conda activate graphrag-ui
-
Install Ollama(optional):
Visit Ollama's website for installation instructions.
Or Linux, run:
curl -fsSL https://ollama.com/install.sh | sh
-
Clone the repository:
git clone https://github.com/wade1010/graphrag-ui.git
-
Install the required packages:
cd graphrag-ui pip install -r requirements.txt
-
Start the API server:
python api.py --host 0.0.0.0 --port 8012 --reload
-
Start the UI:
-
Clean version
This version only supports indexing, Prompt Tuning, and file management, without query functionality.
gradio index_app.py or python index_app.py
-
Comprehensive version
This version adds visualizations, configuration management, and GraphRAG chat functionality on top of the clean version.
python app.py
-
-
Access the UI:
- Clean version:
http://localhost:7860
- Comprehensive version:
http://localhost:7862
- Clean version: