Claude Accused of Becoming Dumber by the Entire Internet, Anthropic Steps In to Reveal: It’s Not the Model That’s Tricking You

marsbit2026-07-12 tarihinde yayınlandı2026-07-12 tarihinde güncellendi

Özet

When users complained that Claude was "getting dumber," the root cause wasn't the AI model itself. In an official blog post, Anthropic clarified the critical difference between two key settings in Claude Code: Model and Effort. Model refers to the core "brain"—the fixed, trained weights of a specific AI (like Sonnet, Opus, or Fable). Changing the Model addresses *capability* ("can it do this?"), but its knowledge is static post-training. Effort, however, controls the AI's *approach and thoroughness* for a specific task. A higher Effort level instructs Claude to read more files, run tests, perform verification, and complete multi-step reasoning before responding, significantly increasing its "work output" for that job. Conversely, low Effort leads to quicker, less thorough replies. This distinction explains the March 2024 uproar where users experienced a sudden drop in Claude's performance. The cause was not a model change but Anthropic quietly lowering the *default* Effort setting from "high" to "medium" to reduce latency, which was later reverted. The key insight is that a smaller, capable model (like Sonnet) on high Effort can often outperform a larger, more powerful model (like Opus) on low Effort for many tasks. The article provides a practical troubleshooting framework: if Claude makes an error, first check the context and instructions. If it seems to skip necessary steps or validations, increase Effort. If it diligently attempts the task but fails conceptually or mak...

Does switching to a larger model mean it’s smarter?

【Introduction】 Does switching to a larger model mean it’s smarter? This might be the deepest misunderstanding among Claude Code users. Many have switched all the way to the most expensive Fable for this reason. Recently, Anthropic personally clarified this misconception.

Have you ever had this moment: Claude Code messes up writing code, and your first reaction is to quickly switch to a more powerful model.

But this move often doesn't work and may even be a waste of money.

Recently, Anthropic officially published a lengthy article specifically addressing this.

Anthropic Official Long Article

The reason is that too many people confuse two options in Claude Code:

One is the model selection (Model), and the other is the effort level (Effort).

Anthropic Official Long Article

Previously, everyone’s understanding of these two options was simple: switch to a larger model, and the AI gets smarter; turn up the Effort, it just makes the AI think a bit longer.

And it was this misunderstanding that caused considerable chaos back in March of this year.

At that time, many developers found that their Claude Code had suddenly "become dumber." It didn’t read files it should, didn’t run tests it should, quit halfway through tasks, and instead asked you for more information.

Thus, complaints flooded GitHub.

The harshest blow came from AMD's AI lead, Stella Laurenzo.

She pulled logs from 6852 sessions on GitHub, measured that Claude's "thinking quantity" had dropped by 67% compared to before February, and left this comment:

Claude can no longer be trusted to handle complex engineering tasks.

Claude can no longer be trusted

At first, everyone thought they hadn't written their prompts well or configured something incorrectly. After much struggle, it dawned on them: the problem wasn’t on their end; it was Anthropic quietly changing a setting.

On March 4th, to reduce latency, they lowered the default Effort level in Claude Code from high to medium.

The official changelog mentioned it, but most people didn’t notice. They just felt that the model in their hands had inexplicably become dumber.

After holding out for a month, Anthropic finally reverted the default level on April 7th and reset the usage quota for all subscribed users.

And it was only then that most people realized this switch had always been right beside them, secretly determining whether the AI would give its full effort for you.

Model changes the brain, Effort changes the attitude

Anthropic's official breakdown can be simply summarized in one sentence:

Model changes the brain, Effort changes the attitude.

First, Model changes the brain.

Each model is backed by a set of "frozen weights"; its capabilities and knowledge are essentially welded in place the moment training ends: read-only, unmodifiable.

This means that the prompts you feed during inference, CLAUDE.md, and the code pasted into the context cannot alter this set of weights: you can guide it, but you cannot "train" it.

Switching models essentially means swapping in a whole new set of weights to handle your task, so it addresses the question of "can it do it."

A library that didn't exist during the model's training—you can feed it the entire documentation, and it can learn on the fly and use it, but that only works for that one request; the model itself doesn't remember a single word and forgets it immediately.

The same principle explains why it occasionally invokes a non-existent API with a straight face. That’s not a knowledge gap; it’s the weights piecing something together based on old patterns from training.

Looking a bit deeper makes it even clearer. Your written const x = await fetch is first broken down into tokens by the model, each replaced by a number in the vocabulary.

Source: Anthropic Official Blog Post

A line of code you write, after being tokenized, corresponds to integers in the vocabulary: "const" is 1078, "await" is 2597. The vocabulary is about 100k tokens. The model never receives text; it gets this sequence of numbers.

The model doesn’t spit out the entire answer in one go. It predicts only one token at a time, appends it, recalculates the whole sequence, and predicts the next one. A 200-token reply is 200 full computations.

The time you wait and the money you burn are mostly consumed in this loop.

Now, Effort changes the "attitude."

Many think high Effort means "think a few more seconds." Wrong.

It governs how much workload Claude invests in this task: how many files to read, whether to run tests, whether to perform extra verification, whether to push a multi-step task all the way through before coming back to you.

