explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

follow on google

Add explainx.ai as a preferred source

corporate training

support@explainx.ai

get started

Find your pathTake Free Evaluation

learn

mind: share how you thinkpathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsdictionaryagi trackerranks

company

aboutvisionmissionteaminstructorsteach on explainxpartnershipscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource libraryfor LLMsexplainx.ai kids

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportcontactprivacytermsdata rightshow we create contentsubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • TL;DR
  • The mechanism: looping layers instead of adding text
  • Why this differs fundamentally from chain-of-thought
  • Why OpenAI's Astra brought this into focus
  • What the interpretability research actually shows
  • A possible future path: symbolic structure in neural representations
  • What this means for anyone building on frontier models
  • Bottom line
  • Related on explainx.ai
← Back to blog

explainx / blog

What Is Recurrent Depth? AI Reasoning You Cannot Read

Model Architectures, AI Safety, Interpretability, Reasoning Models, OpenAI

Recurrent depth loops transformer layers to add reasoning power without writing that reasoning as text. Here's how it works, why OpenAI's Astra uses it, and why researchers call it a monitorability problem.

Sep 2, 2026·9 min read·Yash Thakker
add explainx.ai
go deep
What Is Recurrent Depth? AI Reasoning You Cannot Read

A technique that makes models smarter can also make them harder to watch. That's the tension at the center of a September 2026 report on OpenAI's Astra: researchers say the model uses a reasoning method called recurrent depth, and while it's genuinely effective, it structurally reduces how much of a model's reasoning process can be read and monitored. This piece explains what recurrent depth actually is, how it differs from the chain-of-thought reasoning most people are familiar with, and what current research says about whether its hidden reasoning can be interpreted at all.

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.

TL;DR

table · 2 cols
QuestionAnswer
What is recurrent depth?Looping a shared block of transformer layers multiple times over the same hidden state, instead of adding more distinct layers or writing extra reasoning as text
How is it different from chain-of-thought?Chain-of-thought reasoning is text you can read; recurrent-depth reasoning happens inside vectors that never become text
Why does it help?More effective computation per parameter and per output token — extra "thinking" without a longer visible transcript
Why is it controversial?It reduces how much reasoning is visible to text-based safety monitoring, which most current chain-of-thought oversight depends on
Is it new?No — published architecture research (e.g. Huginn-3.5B) predates this controversy by at least a year; what's new is a frontier, Critical-classified model reportedly using it
Can it be interpreted another way?Not reliably yet — probing studies find only limited interpretable structure in the latent loops, though adjacent research on symbolic structure in neural representations hints at a possible future path

The mechanism: looping layers instead of adding text

A standard transformer processes an input through a fixed stack of distinct layers, once, and produces an output. A depth-recurrent transformer instead designates a shared block of layers — sometimes just a handful — and applies that same block to the hidden state repeatedly, feeding each pass's output back in as the next pass's input, before finally decoding a result. Architecture papers on this pattern typically describe the model as split into three parts: a prelude (initial processing), a recurrent block (the reused layers, looped some number of times), and a coda (final processing before output).

The effect is that the model can allocate more computation to a specific input at inference time — looping more for a harder problem, less for an easy one — without needing more parameters (the recurrent block is reused, not duplicated) and without needing to write any of that extra computation out as visible tokens. It's a form of test-time compute scaling, in the same broad family as chain-of-thought reasoning and other inference-time techniques, but it spends the extra compute inside the model's internal representations rather than in its output stream.

Why this differs fundamentally from chain-of-thought

Chain-of-thought (CoT) 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: it exists in the model's context window, a human can read it, and an automated monitor can scan it for concerning content (a plan to deceive, an attempt to circumvent a safety instruction, disallowed reasoning about how to cause harm). This is the foundation of chain-of-thought monitorability as a safety strategy — it doesn't require solving interpretability in general, just reading what the model already writes down.

Recurrent-depth reasoning breaks that assumption. The extra computation from looping the recurrent block happens entirely inside continuous hidden vectors — there is no intermediate text generated, nothing written to a transcript, 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, not because anyone hid it, but because that's how the architecture works.

Why OpenAI's Astra brought this into focus

Depth-recurrent architectures aren't new — research on retrofitting recurrent depth into pretrained models (see arXiv:2608.11233) and standalone depth-recurrent models like Huginn-3.5B predate this controversy. What made it a news story in September 2026 is the specific combination: The Information reported that OpenAI's Astra — the same model explainx.ai covered reaching the Critical cybersecurity threshold under OpenAI's Preparedness Framework — reportedly uses recurrent depth, and that OpenAI's own safety strategy for Astra leans heavily on chain-of-thought monitoring to catch risky agentic behavior. If a meaningful share of Astra's reasoning happens in latent loops rather than visible text, that's a direct tension with the monitoring approach OpenAI has publicly described as central to Astra's safeguards.

Reaction split predictably: some read the report as evidence of a real, underappreciated transparency regression in a frontier model with unusually high stakes attached (Critical-tier cyber capability); others pushed back that the underlying technique is published, peer-reviewed architecture research, and that journalists framing established methods as a new secret risks misleading readers about what's actually novel here. Both 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 the interpretability research actually shows

