Released on September 1 2026, claude‑fable‑5‑1 serves as the direct successor to Claude Fable 5. It retains the base model architecture, delivering major improvements for agentic coding, multi‑step research, visual parsing and computer‑use workflows. Cache‑read cost drops to 0.025 × of the original baseline price. While most existing code only requires updating the model ID string, three breaking‑changes can trigger silent degradation or direct 400 errors if left unhandled. Claude Mythos 5.1 shares identical capabilities and remains invite‑only for Project Glassworking participants. Its knowledge cutoff is updated to June 2026.
High‑level Overview: What Is Fable 5.1 and How It Differs From Fable 5
Fable 5.1 is a post‑training refined upgrade built atop Fable 5 weights. Core model architecture stays unchanged. Performance gains concentrate on multi‑file agentic coding, long‑chain research tasks and document comprehension. Input‑output base token pricing remains identical to Fable 5; cache‑read pricing is the most impactful adjustment.
| Model | API Identifier | Knowledge Cut‑off | Cache‑read Price |
|---|---|---|---|
| Claude Fable 5 | claude‑fable‑5 | Before Jun‑2026 | $1.00 / M tokens |
| Claude Fable 5.1 | claude‑fable‑5‑1 | Jun‑2026 | $0.25 / M tokens |
Real‑world workload metrics show measurable cost reduction. In typical development workloads, indexed usage cost drops by 25‑75 %. For highly‑agentic heavy‑tool‑call workloads, total indexed cost can fall by around 45 %. Cache‑read tokens dominate expenses for long‑context agent loops.
Three Critical Breaking‑Changes
Breaking‑Change 1: Forced tool‑choice modes are no longer supported
Fable 5.1 rejects requests with tool_choice set to {"type":"any"} or {"type":"tool","name":"xxx"}. These payloads return HTTP 400 directly.
The root cause lies in permanently‑enabled thinking blocks. Hard‑forced tool invocation interrupts native reasoning flow. Model reasoning content gets crammed into tool‑call parameters rather than dedicated thinking blocks, which severely degrades output quality.
Migration sample code
Breaking‑Change 2: Thinking‑blocks are one‑way compatible
Thinking blocks generated by Fable 5.1 can only be parsed correctly by Fable 5.1. Older models including Fable 5 and Opus 5 cannot interpret these blocks. In reverse direction, Fable 5.1 can consume thinking‑blocks produced by earlier model generations.
This constraint creates risks for these common engineering patterns: ‑ Gateway routing / fallback logic switching between Fable 5.1 and legacy models ‑ Multi‑agent frameworks passing full conversation history across different model versions ‑ Server‑side fallback workflows: target fallback model silently discards unreadable thinking‑blocks without error or billing penalty.
Developers can enable explicit mismatch notifications by adding beta headers within API requests.
Check input_transformations inside response metadata to capture block‑drop events for observability.
Breaking‑Change 3: Editing history messages invalidates existing thinking‑blocks
Modifying any historical message that sits before existing thinking‑blocks will invalidate those thinking‑blocks. Requests may be rejected or blocks silently discarded. This behavior did not exist under Fable 5.
Common trigger scenarios: ‑ Injecting runtime status snapshots mid‑conversation ‑ Dynamically updating tool lists in‑flight ‑ Rewriting system‑prompt content during ongoing dialogues
Bad practice example
Recommended safe handling: treat conversation history as append‑only. Inject runtime context with mid‑conversation system‑messages or turn‑scoped system‑message primitives introduced in Fable 5.1.
Five Major New Features
Feature 1: Mid‑conversation effort‑level adjustment (Beta)
Developers can toggle effort (low / high) within a single ongoing dialogue, without invalidating prompt cache. This is highly valuable for long‑running agent sessions. Use high for complex reasoning steps and low for trivial tasks to optimize cost.
Feature 2: Turn‑scoped system‑messages (Beta)
Traditional agent workflows often insert a system‑message then manually delete it on the next round; manual deletion invalidates thinking‑blocks.
Fable 5.1 introduces the clear_at field. This system‑message automatically expires upon arrival of the next user message. No manual deletion needed. Conversation history, thinking‑blocks and prompt cache remain intact.
Enable with beta header: mid‑conversation‑system‑clear‑at‑2026‑08‑21.
Feature 3: Tool‑call progress‑update display (Beta)
Previously thinking.display defaulted to omitted, hiding reasoning entirely during multi‑tool agent loops. The new display":"updates" option keeps raw reasoning hidden, but emits high‑level progress‑update text wrapped inside thinking‑blocks, which can be surfaced for end‑users.
Application‑side code can iterate response content blocks and render these progress hints for agent‑UI interfaces.
Feature 4: 75 % reduction for cache‑read token pricing
Cache‑read cost drops to 25 % of Fable 5 levels. Base input‑output and cache‑write pricing stays unchanged. Long multi‑turn agent conversations benefit most: higher cache‑hit ratio equals larger real‑world savings.
| Pricing Item | Fable 5 | Fable 5.1 |
|---|---|---|
| Base Input | $10 / M tokens | $10 / M tokens |
| Base Output | $50 / M tokens | $50 / M tokens |
| 5m Cache‑write | $12.50 / M tokens | $12.50 / M tokens |
| 1h Cache‑write | $20 / M tokens | $20 / M tokens |
| Cache‑read | $1.00 / M tokens | $0.25 / M tokens |
Feature 5: Content Provenance metadata
Every generated text and image response embeds immutable provenance statistics. No extra tokens or invisible payloads are added to model output. No user‑identifiable data is injected. Generated files obtained via Files API carry C2PA‑standard content‑credential metadata.
Six High‑improvement Capability Directions
Compared to Fable 5, Fable 5.1 delivers the most noticeable gains under high‑effort mode across these six domains:
- Long‑session agentic coding: multi‑file refactoring, large‑scale project migration, multi‑hour continuous coding sessions.
- Document & table processing: full‑document generation, formula tables, slide deck authoring.
- Multi‑step research: chained inquiry, literature synthesis, multi‑source result consolidation.
- Visual understanding: multi‑chart PDF parsing, complex table image comprehension.
- Long‑context reasoning: precise detail retrieval within full‑1M‑token context windows.
- Computer‑use robustness: improved recovery after execution failures for browser‑agent workflows.
Multilingual performance remains on parity with Fable 5.
Seven Prompt‑adjustment points for migration
Behavior shifts may alter agent performance after upgrading, requiring prompt tuning:
- Parallel tool‑call patterns: Fable 5.1 tends to emit sequential tool‑calls instead of large parallel batches. Explicitly instruct parallel execution in system prompts when you need concurrent tool invocation.
- Progress‑update verbosity: under high‑effort mode intermediate user‑visible text becomes shorter. Enable
display":"updates"and add prompt instructions for periodic progress reporting. - Low‑effort retrieval behavior: low‑effort mode reduces spontaneous tool lookup. Switch effort level mid‑turn for steps requiring fresh external information.
- Text‑density changes: outputs become more compact. Add explicit formatting requirements in prompts for verbose descriptive content.
- Markdown formatting frequency: bold, heading and list markdown usage decreases. Specify output format requirements explicitly.
- Citation‑mark behavior: summary outputs may reproduce source text without quotation marks. Define quoting rules in prompts for work requiring strict citation discipline.
- Partial‑edit tendency: file editing prefers full‑file rewrites over partial patches. Explicitly demand partial‑only modification inside prompts for code‑edit scenarios.
Five‑step migration checklist
- Update model identifier from
claude‑fable‑5→claude‑fable‑5‑1. - Remove all hard‑
tool_choiceany/ named‑tool patterns; switch toautoplus strict‑schema tool definitions. - Audit conversation‑history logic: enforce append‑only semantics, eliminate in‑place message edits.
- Adopt turn‑scoped system‑messages for runtime status injection instead of modifying historical messages.
- Observe
input_transformationsmetadata for thinking‑block mismatch drop events for monitoring.
Enterprise‑grade Agent Infrastructure Advice
For enterprise multi‑model agent deployments, unified API gateway abstraction reduces SDK maintenance burden and simplifies model fallback & routing workflows. Teams running mixed‑model workloads can leverage 4sapi as a unified API gateway to abstract different provider endpoints, so application business logic stays unchanged while switching between international and domestic large‑model backends.
Frequently Asked Questions
What happens if I just swap model‑id without other changes? If you are not using forced‑tool‑choice and never edit historical conversation messages, migration can be seamless. The main visible changes are cheaper cache‑read pricing and thinking‑block one‑way‑compatibility constraints.
Difference between Mythos 5.1 and Fable 5.1? Raw model capability is identical. Mythos 5.1 is invite‑only for Project Glassworking; Fable 5.1 opens to all API customers.
Retirement timeline for Fable 5? Anthropic commits to maintain Fable 5 availability no earlier than September 01 2027.
What are thinking‑display mode options?
‑ omitted: default, reasoning hidden from end‑users.
‑ summary: condensed high‑level reasoning summary exposed.
‑ updates: beta progress‑oriented tool‑call status updates for agent UIs.
All benchmark and pricing data originates from Anthropic September‑2026 official release documents. Actual runtime behavior may adjust with backend model roll‑outs.
International access: https://4sapi.com Domestic access: https://4sapi.cn