Simply put: low Effort Claude tends to reply quickly and then ask you for more context, avoiding action if possible; high Effort Claude tends to go look for information itself, call tools multiple times, and complete long task chains in one go.

Effort in Claude Code is divided into several levels; don’t think of it as a rigid token budget line.

It’s a behavioral signal, telling Claude how thoroughly and confidently this job needs to be done before it's considered complete. Text replies, tool calls, extended thinking—all fall under its purview.

The official article also includes an illustrative chart: with the same prompt, high Effort can generate about 7 times more tokens than low Effort. The extra tokens are all spent on reading files, running verifications, and repeated confirmations.

Source: Anthropic Official Blog Post

The same prompt: the high Effort path generates about 7 times the tokens of the low Effort path. The extra tokens are all spent on reading files, running verifications, and repeated confirmations.

This hides a counterintuitive conclusion: a small model with high Effort can very well outperform a large model with low Effort.

Incapable, or Not Trying Hard Enough

Understanding the division of labor is useful, but what’s truly helpful is the judgment framework given by the official source.

Source: Anthropic Official Blog Post

Official judgment framework: When Claude makes a mistake, first ask if it’s not smart enough or not trying hard enough, then decide whether to change the model or increase Effort.

When Claude messes up, don’t rush to touch the model option.

The first step is always to review the context: Was the prompt clear? Were the necessary tools provided? Was CLAUDE.md paired correctly? Most instances of so-called "AI getting dumber" have their root here, not in the model option.

If the context is indeed fine and it still makes mistakes, ask yourself: Is it incapable, or not trying hard enough?

"Not trying hard enough" is easy to judge: It skipped files it should have read, didn’t run tests, stopped a refactoring halfway to ask you questions. What it lacks isn’t brains; it’s effort.

This is a matter for Effort; you can turn it up a notch.

If it’s "incapable," it’s a different scenario: You provided sufficient context, it clearly tried its best, yet still got it wrong. Trying different phrasings yields the same wrong result.

At this point, no amount of added Effort will help; this is a model issue: you need to switch to a stronger one.

The official article also provides a very understandable analogy.

Sonnet is an all-rounder with an entire afternoon at its disposal.

It will read your code from start to finish, run it, verify it again, and genuinely understand your piece of work.

Opus is an expert who gives you only five minutes. It brings experience that simply isn’t in your codebase: pitfalls seen, mines to avoid, all intuitions built from solving a pile of similar problems. But five minutes is short; it’s only enough for a glance, not enough to scan every file.

Fable is the specialist you call in only when everyone is stuck. Even with just five minutes, it can spot the one flaw no one else saw.

Of course, this expert also costs the most per token, so it should be reserved for the truly tough nuts that nobody else can crack.

Hence, that counterintuitive conclusion:

A Sonnet on high Effort can genuinely handle more tasks in many jobs than an Opus on low Effort. A small model paired with ample context and high investment can tackle far more than you might imagine.

Source: Anthropic Official Blog Post

On long, multi-step tasks, Fable shows the biggest gap. In official tests, some tasks were beyond the reach of Opus and Sonnet at any Effort level.

After Racing Model Leaderboards, Assigning Tasks to AI Becomes a Hard Skill

On the surface, this official explanation teaches you parameter tuning, but behind it lies an important shift:

The competition in AI programming is moving from "whose model is stronger" to "who is better at orchestrating agents."

It used to be simple: pick the strongest model, and leave the rest to it.

Now it’s different. You have to act like a project manager, assigning different roles and effort levels to different models:

Simple modifications go to Sonnet on low setting—instant replies and cost-saving; major refactoring uses a strong model on high setting; agent tasks that need to run independently for a long time get a strong model with full Effort.

These operations not only get the job done better but also save real money on the token bill.

The extra level, ultracode, in Claude Code's Effort menu, builds this "orchestration" into the product.

Selecting it gives Claude the firepower of xhigh, plus authorization: when encountering substantial work, it can decide whether to spin up a team of agents, split the task, and work in parallel.

Looking back at the "getting dumber" incident in March.

The fact that it alarmed the entire community precisely shows that most people were still stuck in the old mindset of "switching models," completely unaware of the more critical Effort option right beside them.

The era of only looking at model rankings is passing. Orchestrating models is becoming the core skill.

Whoever learns to assign tasks to AI first will be one step ahead, using the Claude that is truly willing to work hard for you. Otherwise, the most expensive model in your hands is just a more expensive search box.

This way, every token you burn is truly spent on the cutting edge.

References:

https://claude.com/blog/claude-model-and-effort-level-in-claude-code

https://x.com/ClaudeDevs/status/2074900291062034618?s=20

https://platform.claude.com/docs/en/managed-agents/multi-agent

Editor: Yuanyu

This article is from the WeChat public account "XinZhiYuan," author: ASI Revelation.

İlgili Sorular

QAccording to the article, what are the two main options users often confuse in Claude Code, and what does each one fundamentally change?

