What they did
The authors built a directory-aware semantic data management system for structured documents. VikingRAG integrates semantic search with access to document hierarchy, then conducts evidence-gap-driven retrieval over multiple rounds when the initial context is insufficient.
To avoid repeating this exploration, the system stores successful multi-round retrieval traces as “experience edges” that can guide similar later queries. An adaptive escalation mechanism first attempts one-round, experience-augmented retrieval and initiates multi-round retrieval only when more evidence is required.
Key findings
- The base VikingRAG system matched the high accuracy of state-of-the-art structured-document RAG methods while using 11.6%–51.9% as many tokens.
- Reusing retrieval traces and applying adaptive escalation reduced token consumption further, to 5.1%–32.5% of the compared methods’ usage.
- The more token-efficient configurations maintained competitive answer accuracy rather than obtaining savings solely by retrieving less evidence.
- The authors also report practical document-storage performance, although the abstract does not provide detailed storage measurements.
Why it matters
Structured-document RAG often sends large portions of document hierarchies to a language model to preserve context. VikingRAG suggests that systems can instead retrieve structure selectively, reuse prior search work, and reserve expensive multi-round exploration for uncertain cases—reducing inference cost for AI knowledge bases without a large reported accuracy penalty.
Caveats
The abstract does not identify the datasets, baselines, model configurations, absolute token counts, or statistical uncertainty behind the reported ranges. Trace reuse may also depend on future queries resembling earlier ones, while adaptive escalation requires a reliable judgment of whether the retrieved evidence is sufficient; performance under distribution shifts or poorly structured documents remains an open question.