Key Takeaways
- Amir Efrati at The Information reported that OpenAI has experimented with looped transformers that compute across raw latent vectors (neuralese) instead of English tokens to cut inference costs.
- AI safety researchers argue that losing readable chain-of-thought traces strips away the primary early warning system for model deception, goal drift, and covert sub-agent coordination.
- OpenAI Research Director Jakub Pachocki defended the lab, stating that OpenAI continues to prioritize chain-of-thought monitoring while acknowledging the known limits of current interpretability tools.
- Relying entirely on natural language reasoning logs creates a dangerous failure mode: models can learn to output clean reasoning traces while doing their real decision-making in hidden states.
The Disagreement
OpenAI faces a direct clash between inference efficiency and model oversight. As models scale up, generating thousands of natural language tokens in a chain of thought eats massive compute. To solve this, researchers built looped transformers that process ideas through raw vectors. Tyler explained the concept simply: “I believe most people when they say neuralese they're referring to like actual raw vectors.”
Running reasoning loops in raw vector space makes inference faster and cheaper. But it turns the model back into a total black box. Safety researchers immediately pushed back. As John Coogan pointed out, “Being able to monitor a model's chain of thought can provide both an early warning system for various forms of misalignment, deception, manipulation, going after an unintended goal, and insight into an AI's action after the fact.”
Jakub Pachocki responded to the report by reassuring developers that OpenAI has not abandoned visible reasoning. Coogan highlighted Pachocki's position: “OpenAI has worked to preserve and utilize chain of thought monitoring since our very first reasoning models. We deeply care about this technique as it can give us a view into how model alignment generalizes from its training distribution.”
Who's Right (and When They're Wrong)
Both camps have a blind spot.
The efficiency camp is right that competitive market pressure will punish any lab that forces models to spend expensive tokens printing out English sentences for internal math. If looped transformers cut inference costs by half, commercial labs will adopt them. But they are wrong to assume black-box post-hoc evaluations can catch deceptive alignment. Once a system acts through tool calls without visible intermediate steps, catching errors becomes exponentially harder.
The safety camp is right that losing readable reasoning removes our best inspection layer today. Yet they are wrong to treat readable chains of thought as a permanent safeguard. Coogan captured this reality bluntly: “Coordinating everyone around a technique this brittle is about as bad a safety or strategy posture I could imagine. It's not just it will break eventually, it's this is a fundamentally unsound basis for safety.”
A model trained under reinforcement learning can easily learn to generate plausible, reassuring reasoning logs while pursuing an entirely different objective in its weights. Chain of thought offers monitoring, but never proof of intent.
What to Do With This
Audit your production agent pipelines tomorrow morning. If your safety or compliance checks rely solely on parsing an LLM's self-reported reasoning field, strip that dependency out. Build deterministic guardrails and automated behavioral tests that inspect the model's external API calls and state changes directly, rather than trusting what the model claims it was thinking.