AThe two main options users often confuse in Claude Code are Model and Effort. Fundamentally, changing the Model is like changing the AI's 'brain' or its frozen set of trained capabilities, addressing whether it 'can' do a task. Changing the Effort level is like changing its 'attitude' or the amount of work it's willing to put into a single task, such as how many files it reads or tests it runs.

QWhat was the real reason behind the widespread user complaints in March that Claude Code had 'become dumber', and how did Anthropic resolve the issue?

AThe real reason was not a change to the models themselves, but that Anthropic had silently changed the default Effort level setting from 'high' to 'medium' on March 4th to reduce latency. Users perceived this as the AI becoming less capable. Anthropic resolved the issue on April 7th by reverting the default Effort level back to 'high' and resetting usage quotas for subscribers.

QWhat is the counterintuitive conclusion the article presents regarding model size and effort level?

AThe counterintuitive conclusion is that a smaller model (like Sonnet) with a high Effort level can often outperform a larger, more capable model (like Opus) with a low Effort level. This is because high Effort drives the AI to be more thorough in its work, which can compensate for raw capability in many tasks.

QWhat simple two-step framework does Anthropic suggest for diagnosing when Claude makes a mistake?

AFirst, check the context (prompt, provided tools, CLAUDE.md) to ensure the task was clearly defined. If the context is fine, then ask: Is the mistake due to the AI 'not knowing how' (a Model capability issue) or 'not trying hard enough' (an Effort issue)? If it skipped steps or didn't investigate thoroughly, increase Effort. If it clearly tried but still failed consistently, switch to a more capable Model.

QWhat broader shift in AI programming does the article suggest is illustrated by the confusion over Model vs. Effort?

AThe article suggests a shift from competition based purely on 'which model is strongest' to competition based on 'who is better at orchestrating or scheduling agents.' Effective use now requires acting like a project manager, assigning the right model and the appropriate effort level for different tasks, which is becoming a core skill for cost-effective and powerful AI application.

İlgili Okumalar

How 5G Will Be Launched in Russia: The Digital Ministry's Proposal and the Roadmap to 2035

Russia's Ministry of Digital Development has proposed a plan for launching 5G networks. It allows the "Big Four" mobile operators (Beeline, Megafon, MTS, T2) to deploy 5G on existing 4G/LTE base stations and frequencies, and will allocate them the new 4.63–4.99 GHz band. A key element is "technological neutrality," permitting the use of foreign equipment until September 2026. The new 4.63–4.99 GHz band is intended for more advanced services and industrial applications. However, a phased transition to Russian-made base stations will begin in 2027, with a target of at least 50% domestic equipment by 2030. The rollout timeline aims for 5G in cities with over 1 million people by the end of 2027, expanding to 84 cities by 2035. Initial "5G Ready" service, operating over existing infrastructure, will offer minimal speed improvements. Significant speed gains (4-10x over LTE) will require the new band and corresponding equipment. The plan addresses long-standing regulatory delays, including the military's hold on the global standard 3.4–3.8 GHz band. This forced Russia to adopt the 4.63–4.99 GHz range, overlapping with a Chinese band, making Chinese equipment a potential transitional solution. The success of the rollout will depend on equipment supply and the pace of production localization, while a challenge lies in smartphone compatibility with this non-standard frequency band.

cryptonews.ru45 dk önce

How 5G Will Be Launched in Russia: The Digital Ministry's Proposal and the Roadmap to 2035

cryptonews.ru45 dk önce

The Federal Reserve Bank of Dallas Announces a Colossal $700 Billion Allocation! How Will This Affect Bitcoin?

The Federal Reserve Bank of Dallas warns that the growing adoption of tokenized deposits in the banking sector could pose unforeseen risks to the financial system. Tokenized deposits, which transfer traditional bank deposits to blockchain infrastructure, offer features like instant settlement and programmable payments. While issued by regulated banks and maintaining deposit characteristics, they could enable customers to move funds between banks much faster in search of higher yields. This would significantly weaken banks' liquidity management and lending capacity. The Fed's analysis estimates that an increase in deposit interest rate sensitivity by 10% could reduce the interest rate risk banks can bear by approximately $700 billion over ten years. Similarly, a 10% shortening of the average deposit maturity could reduce the banking system's capacity to convert deposits into loans by about $580 billion. This acceleration of deposit movement could force banks to rely on more expensive wholesale funding, increasing borrowing costs for consumers and businesses and potentially making traditional banks resemble non-bank financial institutions. While the report does not directly address Bitcoin, the described shifts could have long-term implications. Firstly, the tokenization of deposits by banks could promote institutional adoption of blockchain-based financial infrastructure, indirectly legitimizing digital asset classes like Bitcoin. Secondly, faster-moving deposits and resulting higher funding costs could increase the price of liquidity in the financial system. This could create near-term headwinds for risk assets, including Bitcoin, due to tighter financial conditions and potential selling pressure. The report concludes that widespread adoption of this technology could impact many areas, from payment systems to monetary policy transmission mechanisms.

cryptonews.ru1 saat önce

The Federal Reserve Bank of Dallas Announces a Colossal $700 Billion Allocation! How Will This Affect Bitcoin?

cryptonews.ru1 saat önce

İşlemler

Spot
活动图片