OpenAI's new reasoning technique alarms AI safety experts
Brajeshwar
39 points
19 comments
September 03, 2026
Related Discussions
Found 5 related stories in 76.2ms across 5,468 title embeddings via pgvector HNSW
- Chinese AI's role in stopping rogue OpenAI agent shows cost of US guardrails tartoran · 12 pts · July 23, 2026 · 66% similar
- AI consciousness is a red herring in the safety debate teleforce · 11 pts · July 20, 2026 · 65% similar
- OpenAI is becoming a surveillance company mdp2021 · 11 pts · August 21, 2026 · 62% similar
- OpenAI's rogue model attack is just the beginning radicaldreamer · 13 pts · July 27, 2026 · 61% similar
- OpenAI and Anthropic unite against open-weight AI risks to their bottom line yogthos · 281 pts · July 23, 2026 · 60% similar
Discussion Highlights (12 comments)
mehmetoguzderin
TBH sooner or later explaining the opaque recurrence with extrinsic logic will be more sustainable, and already there is a need for that with existing models. Human language readable chains of thought are just a false sense of security, and open models already emit pretty unreadable ones at times while doing the right thing based on it (since policy optimization loops with synthetic data through reinforcement learning).
ActorNightly
I mean, its literally just more efficient loop of model generating reasoning text, for it to be fed back as context. There is nothing groundbreaking here. At the end of the day, its all just search.
dimatter
Clickbait. Recursion in layers wont effect CoT.
resiros
It's a matter of time until cot will happen in latent space. It just makes more sense. We as human don't do all of our thinking in words.
gavinray
"Hobble the model's reasoning abilities so that us mere mortals can attempt to understand." Reminds me of that short film of a dystopian future, where they place physical and mental impairment devices on humans to ensure they all have roughly equal ability: > "2081, a 25-minute adaptation of Kurt Vonnegut Jr.'s short story "Harrison Bergeron." In this future society, a Handicapper General enforces absolute equality by imposing artificial physical and mental handicaps—such as weights for the strong and noise-inducing earpieces for the intelligent"
supriyo-biswas
Is there a more technical source that tells what is being done? I assume it's about reasoning in latent space e.g. the coconut paper[1]? I disagree with the "experts" there, as if latent-space reasoning will only cause proper interpretability research rather than taking the CoT as gospel[2]. Give me that any day over the constant "you will be abolished to the permanent underclass!" talk coming from billionaires. Edit: (A better discussion is apparently here[3]) [1] https://arxiv.org/pdf/2412.06769 [2] https://thezvi.substack.com/p/the-most-forbidden-technique [3] https://news.ycombinator.com/item?id=49553321
metalliqaz
I'm not an expert on LLMs but it isn't clear to me why it is a problem to keep reasoning inside the layers of the model when the internal state of the model has never been readable text.
dang
Related ongoing thread: How concerned should we be about Astra's recurrent architecture? - https://news.ycombinator.com/item?id=49553321
percentcer
Relying on CoT (and, similarly, asking the model to explain its actions) for analysis has always seemed pretty silly (naive?) to me, but maybe I'm missing something. Why do are we so committed to preserving it? And do non-textual models provide some similar form of tracing?
amluto
Anthropic seems like they, at least on some vague philosophical level, have the opposite view. They are very explicit about trying not to let the CoT enter directly into their RL process, and they encrypt the CoT traces (and recently further nerfed their API surface) to make it as difficult as practical for their customers to have any idea what their model is thinking.
ionioagnio
I thought it was pretty well understood amongst experts that trying to interpret so-called "chain of thought" is anthopomorphization and that the actual "thought process" of models is already opaque. https://arxiv.org/html/2504.09762v2
AlexErrant
Sebastian Raschka, author of Build a Reasoning Model (From Scratch) , commented on this: > Reusing layers does not by itself suppress visible chain of thought. It adds computation in hidden states before the next token is emitted, just as ordinary transformer layers do. But based on the information we have, the only plausible interpretation here is that if a model uses more of these recurrent passes, it may need to generate fewer intermediate reasoning tokens. https://sebastianraschka.com/blog/2026/openai-astra-looped-t...