https://github.com/hkuds/minirag
"MiniRAG: Making RAG Simpler with Small and Free Language Models"
https://github.com/hkuds/minirag
large-language-models rag retrieval-augmented-generation
Last synced: 3 months ago
JSON representation
"MiniRAG: Making RAG Simpler with Small and Free Language Models"
- Host: GitHub
- URL: https://github.com/hkuds/minirag
- Owner: HKUDS
- License: mit
- Created: 2025-01-11T13:24:14.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-06-04T12:01:45.000Z (4 months ago)
- Last Synced: 2025-06-04T19:28:44.829Z (4 months ago)
- Topics: large-language-models, rag, retrieval-augmented-generation
- Language: Python
- Homepage: https://arxiv.org/abs/2501.06713
- Size: 4.52 MB
- Stars: 1,137
- Watchers: 16
- Forks: 140
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MiniRAG: Towards Extremely Simple Retrieval-Augmented Generation

The Code Repository: **MiniRAG: Towards Extremely Simple Retrieval-Augmented Generation**
[Tianyu Fan](https://tianyufan0504.github.io/), [Jingyuan Wang](), [Xubin Ren](https://ren-xubin.github.io/), [Chao Huang](https://sites.google.com/view/chaoh)* (*Correspondence)
## π README Translations
[δΈζθ―΄ζ](./README_CN.md) | [ζ₯ζ¬θͺ](./README_JA.md)
## π News
- [x] [2025.02.27]π―π’Now you can use `pip install minirag-hku` to run our code!
- [x] [2025.02.14]π―π’Now MiniRAG supports 10+ heterogeneous graph databases, including Neo4j, PostgreSQL, TiDB, etc. Happy valentine's day!πΉπΉπΉ
- [x] [2025.02.05]π―π’Our team has released [VideoRAG](https://github.com/HKUDS/VideoRAG) understanding extremely long-context videos.
- [x] [2025.02.01]π―π’Now MiniRAG supports API&Docker deployment. see [This](./minirag/api/README.md) for more details.## TLDR
MiniRAG is an extremely simple retrieval-augmented generation framework that enables small models to achieve good RAG performance through heterogeneous graph indexing and lightweight topology-enhanced retrieval.## Abstract
The growing demand for efficient and lightweight Retrieval-Augmented Generation (RAG) systems has highlighted significant challenges when deploying Small Language Models (SLMs) in existing RAG frameworks. Current approaches face severe performance degradation due to SLMs' limited semantic understanding and text processing capabilities, creating barriers for widespread adoption in resource-constrained scenarios. To address these fundamental limitations, we present **MiniRAG**, a novel RAG system designed for extreme simplicity and efficiency. **MiniRAG** introduces two key technical innovations: (1) a semantic-aware heterogeneous graph indexing mechanism that combines text chunks and named entities in a unified structure, reducing reliance on complex semantic understanding, and (2) a lightweight topology-enhanced retrieval approach that leverages graph structures for efficient knowledge discovery without requiring advanced language capabilities. Our extensive experiments demonstrate that **MiniRAG** achieves comparable performance to LLM-based methods even when using SLMs while requiring only 25\% of the storage space. Additionally, we contribute a comprehensive benchmark dataset LiHua-World for evaluating lightweight RAG systems under realistic on-device scenarios with complex queries.## MiniRAG Framework

MiniRAG employs a streamlined workflow built on the key components: heterogeneous graph indexing and lightweight graph-based knowledge retrieval. This architecture addresses the unique challenges faced by on-device RAG systems, optimizing for both efficiency and effectiveness.
## Install
* Install from source (Recommend)
```bash
cd MiniRAG
pip install -e .
```
* Install from PyPI (Our code is based on [LightRAG](https://github.com/HKUDS/LightRAG), so you can install it directly)```bash
pip install lightrag-hku
```## Quick Start
* All the code can be found in the `./reproduce`.
* Download the dataset you need.
* Put the dataset in the `./dataset` directory.
* Note: We have already put the LiHua-World dataset in `./dataset/LiHua-World/data/` as `LiHuaWorld.zip`. If you want to use other dataset, you can put it in the `./dataset/xxx`.Then use the following bash command to index the dataset:
```bash
python ./reproduce/Step_0_index.py
python ./reproduce/Step_1_QA.py
```Or, use the code in `./main.py` to initialize MiniRAG.
### Overall Performance Table
| Model | NaiveRAG | | GraphRAG | | LightRAG | | **MiniRAG** | |
|-------|----------|----------|-----------|----------|-----------|----------|----------|----------|
| | accβ | errβ | accβ | errβ | accβ | errβ | accβ | errβ |
| LiHua-World | | | | | | | | |
| Phi-3.5-mini-instruct | 41.22% | 23.20% | / | / | 39.81% | 25.39% | **53.29%** | 23.35% |
| GLM-Edge-1.5B-Chat | 42.79% | 24.76% | / | / | 35.74% | 25.86% | **52.51%** | 25.71% |
| Qwen2.5-3B-Instruct | 43.73% | 24.14% | / | / | 39.18% | 28.68% | **48.75%** | 26.02% |
| MiniCPM3-4B | 43.42% | 17.08% | / | / | 35.42% | 21.94% | **51.25%** | 21.79% |
| gpt-4o-mini | 46.55% | 19.12% | 35.27% | 37.77% | **56.90%** | 20.85% | 54.08% | 19.44% |
| MultiHop-RAG | | | | | | | | |
| Phi-3.5-mini-instruct | 42.72% | 31.34% | / | / | 27.03% | 11.78% | **49.96%** | 28.44% |
| GLM-Edge-1.5B-Chat | 44.44% | 24.26% | / | / | / | / | **51.41%** | 23.44% |
| Qwen2.5-3B-Instruct | 39.48% | 31.69% | / | / | 21.91% | 13.73% | **48.55%** | 33.10% |
| MiniCPM3-4B | 39.24% | 31.42% | / | / | 19.48% | 10.41% | **47.77%** | 26.88% |
| gpt-4o-mini | 53.60% | 27.19% | 60.92% | 16.86% | 64.91% | 19.37% | **68.43%** | 19.41% |In the table, / means the method struggles to generate effective responses.
## Reproduce
All the code can be found in the `./reproduce` directory.## Code Structure
```python
βββ dataset
β βββ LiHua-World
β βββ README.md
β βββ README_CN.md
β βββ data
β β βββ LiHuaWorld.zip
β βββ qa
β βββ query_set.csv
β βββ query_set.json
βββ minirag
β βββ kg
β β βββ __init__.py
β β βββ neo4j_impl.py
β β βββ oracle_impl.py
β βββ __init__.py
β βββ base.py
β βββ exceptions.py
β βββ llm.py
β βββ minirag.py
β βββ operate.py
β βββ prompt.py
β βββ storage.py
β βββ utils.py
βββ reproduce
β βββ Step_0_index.py
β βββ Step_1_QA.py
βββ LICENSE
βββ main.py
βββ README.md
βββ README_CN.md
βββ requirements.txt
βββ setup.py
```## Dataset: LiHua-World

LiHua-World is a dataset specifically designed for on-device RAG scenarios, containing one year of chat records from a virtual user named LiHua. The dataset includes three types of questions: single-hop, multi-hop, and summary, with each question paired with manually annotated answers and supporting documents. For more details, please refer to the [README of LiHua-World](./dataset/LiHua-World/README.md) dataset.
## Star History
## Contribution
Thank you to all our contributors!
## Acknowledgements
You may refer to related work that serves as foundations for our framework and code repository,
[nano-graphrag](https://github.com/gusye1234/nano-graphrag) and [LightRAG](https://github.com/HKUDS/LightRAG). Thanks for their wonderful works.## πCitation
```python
@article{fan2025minirag,
title={MiniRAG: Towards Extremely Simple Retrieval-Augmented Generation},
author={Fan, Tianyu and Wang, Jingyuan and Ren, Xubin and Huang, Chao},
journal={arXiv preprint arXiv:2501.06713},
year={2025}
}
```**Thank you for your interest in our work!**