Efficient Agentic Reasoning Through Self-Regulated Simulative Planning
Summary
Introduces SR²AM, a framework for efficient agentic reasoning via self-regulated simulative planning, achieving competitive performance with models 20-30x larger while using 26-95% fewer reasoning tokens.
View Cached Full Text
Cached at: 05/22/26, 06:21 PM
Paper page - Efficient Agentic Reasoning Through Self-Regulated Simulative Planning
Source: https://huggingface.co/papers/2605.22138 Efficient reasoning isnotabout shorter chain-of-thought, but about betterallocationof simulation (i.e., knowing when to imagine possible futures and when to act directly).
Current adaptive-reasoning approaches (effort knobs, token budgets in Opus 4.7 and GPT-5.5) control how much the model thinks. SR²AM asks a more structural question: whatkind of thinkingshould the model do at each step?
We decompose agentic deliberation into three systems:
- System I (reactive execution): fast, pattern-based reasoning and action for familiar situations
- System II (simulative reasoning): predicting future states through the a world model, evaluating consequences before committing. This is what separates planning from longer chain-of-thought
- System III (self-regulation): a learned configurator that autonomously decides when to simulate, how far ahead, and when to skip planning entirely
Last year, in our companion paperSiRA, we showed that simulative reasoning yields up to 124% improvement over reactive baselines — and that strong reasoning models (o1, o3-mini) fail as planners without this structure.
SR²AMadds the self-regulation layer. The result is RL enables the model to plan further ahead (+22.8% horizon) rather than more often (+2% frequency). In terms of performance, our 30B model is competitive with DeepSeek-V3.2 (685B) and Kimi-K2.5 (1T) at 26–95% fewer reasoning tokens.
This is a prototype using language-based world models. Stay tuned for our next steps on multimodal and physical world models.
The concept of a configurator, which decides when and how deeply to engage a reasoning process, is not specific to planning, but extensible to learning and adaptation going forward.
📄 SR²AM:https://arxiv.org/abs/2605.22138 📄 SiRA:https://arxiv.org/abs/2507.23773 🌐 Project:https://sailing-lab.github.io/sr2am-self-regulated-planning 💻 Code:https://github.com/sailing-lab/sr2am
🤗 SR²AM-v0.1-8B:https://huggingface.co/sailing-lab/SR2AM-v0.1-8B 🤗 SR²AM-v1.0-30B:https://huggingface.co/sailing-lab/SR2AM-v1.0-30B
Similar Articles
Self-Speculation for Faster Reasoning Models
This paper introduces SSR, a training-free self-speculative decoding method that leverages chain-of-thought to accelerate reasoning in large language models, achieving up to 24.1% latency reduction on structured generation tasks.
Stratagem: Learning Transferable Reasoning via Trajectory-Modulated Game Self-Play
STRATAGEM is a new framework for improving reasoning transferability in language models by using game self-play with a Reasoning Transferability Coefficient and Reasoning Evolution Reward to reinforce abstract, domain-agnostic reasoning patterns over game-specific heuristics. Experiments show strong improvements on mathematical reasoning, general reasoning, and code generation benchmarks.
@mdeng34: Frontier LLMs are converging on efficient, adaptive reasoning. Opus 4.7 lets the model decide how deeply to reason. GPT…
New research introduces SR²AM, a configurator that self-regulates when to use simulative reasoning, improving efficiency and performance in LLMs.
Stop When Further Reasoning Won't Help: Attention-State Adaptive Generation in Reasoning Models
This paper proposes ASAG, a training-free method that adaptively stops reasoning in large reasoning models based on attention distributions, reducing token usage by ~40% while improving accuracy by 3.2% on benchmarks using DeepSeek-R1-Distill and Qwen3 models.
Don't Overthink, Don't Underthink: Toward Adaptive Reasoning in Agentic AI
The paper proposes adaptive reasoning in agentic AI systems to dynamically allocate computational effort based on task demands, avoiding over-reasoning and under-reasoning through evaluation on MATH-500 and GAIA benchmarks.