Claude Sonnet 5 (Fennec) marks the shift from conversational AI to autonomous agency. By introducing Adaptive Thinking and the Effort Parameter, Anthropic has delivered a mid-tier model that matches flagship reasoning for multi-step tasks. For builders, this means agents that self-correct, run code, and finish tasks without human "baby-sitting."
- Release Date: June 30, 2026
- Model ID:
claude-sonnet-5 - Key Innovation: Adaptive Thinking & Effort Control (Low, Medium, High, Max)
- Context Window: 1 Million tokens (128k output ceiling)
- Introductory Price: $2/$10 (thru Aug 31); Standard: $3/$15 per 1M tokens
- Primary Advantage: 63.2% SWE-bench Pro score; 81.2% OSWorld computer use
What is Claude Sonnet 5?
Launched on June 30, 2026, Claude Sonnet 5 (codename Fennec) is the direct successor to Sonnet 4.6. While previous upgrades focused on "smarter answers," Sonnet 5 focuses on follow-through. It is designed specifically for "agentic" workloads—tasks where the AI isn't just a sounding board but a project manager that uses browsers, terminals, and code to reach a verified result.
The model occupies the "balanced" tier: fast enough for daily chat but smart enough to rival the flagship Claude Opus 4.8 on complex reasoning when set to high effort.
The 'Quiet' Innovation: Adaptive Thinking & Effort Control
The most significant change in Sonnet 5 isn't the benchmark scores; it's how you manage its brain.
1. Adaptive Thinking (Default)
In earlier versions, you had to manually set a "thinking budget." If the task was harder than you guessed, the model would fail. Sonnet 5 flips this. Adaptive Thinking is on by default, meaning the model decides for itself how much reasoning a task requires. It takes a "beat" to plan messy, multi-step jobs but stays lightning-fast for simple questions.
2. The Effort Parameter
This is the "dial" for your agents. Instead of manual token budgets, you now set the effort level:
- Low/Medium: Optimized for speed and simple data extraction.
- High (Default): The sweet spot for coding and research.
- Max/X-High: Forces deep reflection, matching the reasoning depth of flagship models like Claude Fable 5.
Why 'Agentic' is the Only Keyword That Matters
In the 2026 agentic era, we no longer measure AI by how well it writes a poem, but by how well it fixes a bug. Sonnet 5 is built for the "Agentic Finish":
- Self-Correction: It doesn't just write code; it writes a test to reproduce a bug, implements the fix, and runs the test to confirm it works—all in one pass.
- Computer Use: With an 81.2% score on OSWorld, it is the most capable model for navigating real apps, clicking buttons, and entering data like a human operator.
- Instruction Following: It is significantly less "sycophantic," meaning it won't just agree with your bad ideas. It pushes back with better architectural choices.
The Tokenizer Caveat: Why your bills might not drop 33%
Anthropic launched Sonnet 5 with an attractive introductory price of $2 per million input tokens. However, there is a hidden variable: the new tokenizer.
Sonnet 5 encodes text into roughly 30% more tokens than Sonnet 4.6. This means a request that used 1,000 tokens yesterday might use 1,300 today. While the per-token price is lower, the total cost per request remains roughly neutral compared to the previous version. To manage this at scale, check our Hermes Token Optimization playbook.
How to Upgrade: A Developer's 30-Second Checklist
Upgrading to Sonnet 5 is designed as a drop-in replacement, but there are three "breaking" changes to clean out of your code:
- Swap the Model ID: Change your model string to
claude-sonnet-5. - Remove Sampling Params: The model now returns a 400 error if you send
temperature,top_p, ortop_k. Let the model handle its own sampling. - Delete Manual Thinking Config: Sending
budget_tokenswill return an error. Use theeffortparameter instead.
What this means for you
The arrival of Sonnet 5 signals the end of "prompt engineering" as we knew it and the beginning of Effort Management. Instead of trying to trick the model into thinking harder with long prompts, you simply dial up the effort.
As we move toward centralized AI agent teams, Sonnet 5 is likely to become the standard engine for 90% of business workflows—balancing "Opus-level" smarts with "Sonnet-level" cost.
FAQ
Q: Is Claude Sonnet 5 better than Opus 4.8? A: On most agentic benchmarks like coding and computer use, it is very close (within 5-10%). However, Opus 4.8 still leads on the absolute ceiling of creative reasoning and extremely complex architecture tasks.
Q: Does it still have a 1 million token context window? A: Yes. Sonnet 5 supports a 1M token context window by default, allowing you to upload entire codebases or 500+ page documents for a single analysis.
Q: Can I turn off the 'Thinking' to save money?
A: Yes. While adaptive thinking is the default, you can pass thinking: {type: "disabled"} in the API to run the model in high-speed, low-latency mode for simple tasks.
Q: How does the new tokenizer affect my prompt caching? A: Prompt caching remains fully functional. Because you are using more tokens for the same text, the relative value of prompt caching actually increases—saving you more money on long-context reuse.
Discussion
0 comments