paper-with-me

Papers

Pruning Minimal Reasoning Graphs for Efficient Retrieval-Augmented Generation

2026-02-04 · Ning Wang, Kuanyan Zhu, Daniel Yuehwoon Yee, Yitang Gao, Shiying Huang, Zirun Xu, Sainyam Galhotra arxiv

Retrieval-augmented generation (RAG) is now standard for knowledge-intensive LLM tasks, but most systems still treat every query as fresh, repeatedly re-retrieving long passages and re-reasoning from scratch, inflating tokens, latency, and cost. We present AutoPrunedRetriever, a graph-style RAG system that persists the minimal reasoning subgraph built for earlier questions and incrementally extends it for later ones. AutoPrunedRetriever stores entities and relations in a compact, ID-indexed codebook and represents questions, facts, and answers as edge sequences, enabling retrieval and prompting over symbolic structure instead of raw text. To keep the graph compact, we apply a two-layer consolidation policy (fast ANN/KNN alias detection plus selective $k$-means once a memory threshold is reached) and prune low-value structure, while prompts retain only overlap representatives and genuinely new evidence. We instantiate two front ends: AutoPrunedRetriever-REBEL, which uses REBEL as a triplet parser, and AutoPrunedRetriever-llm, which swaps in an LLM extractor. On GraphRAG-Benchmark (Medical and Novel), both variants achieve state-of-the-art complex reasoning accuracy, improving over HippoRAG2 by roughly 9--11 points, and remain competitive on contextual summarize and generation. On our harder STEM and TV benchmarks, AutoPrunedRetriever again ranks first, while using up to two orders of magnitude fewer tokens than graph-heavy baselines, making it a practical substrate for long-running sessions, evolving corpora, and multi-agent pipelines.

📄 PDF Abstract BibTeX arXiv:2602.04926

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

GraphSkill: Documentation-Guided Hierarchical Retrieval-Augmented Coding for Complex Graph Reasoning

2026-02-20 · Fali Wang, Chenglin Weng, Xianren Zhang, Siyuan Hong 외 arxiv

The growing demand for automated graph algorithm reasoning has attracted increasing attention in the large language model (LLM) community. Recent LLM-based graph reasoning methods typically decouple task descriptions fro…

Code Generation

You Don't Need Pre-built Graphs for RAG: Retrieval Augmented Generation with Adaptive Reasoning Structures

2025-08-08 · Shengyuan Chen, Chuang Zhou, Zheng Yuan, Qinggang Zhang 외 arxiv

Large language models (LLMs) often suffer from hallucination, generating factually incorrect statements when handling questions beyond their knowledge and perception. Retrieval-augmented generation (RAG) addresses this b…

RUBEN: Rule-Based Explanations for Retrieval-Augmented LLM Systems

2026-05-11 · Joel Rorseth, Parke Godfrey, Lukasz Golab, Divesh Srivastava 외 arxiv

This paper demonstrates RUBEN, an interactive tool for discovering minimal rules to explain the outputs of retrieval-augmented large language models (LLMs) in data-driven applications. We leverage novel pruning strategie…

Context-Augmented Code Generation Using Programming Knowledge Graphs

2026-01-28 · Shahd Seddik, Fahd Seddik, Iman Saberi, Fatemeh Fard 외 arxiv

Large Language Models (LLMs) excel at code generation but struggle with complex problems. Retrieval-Augmented Generation (RAG) mitigates this issue by integrating external knowledge, yet retrieval models often miss relev…

Knowledge GraphsCode Generation

XProvence: Zero-Cost Multilingual Context Pruning for Retrieval-Augmented Generation

2026-01-26 · Youssef Mohamed, Mohamed Elhoseiny, Thibault Formal, Nadezhda Chirkova arxiv

This paper introduces XProvence, a multilingual zero-cost context pruning model for retrieval-augmented generation (RAG), trained on 16 languages and supporting 100+ languages through effective cross-lingual transfer. Mo…

Cross-Lingual TransferQuestion Answering