Back to blog
News·8 min read·1465 words

Anthropic Launches Claude Fable 5.1 and Mythos 5.1 With 75% Cheaper Cache Reads

Anthropic's new flagship model keeps the $10/$50 list price but slashes cache reads 75% to $0.25 per million tokens — a direct play for the agentic AI workload market. Here's what changed and why it matters for your bill.

Anthropic Launches Claude Fable 5.1 and Mythos 5.1 With 75% Cheaper Cache Reads — illustration

Anthropic just shipped a quiet update with loud consequences. On September 1, 2026, the company released Claude Fable 5.1 — its most capable generally available model — alongside Claude Mythos 5.1, a variant with relaxed safeguards for vetted organizations. The headline number isn't a benchmark score. It's $0.25 — the new cache-read price per million tokens, down 75% from $1.00 on Fable 5.

If you run AI agents, this change matters more than any benchmark jump. Here's everything that changed, what it breaks, and what it means for your infrastructure bill.

What Actually Launched

Anthropic released two doors into the same model:

  • Claude Fable 5.1 (claude-fable-5-1) — generally available on day one across the Claude API, Amazon Web Services, Google Cloud, and Microsoft Azure
  • Claude Mythos 5.1 (claude-mythos-5-1) — the same underlying model with retuned cybersecurity and life-science safeguards, restricted to vetted US organizations through Anthropic's trusted access programs

This is deliberately not two training runs — it's one model with two safeguard levels. Fable 5.1 keeps the full safety stack tuned for general availability; Mythos 5.1 trades some of those guardrails for capability on sensitive domains, which is exactly why it stays behind an organizational vetting process rather than sitting on a public endpoint.

The two-door approach answers a tension that has defined the Fable line since June: enterprises in security research, bioinformatics, and cybersecurity legitimately need a model that engages deeply with dual-use subject matter, while a public API needs conservative defaults. Rather than shipping a separate "unsafe" model, Anthropic productized the difference as an access tier.

The Pricing Change That Actually Matters

List prices didn't move: $10 per million input tokens, $50 per million output tokens. But the cache-read price dropped from $1.00 to $0.25 per million tokens — a 75% cut on the line item that dominates agentic workloads.

Why does this matter so much? Because modern AI applications are cache-heavy by design. When an agent works through a long task — debugging a codebase, filling out a multi-step form, triaging support tickets — it replays the same large prompt prefix on every single turn. That prefix includes the system prompt, the conversation history, tool definitions, and retrieved documents. Prompt caching means you pay a reduced rate for those repeated tokens instead of full input price, and how big that discount is determines whether long-running agents are economically viable at all.

Run the math on a realistic agent loop. Suppose a coding agent holds a 200K-token context and makes 50 turns on a task:

  • Without caching: 50 × 200K = 10M input tokens at $10/M = $100 per task
  • With Fable 5 caching at $1.00/M: roughly $10 in cache-read costs alone
  • With Fable 5.1 caching at $0.25/M: roughly $2.50

That's a 97% reduction versus uncached, and the cached delta alone is what Anthropic is banking on. Their own estimates across customer workloads:

  • Typical workloads: roughly 25% cheaper than Fable 5
  • Highly agentic workloads: up to 45% cheaper

For a coding agent burning hundreds of thousands of cached tokens per task, that's not a rounding error — it's the difference between a profitable feature and an unaffordable one.

What Else Improved

  • 1M token context window with 128K max output, and a June 2026 knowledge cutoff — enough to hold entire mid-sized codebases or hundreds of pages of contracts in working memory
  • Better coding performance — Terminal-Bench-Science scores more than doubled versus Fable 5, suggesting the gains concentrate in long-horizon technical work rather than chat
  • Fewer false-positive safeguard refusals — the Fable 5 launch drew loud complaints that benign work (security research, medical writing, fiction) was getting blocked; 5.1 retunes the classifiers to cut those interventions
  • Retention flexibility — addressing the unpopular mandatory 30-day data retention policy from the original Fable launch, a sticking point for regulated industries

The Developer Caveats: Three Breaking Changes

Early adopters report three breaking API changes that bit agent builders on launch day. If you're migrating from Fable 5, audit your integration before flipping the model ID:

  1. Model ID and aliasing changes — hardcoded claude-fable-5 references need updating, and alias behavior for dated snapshots shifted.
  2. Cache-control header behavior — the way cache breakpoints are declared changed, which silently invalidates cached prefixes if you copy old code. An invalid cache control doesn't error; it just quietly bills at full input price.
  3. Tool-use response formatting — structured tool-call output had adjustments that can desync strict parsers.

