LightRAG is an open-source Python library for retrieval-augmented generation, accepted at EMNLP 2025, with nearly 38,000 GitHub stars. The project emphasizes simplicity and speed in RAG pipelines. Its high star count signals broad practitioner adoption in the RAG tooling space.
RAGFlow is an open-source Retrieval-Augmented Generation engine that combines RAG with agent capabilities, positioned as a context layer for LLMs. The project has accumulated over 83,000 GitHub stars with 111 new stars today, indicating sustained community interest. It is maintained by Infiniflow and represents a notable open-source tooling option in the RAG/agent ecosystem.
Researchers present APS-RAG, a deployed retrieval-augmented generation platform for the Advanced Photon Source (APS) scientific facility that fuses dense, sparse, and knowledge-graph retrieval channels with a corrective agentic loop and a ReAct executor over an MCP tooling layer. The system is evaluated on APS-Bench, a new 50-question QA dataset with auditable gold answers, where the full corrective Agentic GraphRAG achieves 70.3% strict vital-nugget recall versus 63.8% for a BM25 baseline. The cross-encoder reranker is identified as the most impactful component, with its removal causing a 32.8% drop in recall. The codebase, evaluation harness, and benchmark construction methodology are released to support adoption at other scientific facilities.
A GitHub repository titled 'production-agentic-rag-course' by jamwithai has accumulated 6,158 stars with 45 added today, indicating community interest in production-grade agentic retrieval-augmented generation systems. The repository appears to be an educational resource focused on deploying agentic RAG pipelines in production environments. Its trending status reflects ongoing developer demand for practical guidance on agentic and RAG architectures.
Microsoft's GraphRAG repository, a modular graph-based Retrieval-Augmented Generation system implemented in Python, is trending on GitHub with 34,340 total stars and 33 new stars today. GraphRAG structures knowledge as a graph to improve retrieval quality over flat vector search. The continued traction signals ongoing practitioner interest in graph-augmented retrieval approaches.
RAGU is a new open-source modular GraphRAG engine that separates knowledge graph extraction from consolidation, using two-stage typed extraction, DBSCAN-backed deduplication, LLM summarization, and Leiden community detection. The authors train Meno-Lite-0.1, a 7B model specialized for language skills, which outperforms Qwen2.5-32B on knowledge-graph construction by 12.5% relative harmonic mean while matching it on English GraphRAG tasks. On GraphRAG-Bench (Medical), RAGU achieves evidence recall up to 0.84 versus ≤0.76 for competing systems. The system is MIT-licensed, pip-installable, and runs on a single GPU.
LEANN is an open-source retrieval-augmented generation (RAG) system targeting personal device deployment with claimed 97% storage reduction compared to conventional vector index approaches. The project is associated with MLsys 2026, suggesting an upcoming systems research paper. It emphasizes privacy through fully local execution and aims to maintain retrieval accuracy despite aggressive compression. The repository has accumulated over 11,000 stars with strong recent momentum.
Researchers introduce HistoRAG, a Retrieval-Augmented Generation framework that adapts RAG architecture to the epistemological requirements of historical scholarship. Key interventions include separated retrieval and generation, temporal windowing to ensure balanced source representation across time periods, and LLM-as-judge evaluation for transparent relevance judgments. The framework is evaluated on SPIEGELragged, a corpus of 102,189 Der Spiegel articles from 1950–1979, revealing concrete deficiencies in standard RAG for historical work (e.g., era-specific vocabulary failures, weak correlation between vector similarity and LLM-assessed relevance). The paper also introduces the concept of 'Zwischentexte' as a framework for responsible integration of LLM-generated text into scholarly practice.
A new arXiv preprint introduces a systematic evaluation framework comparing nine standardized RAG scenarios across regular RAG, GraphRAG, Modular RAG, and Agentic RAG on semi-structured knowledge bases. The authors propose a novel context engineering method that reduces token usage by 19–53% for GraphRAG and Agentic RAG by addressing context/memory overflow. A key finding is a 'retrieval-generation gap' where expanded retrieval does not proportionally improve generation quality, suggesting retrieval-oriented metrics overstate the benefits of advanced retrieval. The work targets practitioners building production RAG systems and provides data-driven guidance on when to use each variant.