State Space Models are gaining attention as alternatives to Transformers, but Apple’s new paper To Infinity and Beyond: Tool Use Unlocks Length Generalization in State Space Models shows that the next breakthrough will not come from scale or architecture. It will come from how systems behave during inference.
The authors prove that State Space Models such as Mamba cannot generalize to longer or more complex tasks when used alone, even with unlimited training data. This is a fundamental architectural limitation. Fixed memory creates a structural limit. When given access to external tools during inference such as search, memory, and code execution, those limits disappear. The models start to adapt and solve problems far beyond their training range.
What the Paper Shows
The paper begins with a theoretical proof: models with fixed memory structurally cannot solve long-form tasks as complexity increases, regardless of training data or compute. This is an inherent limitation of their bounded memory architecture.
When the researchers allow models to use external tools such as pointers, search, or command interfaces, the difference is dramatic. A Mamba model trained on five digit addition can solve one thousand digit problems. Critically, this only works with interactive, multi-turn tool use. Single-turn tool access still fails to enable generalization.
In code repair tasks, Mamba scales better than Transformer baselines on larger codebases when trained on interactive agent trajectories. The model was fine-tuned using data from agents that iteratively debug code through multiple steps of running, editing, and re-testing until success. Across reasoning tasks such as logical graphs, interactive tool use improves extrapolation. Tower of Hanoi is harder. The approach works, but with more limited gains as the solution space grows exponentially.
Once a model can read, act, and observe, it can execute algorithms and solve problems far beyond its training distribution, rather than simply predict the next token.
Why This Matters for AI System Design
SSMs were supposed to be the efficient alternative to Transformers, which can reason through problems but get expensive at scale. This paper shows SSMs can match that capability through tool use while keeping their efficiency advantage.
For years, researchers assumed that generalization follows from scale. This paper shows that it also depends on the structure of computation during inference.
That shifts the frontier from training optimization to inference orchestration.
Interactive tool use is not an afterthought. It changes how a model reasons and adapts while running. It allows the model to query, verify, and refine its approach through external tools and memory. Inference time compute makes reasoning dynamic rather than static.
Generalization is not a property of a model. It is a property of the system that surrounds it.
The NeuroMetric View
Competition is shifting from model architecture to runtime strategy. The key question is no longer which model is smarter, but which system makes better decisions while running.
The next gains will come from adaptive inference policies that integrate reasoning, routing, verification, and feedback in real time. The Apple paper previews this transition. The future will favor systems that can decide what to do next rather than models that attempt to know everything.
Zooming Out: The Future of AI Systems
Training alone does not remove architectural limits. The paper shows that behavior during inference drives the next gains. Intelligence that generalizes and adapts arises from how systems behave while running.
This is the new frontier, where reasoning becomes programmable and decisions become dynamic. As AI evolves from model centered to system centered design, we will see systems that:
optimize less for scale and more for strategy
use smaller models with smarter orchestration
treat inference as an ongoing process rather than a single pass
To Infinity and Beyond captures this shift. The next generation of intelligence will not come from models that can do everything, but from systems that can decide what to do next.

