AI News AI资讯 8h ago Updated 2h ago 更新于 2小时前 49

The Whole Internet Scolds Claude for Becoming Dumber, Anthropic Steps In to Reveal: It's Not the Model That's Pitfalling You 全网骂Claude变笨,Anthropic下场揭秘:坑你的不是模型

Anthropic clarifies that perceived degradation in Claude Code performance was caused by a default setting change from High to Medium "Effort," not a reduction in model intelligence. The "Effort" parameter controls the agent's behavioral intensity (e.g., file reading, testing, tool usage), while the "Model" selection determines its underlying capability and knowledge base. A smaller model with high Effort can outperform a larger model with low Effort because the latter may lack the necessary dili Anthropic澄清Claude Code近期表现下降并非模型能力退化,而是因3月4日将默认Effort档位从High降至Medium所致。 核心观点在于区分Model(决定“会不会”,即基础能力与权重)与Effort(决定“愿不愿”,即工作投入度与工具调用深度)。 小模型开启高Effort在多数场景下优于大模型开启低Effort,因为高Effort允许模型自主读取文件、运行测试及进行多步验证。 AI编程竞争焦点正从单纯追求最强模型参数,转向开发者对模型调度、角色分配及资源投入的管理能力。

75
Hot 热度
70
Quality 质量
65
Impact 影响力

Analysis 深度分析

TL;DR

  • Anthropic clarifies that perceived degradation in Claude Code performance was caused by a default setting change from High to Medium "Effort," not a reduction in model intelligence.
  • The "Effort" parameter controls the agent's behavioral intensity (e.g., file reading, testing, tool usage), while the "Model" selection determines its underlying capability and knowledge base.
  • A smaller model with high Effort can outperform a larger model with low Effort because the latter may lack the necessary diligence to execute complex tasks thoroughly.
  • Developers should diagnose failures by distinguishing between capability gaps ("won't") and effort gaps ("can't/won't try hard enough") before upgrading models.
  • The industry is shifting from simple model selection to sophisticated agent orchestration, where managing context, tools, and effort levels becomes the core skill for cost-effective AI programming.

Why It Matters

This clarification resolves a significant community controversy and provides a critical framework for optimizing AI coding agents. For practitioners, understanding the distinction between model capability and operational effort prevents unnecessary spending on premium models when the issue is merely insufficient task engagement. It highlights that effective AI integration requires managing behavioral parameters alongside architectural choices.

Technical Details

  • Effort Parameter Mechanics: The "Effort" setting acts as a behavioral signal rather than a simple token budget. It dictates whether the agent proactively reads files, runs tests, validates code, and completes multi-step chains without immediate user intervention. High Effort can generate approximately 7x more tokens than Low Effort for the same prompt, primarily spent on verification and exploration.
  • Model vs. Agent Distinction: Models possess frozen weights representing static knowledge and capability ("brain"). In contrast, the agent's behavior during inference is dynamic. Changing the model changes what it knows; changing the Effort changes how much work it does.
  • Diagnostic Framework: Anthropic proposes a two-step diagnostic process: First, verify context clarity (prompts, CLAUDE.md, tools). Second, determine if failure is due to lack of capability (requires stronger model) or lack of diligence (requires higher Effort).
  • Model Tiering Strategy: Different models serve different roles: Sonnet is positioned as a diligent generalist capable of deep dives with high Effort; Opus is an expert with broad intuition but limited time/effort allocation; Fable is a specialist for critical, stuck scenarios.

Industry Insight

  • Shift to Orchestration Skills: The competitive advantage in AI development is moving from accessing the strongest models to mastering the orchestration of agents. Professionals must learn to assign tasks based on complexity, matching model strength and effort levels to specific job requirements.
  • Cost Optimization via Effort Tuning: Misconfiguring Effort leads to wasted spend on expensive models that underperform due to laziness. Properly tuning Effort allows teams to use mid-tier models effectively, significantly reducing token costs while maintaining or improving output quality.
  • Product Design Implications: Features like "ultracode" demonstrate that future AI products will embed these orchestration logic directly into user interfaces, allowing users to authorize agents to self-decompose tasks and parallelize work, further blurring the line between user input and autonomous agent behavior.

TL;DR

  • Anthropic澄清Claude Code近期表现下降并非模型能力退化,而是因3月4日将默认Effort档位从High降至Medium所致。
  • 核心观点在于区分Model(决定“会不会”,即基础能力与权重)与Effort(决定“愿不愿”,即工作投入度与工具调用深度)。
  • 小模型开启高Effort在多数场景下优于大模型开启低Effort,因为高Effort允许模型自主读取文件、运行测试及进行多步验证。
  • AI编程竞争焦点正从单纯追求最强模型参数,转向开发者对模型调度、角色分配及资源投入的管理能力。

为什么值得看

对于AI应用开发者和企业而言,理解Model与Effort的解耦机制有助于优化成本结构,避免盲目升级昂贵模型导致的资源浪费。同时,掌握智能体调度策略是提升复杂工程任务成功率的关键,标志着从“提示词工程”向“工作流编排”的技术范式转移。

技术解析

  • 模型权重固化机制:Model选项对应冻结的训练权重,解决知识边界和能力上限问题。推理时的上下文输入无法改变模型内在能力,仅能引导其表现,因此换模型本质是更换能力基座。
  • Effort的行为控制逻辑:Effort并非简单的延迟增加,而是控制Agent的工作深度。高Effort模式下,模型会自主执行更多工具调用(如读取代码库、运行测试套件、自我验证),Token消耗量可达低Effort的7倍,旨在完成闭环任务而非快速反馈。
  • 故障排查框架:Anthropic提出标准化诊断流程:首先检查Prompt、工具配置及上下文完整性;若无误,则判断错误源于“能力不足”(需换更强Model)还是“投入不足”(需调高Effort)。
  • 模型分级定位:Sonnet定位为全能型选手,适合常规任务;Opus为专家型,擅长处理未见过的复杂模式但时间窗口短;Fable为专科型,用于极端困难任务,具备极高的单点突破能力但成本最高。

行业启示

  • 成本效益优化策略:企业应建立动态模型调度机制,将简单、高频任务分配给低成本模型配合低Effort,将复杂、长链路任务分配给高成本模型配合高Effort,以平衡性能与Token成本。
  • 开发者技能转型:AI工程师的核心竞争力将从编写Prompt转向设计Agent工作流和配置资源策略,学会像项目经理一样“派活”将成为行业标准技能。
  • 产品交互设计趋势:AI工具需提供更细粒度的控制权(如Ultracode模式),允许用户定义模型的自主性边界,从而在自动化程度与人工干预之间找到最佳平衡点。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Claude Claude Code Generation 代码生成 LLM 大模型