Token-Efficient Data Reasoning Agents: Intelligent Data Cracking via Adaptive Structuring of Unstructured Data

Published 2026-08-31 · AI Daily — AI-assisted deep research, methodology & disclosure

This paper addresses the exorbitant token costs faced by enterprise AI agents when processing unstructured data, proposing a novel method called "Agentic Data Cracking." Currently, agents must repeatedly load large documents to retrieve scattered evidence for complex queries, consuming up to millions of tokens per query at high cost. The core contribution of this research is leveraging the reasoning process itself as a byproduct to adaptively and speculatively structure unstructured data. Specifically, when an agent opens a document to answer a question, a "cracking sub-agent" emerges from the loaded context to extract structured information potentially useful for future related queries at marginal cost. Experimental results on the FanOutQA benchmark show that this method reduces costs by 53% while maintaining accuracy. Demonstrating a 28-fold cost advantage over ideal pre-structured storage, the approach exhibits significant cost-effectiveness as query volume increases, laying a solid foundation for next-generation reasoning infrastructure for unstructured data.

Background and Context

Enterprise artificial intelligence applications currently face a critical bottleneck in processing high-value unstructured data, which remains embedded in diverse sources such as web pages, financial reports, contracts, and PDF documents. While Large Language Model (LLM) agents have demonstrated the capability to answer complex queries using these materials, the computational cost associated with this process is prohibitively high. In traditional operational modes, an agent must repeatedly load and parse massive documents to retrieve scattered evidence for every single question. This repetitive retrieval mechanism can consume up to one million tokens per query, creating a significant economic barrier to scaling AI deployments across large datasets.

The theoretical ideal for cost reduction involves pre-structuring all data into databases, which would transform complex queries into inexpensive lookups. However, this approach is largely infeasible because the potential structures within documents far exceed the requirements of any single workload. It is often impossible to predict which data structures will be relevant until a specific query arrives. Consequently, organizations are forced to choose between the high cost of dynamic processing or the impracticality of exhaustive pre-structuring. This paper addresses this dilemma by proposing a new paradigm that eliminates the trade-off between cost and flexibility through dynamic, on-the-fly data structuring.

Deep Analysis

The core innovation introduced in this research is "Agentic Data Cracking," a method that leverages the reasoning process itself as a byproduct to adaptively and speculatively structure unstructured data. This mechanism operates on two key dimensions: adaptivity and speculation. Adaptivity ensures that structuring operations are triggered only when an agent loads a document to answer a specific question, ensuring that resources are not wasted on irrelevant data. Speculation extends the utility of this process by extracting structured information that may serve future, related queries, effectively turning every reasoning step into an investment in future efficiency.

Technically, when a primary agent opens a document, a "cracking sub-agent" emerges from the already-loaded context. Since the document text is already present in memory, the marginal cost of deriving this sub-agent is negligible. The cracking sub-agent then extracts grounded, structured data from the unstructured text and stores it for later use. Over time, as more queries are processed, an increasing portion of information can be served directly from these structured extracts, bypassing the need to re-parse the original raw documents. This shifts the operational model from "compute everything per query" to "accumulate and reuse knowledge," maintaining the high accuracy of reasoning while drastically reducing redundant token consumption.

Industry Impact

The implications of Agentic Data Cracking extend across multiple sectors of the AI industry, offering a scalable solution for knowledge management. For the open-source community, this method provides a low-cost deployment strategy for intelligent agents without requiring complex, manual preprocessing pipelines. For enterprise implementations, it significantly lowers the economic threshold for applying AI to massive corpora of unstructured data, making it viable to build comprehensive knowledge bases from historical records, legal documents, and internal reports.

Furthermore, this approach establishes a new standard for data infrastructure by creating a shared knowledge base at the foundation of model reasoning. The knowledge revealed during the inference process is automatically accumulated and reused, optimizing the overall system efficiency. This paradigm shift encourages further research into intelligent data structure design and sub-agent extraction strategies, positioning "reasoning as structuring" as a critical area of development for next-generation AI systems.

Outlook

Experimental validation on the FanOutQA benchmark, which tests an agent's ability to reason across multiple documents, confirms the efficacy of this approach. The results demonstrate a 53% reduction in token costs while maintaining inference accuracy, even when only a single additional relevant query is introduced. This highlights the value of speculative structuring: even if future queries do not fully cover the extracted structures, the pre-extracted fragments significantly reduce the data loading requirements for subsequent interactions.

When compared to idealized pre-structured storage, the current cost of agent reasoning remains higher, but the gap is closing rapidly. Ablation studies indicate that as the volume of queries increases, the coverage of structured data improves, leading to an exponential growth in cost advantages. This scalability validates the method's potential for handling large-scale, diverse query scenarios. As LLMs penetrate more vertical industries, this self-optimizing data reasoning mechanism is poised to become a core component of efficient, intelligent enterprise knowledge systems, fundamentally altering how organizations manage and utilize their unstructured information assets.

Sources

FAQ

What is Agentic Data Cracking?

A sub-agent spawns upon document load to extract structured info. With context in memory, marginal costs are minimal, cutting token waste from parsing files repeatedly.

How does it compare to traditional methods?

It reduces costs by 53% while maintaining accuracy. As query volume grows, structured coverage expands, offering a 28-fold advantage over ideal pre-structured storage.

What is the long-term significance of this technology?

It pioneers reasoning-as-structuring, laying the foundation for enterprise knowledge systems. Future AI will shift from raw compute stacking to intelligent scheduling.