RAGU: A Multi-Step GraphRAG Engine with a Compact Domain-Adapted LLM
Summary
RAGU is an open-source multi-step GraphRAG engine that uses a compact 7B fine-tuned LLM (Meno-Lite-0.1) to achieve high-quality knowledge graph construction at a fraction of the cost of larger models, outperforming larger systems on benchmarks.
View Cached Full Text
Cached at: 07/20/26, 09:39 AM
Paper page - RAGU: A Multi-Step GraphRAG Engine with a Compact Domain-Adapted LLM
Source: https://huggingface.co/papers/2607.11683

GraphRAG doesn’t have to be expensive, brittle, or messy.
We’re the team behindRAGU— an open-source GraphRAG engine built jointly by the Laboratory of Applied Digital Technologies at Novosibirsk State University and the Laboratory of Automated Multi-Agent AI at ITMO University. Its compact extractor,Meno-Lite-0.1, also powers our 1st-place system in SemEval-2026 Task 8 (MTRAG) (paper), so this isn’t a toy model. And we’re here to challenge a common assumption:you don’t need a massive LLM to build high-quality knowledge graphs.
What we tested and what we built:
**The “Language vs. World Knowledge” hypothesis.**We ran experiments across 6 model sizes (0.5B to 72B). Language skills — comprehension, extraction, reasoning over context — scale slowly with model size (4× growth), while world knowledge scales steeply (21×). Yet existing GraphRAG systems throw 32B–72B models at extraction, wasting compute on facts they don’t need to recall.
Meno-Lite-0.1is a 7B model fine-tuned specifically for RAG-oriented language tasks. It outperforms Qwen2.5-32B on knowledge-graph construction (+12.5% harmonic mean). On end-to-end GraphRAG QA, its standalone extraction edge shrinks to ≤1pp — not because the fine-tuning failed, but because a good consolidation pipeline reduces sensitivity of QA quality to the extractor. Net result: 32B-class extraction at 7B cost.
RAGU itselfis a modular GraphRAG engine with a 6-stage pipeline that separates extraction from consolidation: two-stage typed extraction, DBSCAN deduplication, LLM summarization, Leiden community detection. Cleaner graphs, better retrieval.
Benchmarks:
- On GraphRAG-Bench (Medical): RAGU retrieves the most complete context at every factoid level — evidence recall up to 84% vs. ≤76% for competitors.
- Outperforms HippoRAG 2 on synthesis tasks (Creative Generation AC: 59.0 vs. 56.9).
- Multi-hop QA gap? Turns out it’s mostly an answer-format artifact. Controlling for format, RAGU ties HippoRAG 2 on BioASQ (72.9 vs. 72.4).
- RAGU does this with a locally served 7B model against HippoRAG 2’s 20B extractor.
- Cost: ~0\.001/doc on rented GPUs vs\. ~0.10/doc for API-based alternatives. At 100k docs, that’s $100 vs. $10,000.
Practical details:
pip install graph\_ragu— runs on a single consumer GPU.- ~374 tests + deterministic mock LLM server, so CI works without API keys.
- Three swappable storage backends (NetworkX or Neo4j, NanoVDB or Qdrant).
- MIT-licensed code, Apache-2.0 model weights.
We built RAGU because open-source GraphRAG shouldn’t mean choosing between academic prototypes and expensive APIs. Read the paper, try the code, let us know what breaks.
Code:https://github.com/RaguTeam/RAGU Model:https://huggingface.co/bond005/meno-lite-0.1 Demo videos:
P.S. Appendix A documents the engineering gaps we found in HippoRAG 2 at a pinned commit: raweval\(\)on LLM outputs, missing retries, no storage abstraction. We show side-by-side how RAGU handles each of these — Pydantic-validated outputs, proper retry logic, swappable backends.
Similar Articles
RAGA: Reading-And-Graph-building-Agent for Autonomous Knowledge Graph Construction and Retrieval-Augmented Generation
RAGA is an LLM-driven autonomous agent that constructs knowledge graphs via a read-search-verify-construct cognitive loop and integrates hybrid symbolic-vector retrieval for retrieval-augmented generation, with experimental gains on scientific QA datasets.
LightRAG: Simple and Fast Retrieval-Augmented Generation
The article introduces LightRAG, an open-source framework that enhances Retrieval-Augmented Generation by integrating graph structures for improved contextual awareness and efficient information retrieval.
We open-sourced a graph-free multi-hop RAG framework — matches Graph-RAG accuracy without the rebuild cost (Apache-2.0)
MOTHRAG is a graph-free multi-hop RAG framework that matches the accuracy of graph-based systems like GraphRAG and HippoRAG on benchmarks, while avoiding costly graph rebuilds by using a dense index and query-time orchestration.
ContextRAG: Extraction-Free Hierarchical Graph Construction for Retrieval-Augmented Generation
ContextRAG introduces an extraction-free method for constructing hierarchical graph indices for retrieval-augmented generation, using Residual-Quantization K-Means and Formal Concept Analysis to reduce LLM calls and tokens by orders of magnitude while maintaining competitive F1 scores on multi-hop questions.
GraphRAG on Consumer Hardware: Benchmarking Local LLMs for Healthcare EHR Schema Retrieval
This paper benchmarks GraphRAG for EHR schema retrieval using local LLMs on consumer hardware, evaluating models like Llama 3.1, Mistral, Qwen 2.5, and Phi-4-mini.