Is the thinking even done in real tokens? I thought it was done using the pure residual stream. That is instead of collapsing the residual stream to a token you treat the final layers output as a vector of size d_model and use that as input for the next position in the transformer. If that is the case thinking is not visible to us as users due to it not being done in text.
The text in Claude Code’s “Extended Thinking” output
41–50 of 248 posts
Re: The text in Claude Code’s “Extended Thinking” output
#42This is something we have known for a very long time, and companies are not trying to hide that either. They do it to avoid letting competitors train their models on the CoTs
Yes hasn’t this been around since Opus 4.6? I very much recall this change happening around January or February, and it was very explicitly to prevent distillation. Sonnet does not have this limitation. Fun fact: if you go back to the old school from 2 years ago and provide explicit CoT prompts, you get the full thinking prompts back again! So you disable thinking altogether, and instead make thinking part of the reg…
Re: The text in Claude Code’s “Extended Thinking” output
#43Is this some new revelation? That was well known when the first OpenAI/Anthropic “thinking” models came out.
Re: The text in Claude Code’s “Extended Thinking” output
#44This is not just Anthropic. Almost all big AI companies, including OpenAI and Google, hide their model's actual reasoning. This is because revealing the raw reasoning exposes exactly how the AI processes information. These companies spend in huge amounts on R&D to develop a thinking process that is superior to their competition. Exposing those thinking mechanics to competitors would completely defeat the purpose of t…
Re: The text in Claude Code’s “Extended Thinking” output
#45Earlier quoted context omitted.
how is summarized CoT a moat, and how is having the top 2 LLMs not a moat?
If you have the full outputs, it might make it easier for competitors to distil the model or reverse engineer the full process. It may also be that misaligned responses can be in CoT which OpenAI does not want to show to users.
Re: The text in Claude Code’s “Extended Thinking” output
#46This is not just Anthropic. Almost all big AI companies, including OpenAI and Google, hide their model's actual reasoning. This is because revealing the raw reasoning exposes exactly how the AI processes information. These companies spend in huge amounts on R&D to develop a thinking process that is superior to their competition. Exposing those thinking mechanics to competitors would completely defeat the purpose of t…
Re: The text in Claude Code’s “Extended Thinking” output
#47To be honest I thought the 'thinking' was the model being asked 'how did you come up with that' and then it generating a plausible explanation. I know at one point this was correct. Humans somewhat do the same - something that's been demonstrated in split-brain experiments.
Re: The text in Claude Code’s “Extended Thinking” output
#48This is not just Anthropic. Almost all big AI companies, including OpenAI and Google, hide their model's actual reasoning. This is because revealing the raw reasoning exposes exactly how the AI processes information. These companies spend in huge amounts on R&D to develop a thinking process that is superior to their competition. Exposing those thinking mechanics to competitors would completely defeat the purpose of t…
The cynic in me is wondering whether it's more about how revealing how the sausage is made might bring bad publicity.
Re: The text in Claude Code’s “Extended Thinking” output
#49This is not just Anthropic. Almost all big AI companies, including OpenAI and Google, hide their model's actual reasoning. This is because revealing the raw reasoning exposes exactly how the AI processes information. These companies spend in huge amounts on R&D to develop a thinking process that is superior to their competition. Exposing those thinking mechanics to competitors would completely defeat the purpose of t…
The cynic in me is wondering whether it's more about how revealing how the sausage is made might bring bad publicity.
Re: The text in Claude Code’s “Extended Thinking” output
#50Is the thinking even done in real tokens? I thought it was done using the pure residual stream. That is instead of collapsing the residual stream to a token you treat the final layers output as a vector of size d_model and use that as input for the next position in the transformer. If that is the case thinking is not visible to us as users due to it not being done in text.
I don't know about Claude, but latest GPT versions still have a readable reasoning stream. It sometimes leaks out when the model gets confused, e.g., during a tool call. If you're curious, looks simplified; less words; extremely compact. They optimize tokens. But remain readable.