Anthropic released Claude Fable 5.1 on September 1, alongside Mythos 5.1, which is available only to vetted organizations. Token prices are unchanged and the context window is the same — yet the update is mostly about money: cache reads now cost a quarter of what they did, so per Anthropic a typical workload runs about 25% cheaper and a heavily agentic one up to about 45% cheaper. In exchange, three API changes break compatibility. We walk through what the switch buys you, what it costs, and what to test before you move.
What changed compared to Fable 5?
The release documentation puts the gains in six areas: long-running agentic coding sessions; document, spreadsheet, and slide work; multistep research and search; vision, meaning dense charts and tables nested in PDFs; work across the full 1M-token context window; and computer use — operating a browser and desktop applications with more reliable recovery from failed steps.
What the release does not promise: Anthropic announced no speed improvement, and the documentation still lists the model among the slower ones. Multilingual performance stays on par with Fable 5, so Hungarian-language output will not get better from this update alone. And Anthropic itself puts it plainly: for most workloads the cheaper Claude Opus 5 is the right starting point, and Fable 5.1 is for demanding reasoning and long-horizon agentic work.
Why is it cheaper if token prices are unchanged?
The price list did not move: $10 per million input tokens and $50 per million output tokens, with batch processing at $5 and $25. One line item changed: cache reads dropped from $1 to $0.25 per million tokens — on Fable 5.1 cache reads cost 0.025 times the base input price, versus 0.1 on every other Claude model.
That one line carries so much because a long-running agentic session re-reads its cached prefix at every step. Per Anthropic's announcement, a typical workload therefore costs around 25% less than on Fable 5, and for complex coding and highly agentic tasks the savings can reach around 45%. Where your number lands in that band depends on your workload profile: the larger the share of repeatedly re-read context, the closer you get to the top.
What do the benchmarks show?
Of the numbers Anthropic published, the most interesting one for a business reader is AutomationBench, which measures business workflows: Fable 5.1 scores 31.4% against Fable 5's 17.1% and Opus 5's 26.9%. On GDPval-AA v2, which measures knowledge work, the result is 1853 points against Fable 5's 1723; on the partial variant of OSWorld 2.0, which measures computer use, 77.9% against the previous 72.9%; on Terminal-Bench-Science 0.1, 52.6% against 24.7%.
The picture is not uniform: on the tool-assisted variant of Humanity's Last Exam the improvement is under one and a half percentage points (65.0% against 63.8%). The numbers come from Anthropic; no independent measurements exist on release day — and these benchmark versions are not comparable with the older variants cited for earlier model generations.
For a live Claude-based system, assessing, testing, and rolling out a model switch is an operations task — we carry it on a monthly plan too. Managed AI Operations
Three API changes to test before switching
Migration is, in the base case, a model-ID change (claude-fable-5 → claude-fable-5-1), but three changes are not backwards compatible, and all three touch calling code.
- No forced tool use. A tool_choice of "any" or "tool" returns a 400 error. If you used it to enforce a schema, strict tool use or structured outputs is the replacement.
- Thinking blocks are bound to the model. Fable 5.1 reads earlier models' thinking blocks, but not the other way around: if a router or fallback switches models mid-conversation, the API drops the block, and by default it does not report the drop.
- Editing earlier turns invalidates thinking blocks. If your system modifies anything that precedes a thinking block, the next request fails with a 400 (or the block is dropped, if you opt into that); for accounts created on or after August 31, 2026 the check is enforced. Treat the history as append-only.
Behavior also shifts without any code change: parallel tool calling is more variable — the model may issue one tool call per turn where Fable 5 batched several, which costs extra turns and tokens. Before switching, measure on your own eval set, not on the benchmark table.
Data handling, watermark, and compliance
Fable 5.1 runs with 30-day data retention and is not available under zero data retention (ZDR) without express authorization. On the same day, Anthropic announced the Enterprise Frontier Safeguards program, which combines the privacy of ZDR with misuse detection — data stays in cloud infrastructure controlled by the customer — rolling out in phases starting this fall; eligible customers receive ZDR on Fable 5 and 5.1 until then.
Text output carries Anthropic's statistical watermark on every platform; the watermark adds no tokens or hidden characters to the text and carries no information about the user or their organization. How that works, and what it means under the marking obligation of Article 50 of the EU AI Act, is covered in a separate article.
There is no EU-specific availability statement in the release. The model is available on the Claude API, Amazon Bedrock, Google Cloud, and Microsoft Foundry; the API defaults to global serving, and per the pricing documentation US-only processing carries a 1.1x price multiplier, with the regional endpoints on Bedrock and Google Cloud also carrying a premium.
Who should switch, and who should wait?
Switching pays off if you operate long-running agentic systems — that is where the cache price cut and the AutomationBench jump land together — if you run high-volume document and knowledge work, or if you build on computer use. The migration cost is low: a model-ID change, checking the three compatibility points, and re-running your eval set.
Waiting makes sense if your integration is built on forced tool use and the rewrite does not fit right now; if you want better Hungarian-language output (this update promises nothing there); or if the cheaper Opus 5 covers your tasks — Anthropic itself recommends it as the starting point. There is no forced move: Fable 5 remains available, and Anthropic has committed to retiring 5.1 no sooner than September 1, 2027.
The Fable–Mythos pairing — in the 5.1 generation the same model with different safeguards, Mythos 5.1 available only to vetted US organizations — and the road from the April Mythos announcement to the public Fable line are covered in our earlier piece. The core of the decision has not changed: pick the model for the task.

