Claude Fable 5.1 Released: SWE-bench 87.7%, Adaptive Thinking & Full Benchmarks
Anthropic released Claude Fable 5.1 on September 2, 2026. Here is the full breakdown of benchmarks (SWE-bench, FrontierMath, HLE), adaptive thinking token budgets, latency drops, and how it compares to Qwen 3.8 Max, GLM 5.3, and DeepSeek V4.

On September 2, 2026, Anthropic released Claude Fable 5.1 (claude-fable-5-1-20260902). Coming just weeks after the Opus 5 release and amidst a wave of competitive launches (Qwen 3.8 Max, GLM 5.3, Kimi K3, and DeepSeek V4), Fable 5.1 establishes a new state-of-the-art across agentic coding and complex mathematical reasoning.
Here is the comprehensive technical breakdown of what changed, what the benchmarks show, and how you should configure it in production.
1. Key Benchmark Results at a Glance
Anthropic's architectural focus for 5.1 was not merely raw knowledge capacity, but reasoning precision and token efficiency.
| Benchmark Suite | Claude Fable 5.1 | Claude Fable 5.0 | Delta | Focus Area |
|---|---|---|---|---|
| SWE-bench Verified | 87.7% | 80.3% | +7.4% | Real-world GitHub bug resolution |
| FrontierMath | 38.2% | 29.3% | +8.9% | Expert research-level mathematics |
| Humanity's Last Exam (HLE) | 61.4% | 53.0% | +8.4% | Multi-disciplinary complex logic |
| OSWorld | 89.6% | 85.0% | +4.6% | GUI and operating system agent control |
| GDPval-AA | 2,048 | 1,932 | +116 pts | Autonomous agent reliability index |
| Time to First Token (TTFT) | -28% | Baseline | -28% | Interactive latency in Claude Code/Cursor |
| Safeguard Fallback Rate | ~2.1% | ~7.8% | -73% | Reduction in false Opus 4.8 fallbacks |
2. Adaptive Thinking: Fine-Grained Token Budgeting
In previous releases, extended thinking was governed by discrete effort levels (low, medium, high, max). While powerful, this occasionally led to "over-thinking" on moderate coding tasks where the model spent 8,000 output tokens verifying a trivial regex.
Fable 5.1 introduces Adaptive Thinking Token Budgets. You can now specify an exact upper bound:
{
"model": "claude-fable-5-1-20260902",
"max_tokens": 16384,
"thinking": {
"type": "enabled",
"budget_tokens": 4096
},
"messages": [...]
}
This ensures the model allocates sufficient cognitive depth to verify subtle architectural edge cases without ballooning your monthly invoice.
3. The 65% Drop in False Safeguard Refusals
A persistent point of friction in Fable 5 was its safety classifier: benign requests containing strings like reverse shell, sql injection prevention audit, or complex regex obfuscation would frequently trigger an automatic fallback to Opus 4.8.
In Fable 5.1, Anthropic retrained the input alignment classifier on technical corpus data. The unintended fallback rate dropped from ~7.8% down to ~2.1%, preserving model fidelity for cybersecurity professionals and compiler engineers.
4. Competitive Landscape: Fable 5.1 vs Global & Chinese Models
The AI ecosystem in September 2026 is hyper-competitive. Here is where Fable 5.1 fits against the latest wave:
- vs DeepSeek V4 Pro & Flash: DeepSeek offers unmatched economics ($0.435/$0.87 for Pro, $0.14/$0.28 for Flash) and open weights. For high-volume batch categorization, DeepSeek is unbeatable. For autonomous multi-file terminal workflows, Fable 5.1's 87.7% SWE-bench score delivers significantly fewer human interventions.
- vs Qwen 3.8 Max ($2/$6): Alibaba's Qwen 3.8 Max closes the gap in pure coding benchmarks, but Fable 5.1 leads in complex tool chaining and deterministic instruction following.
- vs GLM 5.3 ($1.20/$3.60): GLM 5.3 expanded its context to 2M tokens. However, Fable 5.1's 1M window features stronger needle-in-a-haystack retrieval accuracy across 100K+ lines of code.
- vs Claude Opus 5 ($5/$25): Opus 5 remains the high-throughput cost-leader for general text generation and standard Claude Max workloads. Fable 5.1 remains the premium choice for mission-critical software engineering.
5. Migration Checklist
Migrating to Claude Fable 5.1 takes less than five minutes:
- Update API Model ID: Replace
claude-fable-5-20260609withclaude-fable-5-1-20260902. - Review Thinking Configurations: If you used
effort: "high", experiment withbudget_tokens: 4096to benchmark potential cost savings. - Verify Prompt Caching: Existing prompt caching prefixes (
cache_control: { type: "ephemeral" }) continue to bill at $1.00 / MTok read with no changes required.
To estimate your team's monthly budget on Fable 5.1, head over to our Interactive Cost Calculator or check our Head-to-Head Comparison Matrix.