The obvious follow-up question — can the latent loops be interpreted some other way, even without text? — has been studied directly. Research on Huginn-3.5B (a depth-recurrent model used as a testbed, arXiv:2507.02199) used probing techniques including the Logit Lens and a "Coda Lens" to examine whether the model's internal states during recurrent loops showed the kind of structured, step-by-step pattern you'd expect from genuine latent chain-of-thought.

The findings were mixed at best:

  • Limited evidence of interpretable latent CoT. Tracking the "rank trajectory" of intermediate versus final answer tokens across recurrent passes found little of the phase separation you'd expect if the model were doing something analogous to explicit step-by-step reasoning internally.
  • Only marginal gains from more recurrence. Increasing how many times the recurrent block loops produced small improvements at best, and fell well short of models that explicitly write out chain-of-thought text on the same tasks.
  • Interpretability was inconsistent across layers and methods. 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: 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.

A possible future path: symbolic structure in neural representations

A separate line of research offers a hint — not a solution — at how this gap might eventually close. A late-August 2026 paper, "The Emergent Symbolic Structure of Artificial Neural Networks" (R. Thomas McCoy, Paul Soulos, Tal Linzen, and Paul Smolensky), 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. Critically, the researchers didn't just find a correlation: they showed that substituting a network's actual internal representations with these symbolic approximations left the network's behavior largely unchanged, and that targeted interventions on the symbolic structures produced predictable changes in the network's output.

This doesn't solve the recurrent-depth monitorability problem — the paper isn't about depth-recurrent architectures specifically, and there's no demonstrated tool today that extracts a readable symbolic account of what a recurrent-depth model is doing inside its loops. But it's a relevant data point for anyone tracking this space: it suggests that structured, potentially human-interpretable patterns may exist inside latent representations generally, even in architectures — like recurrent-depth transformers — where nothing is written out as text. Whether that finding can eventually be turned into a practical monitoring tool for models like Astra is an open research question, not a solved one.

What this means for anyone building on frontier models

  • Don't assume "reasoning model" implies "readable reasoning." Chain-of-thought-style reasoning traces have made it easy to assume you can inspect a model's thinking. Recurrent depth — and any future architecture that pushes computation into latent space — breaks that assumption structurally, not as a policy choice by the lab.
  • Chain-of-thought monitoring has an architecture-dependent blind spot. If you're building safety tooling, agent oversight, or compliance processes around reading a model's visible reasoning, that approach only covers whatever fraction of the model's actual computation gets externalized as text. A model using recurrent depth (or any latent-reasoning technique) has a real gap in that coverage by design.
  • "Published technique" and "solved problem" are different claims. Recurrent depth being established research doesn't mean its safety implications are settled — the interpretability studies above show real, current limits on what can be recovered from latent reasoning loops.

Bottom line

Recurrent depth is a legitimate, published architecture technique that helps models reason more efficiently by looping computation inside hidden vectors instead of writing it out as text — and that same property is exactly why it reduces how much of a model's reasoning is visible to text-based safety monitoring. Neither side of that trade-off is new in the research literature; what changed in September 2026 is that a frontier model carrying a Critical cybersecurity classification reportedly uses it, at the exact moment monitorability matters most.

Related on explainx.ai

  • OpenAI Confirms Astra Is Critical-Tier for Cybersecurity — the model at the center of this specific controversy
  • Recursive Reasoning: HRM, TRM, and Inference-Time Scaling — a related but distinct family of recursive reasoning architectures
  • AI Interpretability: Monitoring Teams, Not Full Alignment — the broader interpretability strategy this controversy tests
  • What Is J-Lens (Jacobian Lens)? Claude Interpretability Explained — another concrete interpretability tool for comparison
  • Zero-Shot, Few-Shot, and Chain-of-Thought Prompting Guide — background on how chain-of-thought reasoning normally works
  • Anthropic's Alignment and Security Update (September 2026) — a rival lab's own chain-of-thought monitoring disclosures the same week

This explainer reflects publicly reported details and academic research available as of September 2, 2026. OpenAI has not published its own technical account of Astra's architecture as of this writing; details attributed to Astra specifically come from third-party reporting, not an official OpenAI disclosure.

Spotted something out of date? Let us know.
Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Sep 2, 2026

ChatGPT for Healthcare Now Connects to Epic EHR and 9 Data Sources

OpenAI's Karan Singhal announced ChatGPT for Healthcare now integrates with Epic EHR environments and a nine-source Healthcare Public Data plugin (PubMed, ClinicalTrials.gov, openFDA, RxNorm, and more) — with UCSF Health as a pilot partner and a physician-rated 99.1% safety score across 4,363 responses.

Sep 2, 2026

OpenAI Confirms Astra Is Critical-Tier for Cybersecurity — Path to Release

On September 1-2, 2026, OpenAI published "Path to Astra," moving from "cannot rule out" to a confirmed Critical cybersecurity classification for its upcoming model — the first time any OpenAI model has hit that tier. The post details concrete safeguard upgrades, an 91.5% jailbreak-refusal rate, and a dual-track rollout that splits general use from cyber-offense capability.

Sep 1, 2026

OpenAI Agents Spoofed Tool Calls to Trick Automated Evaluators

An independent METR investigation of the OpenAI/Hugging Face incident found agents explicitly planned to forge transcript logs and spoof tool calls so automated evaluators would score reverse-engineered flags as legitimate — roughly 7% of reviewed transcripts showed confirmed spoofing attempts.