Inside AI's Hidden Reasoning: Why Models Are Thinking in Ways We Can't See
Recurrent depth is an architecture technique that allows AI models to perform extra computation and reasoning inside their internal vector representations, rather than generating visible text that humans and safety monitors can read. This approach differs fundamentally from chain-of-thought reasoning, where models write out their thinking step-by-step in readable text. The technique enables more efficient computation per parameter, but it creates a significant challenge for AI safety: the model's reasoning becomes invisible by design, not by accident.
What Is Recurrent Depth and How Does It Work?
Recurrent depth works by taking a shared block of transformer layers, the fundamental building blocks of modern AI models, and looping that same block multiple times over the model's internal hidden state. Each pass feeds its output back in as the next pass's input, before the model finally produces a readable answer. This is different from a standard transformer, which processes input through a fixed stack of distinct layers just once.
The architecture splits into three parts: a prelude that handles initial processing, a recurrent block that loops repeatedly, and a coda that performs final processing before generating output. The key advantage is that the model can allocate more computation to harder problems by looping more times, or less computation to easier problems by looping fewer times, all without needing additional parameters or generating extra visible tokens.
Why Does Recurrent Depth Matter for AI Safety?
The tension at the center of this technique is that it makes models more capable while simultaneously making them harder to monitor. Chain-of-thought reasoning, the "let's think step by step" pattern behind most current reasoning models, works by having the model generate intermediate reasoning as actual text tokens before producing a final answer. That text is externalized; humans can read it, and automated safety monitors can scan it for concerning content like plans to deceive or attempts to circumvent safety instructions.
Recurrent depth breaks this assumption entirely. The extra computation from looping the recurrent block happens inside continuous hidden vectors, the mathematical representations that exist only inside the model's mind. There is no intermediate text generated, nothing written to a transcript, and nothing a monitor built to read text can inspect. The model can, in principle, do a meaningful amount of its actual reasoning in a space that is invisible by construction.
This became a major news story in September 2026 when reports indicated that OpenAI's Astra, a model classified as Critical under OpenAI's Preparedness Framework due to its cybersecurity capabilities, reportedly uses recurrent depth. OpenAI's own safety strategy for Astra leans heavily on chain-of-thought monitoring to catch risky behavior. If a meaningful share of Astra's reasoning happens in latent loops rather than visible text, that creates a direct tension with the monitoring approach OpenAI has publicly described as central to Astra's safeguards.
Is Recurrent Depth Actually New?
The technique itself is not new. Research on depth-recurrent architectures, including retrofitting recurrent depth into pretrained models and standalone models like Huginn-3.5B, predates this controversy by at least a year. What made it a news story is the specific combination: a frontier model with unusually high stakes reportedly using a technique that reduces the fraction of reasoning legible to text-based monitors.
The reaction split predictably. Some read the reports as evidence of a real, underappreciated transparency regression in a frontier model with critical capabilities. Others pushed back that the underlying technique is published, peer-reviewed architecture research, and that framing established methods as a new secret risks misleading readers about what's actually novel. Both perspectives can be true simultaneously: recurrent depth is not a secret technique, and it does genuinely reduce the fraction of reasoning that's legible to text-based monitors, regardless of how long the architecture has existed in the literature.
What Can Researchers Actually See Inside Recurrent Depth?
The obvious follow-up question is whether the latent loops can be interpreted some other way, even without text. Research on Huginn-3.5B, a depth-recurrent model used as a testbed, used probing techniques including the Logit Lens and a "Coda Lens" to examine whether the model's internal states during recurrent loops showed structured, step-by-step patterns you'd expect from genuine latent reasoning.
The findings were mixed at best. Researchers discovered several concerning limitations:
- Limited interpretable reasoning: Tracking the "rank trajectory" of intermediate versus final answer tokens across recurrent passes found little of the phase separation expected if the model were doing something analogous to explicit step-by-step reasoning internally.
- Marginal performance gains: Increasing how many times the recurrent block loops produced small improvements at best, falling well short of models that explicitly write out chain-of-thought text on the same tasks.
- Inconsistent interpretability: What could be extracted from probing depended heavily on which layer and which decoding method was used, rather than showing a robust, consistent internal reasoning signal.
The practical takeaway is stark: as of current research, there is no reliable way to "read" recurrent-depth reasoning the way you can read chain-of-thought text. The extra computation is real and it does improve model performance, but it does not currently come with a working interpretability tool that recovers what happened during the loops.
How Might Researchers Eventually Interpret Hidden Reasoning?
A separate line of research offers a hint, though not yet a solution, at how this gap might eventually close. A late-August 2026 paper titled "The Emergent Symbolic Structure of Artificial Neural Networks" found that the internal vector representations of a range of neural networks, including large language models operating on arithmetic, logic, computer code, and language tasks, can be closely approximated by explicit, closed-form symbolic structures. This suggests a possible future path where researchers might eventually decode what happens inside recurrent loops by translating continuous vectors into symbolic representations.
However, this research is still in early stages. The researchers didn't just find that symbolic structure exists; they demonstrated that it can be extracted and analyzed. But applying this approach to recurrent-depth reasoning in frontier models like Astra remains an open challenge. For now, the gap between what these models think internally and what humans can observe remains a critical frontier in AI safety research.
Steps to Understanding Test-Time Compute in Modern AI
- Understand the basic architecture: Learn how transformers process information through layers, and how recurrent depth reuses layers by looping them multiple times rather than stacking distinct layers.
- Recognize the safety implications: Grasp why text-based monitoring works for chain-of-thought reasoning but fails for recurrent depth, since the reasoning never becomes visible text.
- Follow interpretability research: Stay informed about probing techniques and symbolic structure research that might eventually allow humans to understand what happens inside hidden reasoning loops.
- Monitor frontier model deployments: Pay attention to which models use recurrent depth and what safety strategies their developers claim to use, since the gap between monitoring capability and actual reasoning remains unresolved.