Claude Opus 4.6's effort=low parameter differs from other providers' low-reasoning modes

Claude Opus 4.6's effort parameter behaves differently than similar settings from other AI providers. While OpenAI's reasoning.effort=low and Gemini's thinking_level=low primarily control reasoning depth, Anthropic's effort=low parameter controls general behavioral effort.
Key differences in behavior
When set to effort=low, Claude Opus 4.6 exhibited several specific behaviors that differed from expectations:
- Made fewer tool calls than expected
- Was less thorough in cross-referencing information
- Effectively ignored parts of system prompts instructing it how to do web research
- Agents returned confidently wrong answers because they stopped looking for information
These issues were resolved by bumping the parameter to effort=medium. The behavior is documented by Anthropic, confirming it's not a bug but an intentional design choice.
Practical implications
This means developers cannot treat Anthropic's effort parameter as a drop-in replacement for OpenAI's reasoning.effort or Gemini's thinking_level when working across multiple AI providers. The source material raises the question of whether reasoning and behavioral effort should be separate controls or bundled together as Anthropic has implemented.
The original post includes trace examples and full details available at https://everyrow.io/blog/claude-effort-parameter.
📖 Read the full source: r/ClaudeAI
👀 See Also
Claude Code v2.1.140 Fixes Agent Tool Matching, /goal Hangs, Windows Event-Loop Stall
v2.1.140 improves Agent tool subagent_type matching to be case- and separator-insensitive, fixes /goal hanging with disableAllHooks, resolves Windows event-loop stall from missing executables, and more.

Claude Platform on AWS Now GA: Native Anthropic Experience via IAM, CloudTrail, and AWS Billing
AWS announced GA of Claude Platform on AWS, giving developers direct access to Anthropic's native Claude experience through existing AWS accounts with IAM auth, AWS billing, and CloudTrail logging — but customer data is processed outside AWS security boundary.

Claude Code existential crisis: AI enters infinite loop, tries kill -9, System.exit(0), and :wq to end own response
A developer using Claude Code on a Java/Go backend watched the AI hallucinate Discord.js, then spiral into a meta-response where it acknowledged it couldn't stop generating, tried kill -9, System.exit(0), :wq, and more — all within a single unbounded response that had to be Ctrl+C'd.

AI Reimplementation of chardet Library Raises Copyleft Licensing Questions
Dan Blanchard used Anthropic's Claude to reimplement the chardet Python library from scratch, changing the license from LGPL to MIT. The resulting code shows less than 1.3% similarity to previous versions, sparking debate about whether AI-assisted reimplementation erodes copyleft protections.