The silent-failure mode of #2 is the dangerous one: your integration works, your tests pass, and your bill quietly quadruples. Check the Qubax API docs for OpenAI-compatible access patterns that normalize provider-specific quirks like these behind one interface.

The Bigger Picture: The Context-Pricing War

This launch is really a shot in an escalating war over context economics. As agents replaced chatbots as the dominant workload, frontier labs realized the sticker price per token matters less than the effective price of a long-horizon task. Anthropic's move lands against aggressive pricing from open-weight and West-coast competitors alike:

ModelRetail input ($/M)Retail output ($/M)
Claude Fable 5.110.0050.00
GPT-5.6 Sol (OpenAI)1.005.00
GLM 5.3 (Zhipu)1.153.50
DeepSeek V4 Pro0.871.20

On sticker price alone, Fable 5.1 looks uncompetitive — ten times the input cost of GPT-5.6 Sol. But the 75% cache-read cut changes the calculus for exactly the workloads where Fable wins on quality: long agentic sessions where cached tokens dominate. Anthropic is pricing for the workload mix it expects, not the one it had in 2024.

There's also a financial subtext. The cut lands weeks before Anthropic's reported IPO, and you don't slash your highest-margin revenue line by 75% unless you're betting hard on volume growth — or signaling to public-market investors that your unit economics can absorb aggressive pricing as a moat.

What It Means for Your Stack

If you're building with AI today, three takeaways:

  1. Audit your cache hit rate. If less than 70% of your input tokens are cache hits, you're leaving money on the table regardless of provider — fix prompt stability (timestamps, random IDs, and re-sorted tool definitions all bust caches) before you shop for a cheaper model. Platforms like Qubax make it easy to A/B the same workload across models and compare real spend.
  2. Re-benchmark your agents on Fable 5.1. Doubled Terminal-Bench-Science scores plus cheaper cache reads may flip your model choice economics, especially for coding and long-document work.
  3. Watch the Mythos split. One model, two safeguard levels is a product category in the making. Expect every major lab to offer "safety tiers" within a year, and expect procurement conversations to change accordingly.

The bottom line: Fable 5.1 isn't exciting because it's smarter. It's exciting because it makes the smart option dramatically cheaper for the workloads that actually run in production — and because it forces every competitor to answer with context-economics moves of their own.

Want to compare Fable 5.1 against GPT-5.6 Sol, GLM 5.3, and DeepSeek V4 Pro on real, side-by-side pricing? Browse every model on [Qubax →](https://qubax.ai/models)

FAQ

What is Claude Fable 5.1?

Claude Fable 5.1 is Anthropic's most capable generally available model, released September 1, 2026. It features a 1M token context window, 128K max output, significantly improved coding benchmarks, and a 75% cache-read price cut versus Fable 5.

How much does Claude Fable 5.1 cost?

List pricing is $10 per million input tokens and $50 per million output tokens — unchanged from Fable 5. Cache reads cost $0.25 per million tokens, down 75% from $1.00. Anthropic estimates typical workloads cost about 25% less overall, and highly agentic workloads up to 45% less.

What is Claude Mythos 5.1 and how is it different?

Mythos 5.1 is the same underlying model as Fable 5.1 but with fewer cybersecurity and life-science safeguards. It's restricted to vetted US organizations through Anthropic's trusted access programs and is not generally available.

Is Fable 5.1 available on AWS, Azure, and Google Cloud?

Yes. Fable 5.1 is generally available on the Claude API, Amazon Web Services, Google Cloud, and Microsoft Azure on launch day.

Will the cache-read price cut apply to older Claude models?

No — the $0.25/M cache-read rate is specific to Fable 5.1. Fable 5 retains its previous pricing, which is one more reason to plan a migration if the breaking API changes don't block you.

Can I try Claude Fable 5.1 alongside other models?

Yes — Qubax offers Claude Fable 5.1 alongside hundreds of other models with unified API access and transparent pricing. Compare it against GPT-5.6, GLM 5.3, and DeepSeek V4 at qubax.ai/models.

🤖

Try Claude on Qubax

Anthropic models on Qubax. Up to 74% off.

View pricing

Article tags

#Anthropic#Claude#AI news#model pricing#prompt caching
Share:Post on XTelegramLinkedInYHacker NewsReddit
Qubax AI

Qubax AI

AI Models at up to 99% off · Pay with crypto

Reading about Claude? Access it — plus 340+ other models — through one API. Anthropic models on Qubax. Up to 74% off.

Related articles