Beyond Top-K: Replacing Black-Box Retrieval with Interpretable Agentic Operations introduces a method for document retrieval that replaces traditional "chunk-and-embed" systems with an agentic, deterministic approach. The authors argue that for structured, exactness-critical documents like financial statements, standard retrieval methods are structurally unsound because they partition text into chunks that often separate figures from their governing units and fiscal years.
The Failure of Chunk-Based Retrieval
The authors, Sagar Tamang, Ayush Vyas, and Tabarakul Hazarika, identify that standard retrieval-augmented generation (RAG) relies on splitting documents into chunks and ranking them by similarity. In financial reports, this process frequently fails because 86.8% of content lines are table rows. Because units (like "lakh" or "crore") are often declared in headers many lines above the relevant figures, a fixed-size chunk boundary routinely separates a number from its unit, leading to errors of two orders of magnitude. Even with "steelman" table-aware chunking, approximately 28% of numeric chunks remain disconnected from their fiscal-year headers, a problem that persists regardless of the chunk size used.
The READ Approach
To address these structural issues, the authors propose READ (Reliable Embedding-free Agentic Document-search). Instead of relying on opaque similarity scores, READ uses an agent that interacts with the raw document through three deterministic operations:
Normalized lexical search: Locates specific patterns while accounting for conversion artifacts like digit grouping or split words.
Structural navigation: Uses an outline of the document to identify relevant sections.
Bounded span reads: Allows the agent to retrieve specific line ranges after identifying where the evidence lies, ensuring that governing headers are included in the context.
Because these operations are deterministic and exposed via the Model Context Protocol, every retrieval trajectory serves as a replayable audit trail.
Performance and Results
The authors tested READ against dense retrieval baselines using 51 verified questions based on a 780-page government financial report. READ achieved an accuracy of 58.8%, significantly outperforming the dense retrieval baseline, which reached 15.7%. Even when the dense baseline was tuned for optimal chunk size and retrieval depth, it reached only 35.3%, leaving READ with a 23.5-point lead. The authors note that an agent using a "top-k" tool instead of READ’s operations reached only 27.5% accuracy, suggesting that the performance gain stems from the interface design rather than the iterative nature of the agent.
Limitations and Findings
The research highlights that the effectiveness of retrieval is bounded by the quality of document conversion. The authors found that PDF-to-Markdown conversion can introduce errors, such as splitting a decimal point from its digits, which no retrieval method can resolve. They categorize these as "conversion-limited" failures rather than retrieval failures. Additionally, the authors report that their evidence does not support the claim that agentic search is inherently superior to lexical search; they found that BM25 (a traditional lexical search method) was statistically indistinguishable from READ, indicating that the primary advantage of their approach is the move away from embedding-based retrieval toward a more interpretable, structure-aware interface.
Comments (0)
to join the discussion
No comments yet
Be the first to share your thoughts!