Skip to content
OpenTrain AIFor AI Companies

RAGU: A Multi-Step GraphRAG Engine with a Compact Domain-Adapted LLM

Mikhail Komarov, Ivan Bondarenko, Stanislav Shtuka, Oleg Sedukhin, Roman Shuvalov +3 morePublished Jul 13, 2026
arXiv PDF
Researcher verdict
Starting point
Use as implementation starting point
Benchmark evidence
Thin evidence
Verify before relying
Time to first repro
A few hours
Fast first run
Risk flags
0
None detected

Abstract

Domain fit: AI-core · Core AI workload signals detected from paper context and implementation/artifact evidence.

Graph retrieval-augmented generation (GraphRAG) enhances large language models with structured knowledge, yet existing systems construct knowledge graphs in a single extraction pass, producing noisy entities and brittle retrieval. RAGU, an open-source modular GraphRAG engine, addresses this by separating extraction from consolidation: entities and relations pass through two-stage typed extraction, DBSCAN-backed deduplication, LLM summarization, and Leiden community detection. A key insight motivates a compact extractor: the skills an in-pipeline LLM needs - comprehension, extraction, reasoning over context - are language skills that grow only weakly with model size, unlike factual world knowledge. Accordingly, we train Meno-Lite-0.1, a 7B model optimized for language skills, which outperforms Qwen2.5-32B on knowledge-graph construction (+12.5% relative harmonic mean) and matches it on English GraphRAG tasks. On GraphRAG-Bench (Medical), RAGU retrieves the most complete context at every factoid level (evidence recall up to 0.84 vs. $\leq$0.76) and overtakes HippoRAG2 on synthesis tasks; on multi-hop factoid QA, the apparent HippoRAG2 advantage is shown to be largely an answer-format artifact. RAGU is installable via $\texttt{pip install graph_ragu}$, runs on a single GPU, and is released under MIT. The source code is publicly available at https://github.com/RaguTeam/RAGU, and the Meno-Lite-0.1 model can be obtained from https://huggingface.co/bond005/meno-lite-0.1.

Results and benchmarks

Freshness tier: hot
Graph retrieval-augmented generation (GraphRAG) enhances large language models with structured knowledge, yet existing systems construct knowledge graphs in a single extraction pass, producing noisy entities and brittle retrieval.
Task Dataset Metric Value Source
Graph learning Meno-Lite-0.1 Def 0.527 paper-derived
Retrieval / indexing Meno-Lite-0.1 RDef 0.558 paper-derived
Retrieval / indexing Qwen2.5-32B RDef 0.599 paper-derived
Retrieval / indexing gemma-3-27b RDef 0.583 paper-derived

Audit each benchmark finding before selecting an implementation path. Evidence refs map to the disclosure below.

Implementation

Best maintained implementation now

Recommended
Confidence: Medium
Reproducibility: Strong

Modular GraphRAG framework

124 stars · 23 forks · Last push Aug 25, 2026 · MIT license

  • License
  • CI
  • Dependencies
  • Docker

Matched via arXiv identifier search · Partial overlap with paper title keywords · Community adoption signal (124 stars)

Why this implementation
Confidence: medium

RaguTeam/RAGU is the best available implementation candidate based on ranking signals, but recommendation confidence is not yet high. CI workflows are present. License is declared (MIT).

Open RaguTeam/RAGU
Reproduction risks
  • No repository-level red flags were detected, but paper-specific preprocessing and hyperparameter details may still be under-specified.
  • Selected RaguTeam/RAGU as the strongest maintained implementation for new work.
  • Includes CI workflow signals.
  • Includes dependency/environment manifest signals.
  • Repository activity is within the last 24 months.

Compare implementation paths

Compare maintenance quality, reproducibility coverage, and evidence confidence before choosing a reproduction baseline.

RaguTeam/RAGU
best maintained
Maintenance
Active
Confidence
Medium
Reproducibility
Strong
Stars
124
Last push
Aug 25, 2026 (1d)

Matched via arXiv identifier search · Partial overlap with paper title keywords

  • No Docker setup
Maintenance
Active
Confidence
Low
Reproducibility
Strong
Stars
0
Last push
Aug 16, 2026 (11d)

Matched via arXiv identifier search

  • No tagged releases
  • No Docker setup
  • Low confidence match

Reproduction readiness

Time to first repro: hours
Last checked: Aug 26, 2026

Ready to run

Ready to reproduce

  • Clone RaguTeam/RAGU and install dependencies from pyproject.toml.
  • CI pipeline detected, so automated tests are in place.
  • Last updated 1 days ago.
Open RaguTeam/RAGU

Quick start

git clone https://github.com/RaguTeam/RAGU.git
pip install -e .

Repositories and ecosystem

No additional verified repositories beyond the primary recommendation.

Hugging Face artifacts

Research context

Tasks

Retrieval / indexing

Methods

Transformer, Retrieval-augmented generation

Domains

Natural Language Processing, Large Language Models, Information Retrieval

Evaluation and human feedback data

Open this paper in HFEPX to review benchmark signals, evaluation modes, and human-feedback protocol context.

Open in HFEPX
Explore similar papers