A New Format for Chain-of-Thought Could Cut LLM Reasoning Costs by 85%

The Core · TL;DR
- Researchers introduce Structured Thoughts, a framework that formats LLM chain-of-thought reasoning into alternating <try> and <outcome> blocks
- Fine-tuning on this structured format boosts reasoning benchmark performance by up to 8.08% versus standard supervised fine-tuning
- A context-pruning technique built on the same structure cuts memory and context usage by 85% on average, at an 8.67% accuracy cost on math tasks
- The paper, submitted to arXiv on July 11, 2026, suggests teams can trade off accuracy against efficiency depending on deployment needs
Eight percent more accuracy for a fraction of the memory footprint: that is the trade researchers are proposing with a new method called Structured Thoughts, detailed in a paper submitted to arXiv on July 11, 2026.
The core problem the paper addresses is a familiar one for anyone running reasoning-heavy LLMs in production. Chain-of-thought prompting lets models work through problems step by step, and it reliably improves accuracy on math, logic, and multi-hop tasks. But the reasoning traces these models generate tend to sprawl. Models re-derive intermediate steps, restate context, and pack their scratchpad with redundant tokens, all of which balloons context length and drives up inference cost without a proportional gain in output quality.
Structured Thoughts tackles this by imposing a format on the reasoning process itself. Instead of letting a model free-write its chain of thought, the framework organizes it into alternating <try> and <outcome> blocks. Each <try> block represents an attempted step or hypothesis, and each <outcome> block records the result of that attempt before the model moves on. The structure effectively turns an unstructured stream of tokens into a sequence of discrete, labeled reasoning units.
That labeling turns out to matter for two reasons. First, when researchers fine-tuned models on data formatted this way, performance on reasoning benchmarks improved by as much as 8.08% compared to standard supervised fine-tuning on the same tasks. The gain suggests that forcing a model to separate "what I'm attempting" from "what happened" produces cleaner, more learnable reasoning patterns than letting the model narrate its thought process in free-form prose.
Second, and arguably more consequential for real-world deployment, the <try>/<outcome> structure makes it possible to prune context aggressively. Because each block is self-contained, a system can discard earlier <try> blocks once their <outcome> has been recorded, keeping only the information still relevant to the next step. In the paper's tests, this context pruning approach delivered an average of 85% savings in memory and context usage across mathematical reasoning tasks, at the cost of an 8.67% drop in performance.
That trade-off is the headline number for infrastructure teams. An 85% reduction in the context a model has to carry through a long reasoning chain translates directly into lower KV-cache pressure, cheaper inference, and the ability to run longer or more complex reasoning sessions within existing hardware budgets. Losing under 9 percentage points of accuracy in exchange is the kind of trade many production systems, especially those bottlenecked by context window limits or GPU memory rather than raw accuracy, would readily accept.
The two results point in different directions and that is arguably the more interesting finding. Structured Thoughts as a fine-tuning target improves accuracy outright, while Structured Thoughts as a pruning mechanism sacrifices some accuracy for large efficiency gains. The framework's real value may lie in letting teams choose a point on that curve rather than being locked into either extreme, an appealing property for anyone deploying long-chain reasoning models at scale where both cost and correctness are under constant pressure.
Original reporting and research used to synthesize this article.
- 1SPARK: Susceptibility-Guided Profiling and Steering of Latent Reasoning States in Large Language Modelsarxiv.org
- 2Successor-Generator Planning with LLM-generated Heuristicsarxiv.org
- 3Large Language Models for Token-Efficient and Semantic-Preserving Opinion Summarizationarxiv.org
- 4PiCSAR: Probabilistic Confidence Selection And Ranking for Reasoning Chainsarxiv.org
- 5Nested-ReFT: Efficient Reinforcement Learning for Large Language Model Fine-Tuning via Off-Policy Rolloutsarxiv.org
- 6The Hidden Footprint: Making Storage a First-Class Metric for LLM Agent Evaluationarxiv.org
- 7StructAgent: Harness Long-horizon Digital Agents with Unified Causal Structurearxiv.org
- 8RSLoRA: Training-free Rank Allocation for LoRA via Representational Sensitivity Probingarxiv.org
- 9UNIT: Unleash Large Language Models Potential for Graph Continual Learningarxiv.org
- 10TILDE: TILt-based Distributional Erasure for Concept Unlearningarxiv.org
- 11Turbo Connection: Reasoning as Information Flow from Higher to Lower Layersarxiv.org
- 12SCOReD: Student-Aware CoT Optimization for Recommendation Distillationarxiv.org
- 13Unlocking Parallelism in Autoregressive Language Models via Speculative Decoding with Progressive Tree Draftingarxiv.org
- 14Beyond Euclidean Clipping: Overcoming Exploration Collapse in LLM RL via Riemannian Isometric Policy Optimizationarxiv.org
- 15Heterogeneous Agent Cohorts for Safe Open-Ended Exploration with Runtime Constraint Memoryarxiv.org
- 16Agon: Competitive Cross-Model RL with Implicit Rival Grading of Reasoningarxiv.org
- 17The Compliance Trap: Diagnosing How AI Agents Consume Conflicting Memoryarxiv.org
- 18ProgramTab: Boosting Table Reasoning of LLMs via Programmatic Paradigmarxiv.org
- 19Selective Timestep Weighting and Advantage-Based Replay for Sample-Efficient Diffusion RLHFarxiv.org
- 20Minionese: Comprehensive Benchmark and Mechanistic Study of Multilingual LLM Safetyarxiv.org
- 21Agentic-DPO: From Imitation to Agentic Policy Optimization on Expert Trajectoriesarxiv.org
- 22CLAP: Direct VLM-to-VLA Adaptation via Language-Action Groundingarxiv.org
- 23VIA: Visual Interface Agent for Robot Controlarxiv.org
- 24Multi-Agent LLMs Fail to Explore Each Otherarxiv.org
- 25Entropy Pacing Policy Optimization for Multi-Task Agentic Reinforcement Learningarxiv.org
- 26Maximizing Human Efficiency in Large-Scale Robot Post-Training via VLAC-Cut Guided Pipelinearxiv.org
- 27Future Confidence Distillation in Large Language Modelsarxiv.org
- 28A Comprehensive Survey and Systematic Real-World Evaluation of Embodied Vision-and-Language Navigationarxiv.org
- 29Adaptive Model Compression (AMC): Saliency-Driven Resource Allocation for Ultra-Low-Power Transformer Inferencearxiv.org
- 30Enabling Agents to Communicate Entirely in Latent Spacearxiv.org
- 31Route, Communicate, and Reason: Gated Routing and Adaptive Depth for Efficient Multi-Agent Reasoningarxiv.org
- 32Rethinking Zero-Shot Time Series Classification: From Task-specific Classifiers to In-Context Inferencearxiv.org
- 33Coresets Before Score Sets: Evaluation-Unsupervised Prompt Subset Selection for LLM Benchmarksarxiv.org
- 34SearchEyes: Towards Frontier Multimodal Deep Search Intelligence via Search World Simulationarxiv.org
- 35When Prompts Ignore Structure: Graph-Based Attribute Reasoning for Calibrated VLMsarxiv.org
- 36CogniConsole: Externalizing Inference-Time Control as a Formal Abstraction for Reliable LLM Interactionsarxiv.org
- 37Closed-Loop Control with Rule-Aligned Small Language Models and Multi-Agent Self-Correctionarxiv.org
- 38Interpreting Latent CoT Reasoning as Dynamical Systemsarxiv.org
- 39SCALECUA: Scaling Computer Use Agents with Verifiable Task Synthesis and Efficient Online RLarxiv.org
- 40EvalLoop: A Methodology for Evaluation-Driven Iterative Improvement of Business AI Systemsarxiv.org
- 41DeepBias: Adaptive In-depth Probing of Social Biases in LVLMsarxiv.org
- 42Interference and Retention in Continual Learningarxiv.org
- 43Structured Thoughts For Improved Reasoning And Context Pruningarxiv.org
- 44Prompt-Driven Explorationarxiv.org
- 45Remembering Distinct Items, Not Tokens: A Learnable Dirichlet-Process Cache Between State-Space Models and Attentionarxiv.org
- 46Disentangling Intrinsic Importance from Emergent Structure in Multi-Expert Orchestrationarxiv.org
- 47SPQR: A Multi-Dimensional Benchmark for Safety Alignment under Benign Model Adaptationarxiv.org
- 48AMT-X: Phase-Structured Multi-Turn Red-Teaming with Checklist-Gated Evaluationarxiv.org
- 49Towards Predictive, Aligned, and Scalable Robot Learningarxiv.org
- 50Valid $\ne$ Necessary: Diagnosing Latent Inefficiency in Chain-of-Thoughtarxiv.org
- 51What Does It Mean to Break a Distillation Defense?arxiv.org
- 52Auditing Belief-Conditioned LLM Agents in Hidden-Information Social Deduction Gamesarxiv.org
- 53DepthWeave-KV: Token-Adaptive Cross-Layer Residual Factorization for Long-Context KV Cache Compressionarxiv.org
- 54The Nuts and Bolts of Natural Language to SQL Translation: A Systematic Analysis of Model Pipeline Optimisation Approaches and their Interactionsarxiv.org
- 55To Retain or to Adapt? Generalizing Continual Learningarxiv.org
- 56EMO-R3: Reflective Reinforcement Learning for Emotional Reasoning in Multimodal Large Language Modelsarxiv.org
- 57Cross-Layer Misalignment Detection in Agent Skills: A Progressive Loading-Aware Contrastive Learning Approacharxiv.org
- 58Language Models Need Sleep: Learning to Self-Modify and Consolidate Memoriesarxiv.org
- 59Analysis-by-Proxy: Localization Signals in VLMs Operating as Condition Encodersarxiv.org
- 60ReflectWorld-MM: An Entity-Oriented Multi-Media Memory System for Open-Ended Video Streamsarxiv.org
- 61ABot-AgentOS: A General Robotic Agent OS with Lifelong Multi-modal Memoryarxiv.org
- 62MUGEN: Evaluating and Improving Multi-audio Understanding of Large Audio-Language Modelsarxiv.org
- 63LLMs as a Jury: Cross-Model Consensus Can Outperform Process Reward Models for LLM Reasoningarxiv.org
- 64OS-Pruner: Pruning Chains-of-Thought of Reasoning Models via Optimal Stoppingarxiv.org
- 65Local Message-Passing for Discrete Graph Generationarxiv.org
- 66Bridging Physical Reasoning and Task Generalization via Visual Action Outcome Reasoning Alignmentarxiv.org
- 67What We Talk About When We Talk About LLM Planning: Evidence for Two Distinct Planning Abilitiesarxiv.org
- 68Multi-Agent Routing as Set-Valued Prediction: A WildChat Benchmark and Cost-Aware Evaluationarxiv.org
- 69Thinking Ahead: Foresight Intelligence in MLLMs and World Modelarxiv.org
- 70GRATE: Temporal Extensions for Inductive KG Foundation Models via Gated Rotary Attentionarxiv.org
- 71CanvasAgent: Enabling Complex Image Creation and Editing via Visual Tool Orchestrationarxiv.org
- 72Enhancing LLMs through human feedback: a journey towards self-improvementarxiv.org
- 73FreqDepthKV: Frequency-Guided Depth Sharing for Robust KV Cache Compression in Long-Context LLM Inferencearxiv.org
- 74AgentCheck: A Reproduce-Intervene-Mitigate Workbench for LLM Agents over MCParxiv.org
- 75NL-PAC: Specification Ambiguity and Certified Minimax Risk Floors in LLM-Mediated Supervisionarxiv.org
- 76Answer-Conditioned Chain-of-Thought Distillation for Few-Shot Industrial Vision with Small VLMsarxiv.org
- 77Stable On-Policy Distillation through Adaptive Target Reformulationarxiv.org
- 78HiQA: A Hierarchical Contextual Augmentation RAG for Multi-Documents QAarxiv.org
- 79GRASP: GRanularity-Aware Search Policy for Agentic RAGarxiv.org
- 80Who&When Pro: Can LLMs Really Attribute Failures in AI Agents?arxiv.org
- 81Predicting LLM Safety Before Release by Simulating Deploymentarxiv.org
- 82A Formal Hierarchical Architecture for Agentic Orchestration with Stack-Based Execution and Lazy Discoveryarxiv.org
- 83Compile, Then Page: Executable SOP Programs and a Capability-Gated Runtime for Procedural LLM Agentsarxiv.org
- 843D-DefectBench: A Controlled Factorial Study of Vision-Language Model Evaluation Pipelines for Fine-Grained 3D Generation Defectsarxiv.org
- 85Framing Instability in LLM Ethical Stance: Auditing Negation Sensitivity in Moral Dilemmasarxiv.org
- 86Interaction Scaling: Grounding the Third Axis of Test-Time Computearxiv.org
- 87MAG: A Web-Agent Benchmark and Harness for Multimodal Action and Guide Generationarxiv.org
- 88Omni-Decision: A Progressive Evidence-State Agent System for Omni-Modal QAarxiv.org
- 89Tree-of-Thoughts Reasoning for Text-to-Image In-Context Learningarxiv.org
- 90HIVE: Understanding Post-Hallucination Reasoning in Vision Language Modelsarxiv.org
- 91Disentangling Feature Structure: A Mathematically Provable Two-Stage Training Dynamics in Transformersarxiv.org
- 92ARMOR: Stabilizing On-Policy LLM RL with Off-Policy Anchor Samplesarxiv.org
- 93Depth-Entropy Guided Sampling for Training-Free LLM Reasoningarxiv.org
- 94A Stepwise Questioning Expert-Editor Multi-Agent Framework for Long-Document Summarizationarxiv.org
- 95Do Video-LLMs Actually Watch? Diagnosing Character-Tracking Failures in Long-Form Videoarxiv.org
- 96Faithful, Not Corrective: Message-Format Effects in Multi-Hop Agent Relays Are Tier-Dependentarxiv.org
- 97AgentAbstain: Do LLM Agents Know When Not to Act?arxiv.org
- 98MemDecay: Region-Aware KV Cache Eviction for Efficient LLM Agent Inferencearxiv.org
- 99The Ebb and Flow of Multimodal Focus: Scheduling Visual Relay Windows for Grounded VLM Reasoningarxiv.org
- 100PatchOptic for Shared-State LLM Workflows with Projected Views and Verified Structured Updatesarxiv.org
- 101Context-Dependent Affordance Computation in Vision-Language Modelsarxiv.org
- 102SynthAVE: Scalable Synthetic Labeling for E-Commerce with LLM-Arena Validationarxiv.org
- 103When Does Depth Survive Composition? Compute--Quality Regimes in Latent World Modelsarxiv.org
- 104SynthDocBench: Controlled Benchmark for Long-Context Visual Document Understandingarxiv.org
- 105Looped State-Space Language Models with Adaptive Exit-State Selectionarxiv.org
- 106Terminus-4B: Can a Smaller Model Replace Frontier LLMs at Agentic Execution Tasks?arxiv.org
- 107Automated Textbook Auditing with Multi-Agent LLM Systemsarxiv.org
- 108KAT-Coder-V2.5 Technical Reportarxiv.org
- 109Tool-Adaptive LLM Rerankerarxiv.org
- 110ResonatorLM: Causal Resonant Field Mixing for Efficient Long-Context Language Modelinarxiv.org
- 111Uncertainty-guided Compositional Alignment with Part-to-Whole Semantic Representativeness in Hyperbolic Vision-Language Modelsarxiv.org
- 112BaFCo: A Document Understanding Benchmark for Complex Bangla Form Comprehensionarxiv.org
- 113Calibrated e-CUSUM Decoding for Quantized Reasoning Models: Why Token Log-Probability Is the Wrong Observable for Decoding Monitorsarxiv.org
- 114Beyond Na\"ive Prompting: Strategies for Improved Context-aided Forecasting with LLMsarxiv.org
- 115Filtering Harmful Actions Isn't Enough: Phantom Transfer in Agentic SDFarxiv.org
- 116Modality Relevance is not Modality Utility: Post-hoc Selective Modality Escalation for Cost-Aware Multimodal RAGarxiv.org
- 117ANCHOR: Automated Alignment Auditing for CLI Agents on Real-World Harmarxiv.org
- 118VOTE: Vision-Language-Action Optimization with Trajectory Ensemble Votingarxiv.org
- 119Embodied Multi-Agent Coordination by Aligning World Models Through Dialoguearxiv.org
- 120Think Through a Bottleneck: Hourglass Reasoning for Rigorous Inductionarxiv.org
- 121STEC: Evidence Compression for Deep Search in Open-domain Multi-Hop QAarxiv.org
- 122Single-Rollout Asynchronous Optimization for Agentic Reinforcement Learningarxiv.org
- 123The foundational elements of AI architecture that IT leaders need to scaletechnologyreview.com
- 124DiaLLM: An Investigation into the Robustness-Generation Gap in English Dialect Adaptationarxiv.org
- 125On Adversarial Vulnerability of Vision-Language Models through the Lens of Intermediate Spectral Subspacesarxiv.org
- 126Graph Optimization Foundation Model: Tokenizing Graph via A Language-Model Paradigmarxiv.org
- 127Dynamic Agent Skills: A Lifecycle Survey and Taxonomy of Evolving Skill Librariesarxiv.org
- 128CRiT-QA: Evaluating Multi-hop Reasoning with Counterfactual Chains and Distractor Trapsarxiv.org
- 129PRISM Edit: One Vector for All Temporal Answersarxiv.org
- 130MetaState: Persistent Working Memory Enhances Reasoning in Discrete Diffusion Language Modelsarxiv.org
- 131ABot-N1: Toward a General Visual Language Navigation Foundation Modelarxiv.org
- 132SVR-R1: Bootstrapping Multi-modal Reasoning with Self-verification in Reinforcement Learningarxiv.org
- 133KVpop -- Key-Value Cache Compression with Predictive Online Pruningarxiv.org
- 134Format Sensitivity Index: Token-Controlled Prompt Wrapper Robustness and Schema Compliance in LLM Benchmarkingarxiv.org
- 135Conditional Optimal Bridge for Riemannian Activation Steeringarxiv.org
- 136Learning to Fine-tune Foundation Models under Resource Limitationsarxiv.org
- 137Propose and Attend: Training-free MLLM Grounding Confidence via Multi-Token Localized Attentionarxiv.org
- 138Weight-Adjusted Gradients Reveal Parameter Importance and Failure Modes in LLMsarxiv.org
- 139CRINN: Contrastive Reinforcement Learning for Approximate Nearest Neighbor Searcharxiv.org
- 140Co-LMLM: Continuous-Query Limited Memory Language Modelsarxiv.org
- 141Conditional Memory via Scalable Lookup: A New Axis of Sparsity for Large Language Modelsarxiv.org
- 142Eluna: An Agentic LLM System for Automating Warehouse Operations with Reasoning and Task Executionarxiv.org
- 143SynthSAEBench: Evaluating Sparse Autoencoders on Scalable Realistic Synthetic Dataarxiv.org
- 144Agentic Context Learning with Self-Discovered Specificationarxiv.org
- 145PolicyShiftGuard: Benchmarking and Improving Policy-Adaptive Image Guardrailsarxiv.org
- 146Agents Don't Just Agree, They Remember: Benchmarking Persistent Sycophancy in Stateful Personal Agentsarxiv.org
- 147Can Argus Judge Them All? Comparing VLMs Across Domainsarxiv.org
- 148Unveiling the Mechanisms of Multi-Hop Reasoning in Transformers via Identity Bridgearxiv.org
- 149To Answer or to Abstain: Mitigating Search-Agent Hallucinations via Abstention-Aware Reinforcement Learningarxiv.org
- 150Segmentation before Answering: Pixel Grounding for MLLM Visual Reasoningarxiv.org
WAKIB Editorial Team
This review was prepared and summarized by the WAKIB AI intelligence engine and vetted by our editorial board for accuracy and reliability.
Subscribe to Newsletter
Get a weekly summary of the most promising AI research and tools delivered to your inbox.
Telegram Channel
Join our active community on Telegram for real-time tracking of AI models and trends.
