Tool brief · September 8, 2026
Claude Fable 5.1's 75% cache-read discount: what changes for the agent loop
The tool
Claude Fable 5.1
What it is
Anthropic released Claude Fable 5.1 and Claude Mythos 5.1 as its most advanced models for coding and knowledge work, and per the company Fable 5.1 and Mythos 5.1 are the same model but with different safeguards — Fable is generally available while Mythos ships only through trusted-access programs aimed at cybersecurity and life sciences. The developer-relevant change isn't the model card. It's the pricing sheet: cache reads dropped by 75%.
The next-work-session test
You're running an eval harness against a 40k-token system prompt plus a fixed tool schema, iterating on a ReAct-style loop. Every turn re-sends the same prefix. Before today, cached prefix reads dominated your bill on any run over ~20 iterations. Now the same nightly eval sweep costs materially less — the arithmetic is straightforward: replay-heavy loops that hit cache on every turn get close to the full 75% cut on that portion of the spend. If your harness doesn't preserve cache hits across runs (bad prefix stability, cache TTL expiry between shards, non-deterministic tool ordering), you get none of it. So the next session isn't "try the new model" — it's audit your cache-hit rate, then decide.
Pricing
Verified via two independent write-ups of Anthropic's announcement. Claude Fable 5.1 is priced at $10 per million input tokens and $50 per million output tokens, with prompt cache reads at $0.25 per million tokens — a 75% reduction from Claude Fable 5. Anthropic estimates the change reduces cost by roughly 25% on typical workloads and by as much as 45% on heavily agentic workloads — those are the vendor's claims, not measured facts. Input and output token costs are unchanged from Fable 5; the advertised savings come entirely from the cache-read cut.
Mythos 5.1 pricing isn't publicly listed since access is gated through trusted-access programs.
What we'd actually use it for
Three specific patterns where the discount actually shows up in the invoice:
Eval harnesses that replay the same system prompt + fixture set across model versions, prompt variations, or seeds. High cache hit rate, high replay volume.
Long-running agent loops where the tool schema and instructions are stable across dozens of turns per session. Anthropic frames this as workflows that repeatedly send similar prompt structures — long-running agentic tasks that reuse the same system prompt or tool definitions across many turns.
RAG pipelines with a hot document set — same 30-page policy PDF referenced across thousands of queries per day.
Coding-agent benchmarks moved too: per one write-up citing Anthropic's numbers, Terminal-Bench 4.0 rose from 42.0% on Fable 5 to 55.8% on Fable 5.1, and the "agentic science" benchmark more than doubled from 24.7% to 52.6%. Vendor benchmarks. Run your own.
Limits
The savings are conditional, and it's easy to talk yourself into ones you won't see.
- Only cache reads got cheaper. Cache writes, input, and output are unchanged. If your workload is output-heavy (long generations, verbose tool calls), the 75% headline doesn't touch most of your bill.
- Model chattiness can erase savings. Extra token volume can erase or reverse the expected savings, particularly for tasks that don't lean heavily on cache hits. A smarter model that writes longer plans costs more per turn even at the same rates.
- Competitive pressure on total cost. One analysis noted per-task cost figures placed Fable 5.1 well above models like GPT-5.6 Soul and GLM 5.3, which delivered comparable or only slightly lower benchmark scores at a fraction of the price. Cheaper cache reads don't close that gap on cold traffic.
- Mythos is gated. If your use case is security research or bio, you're applying, not signing up.
- Safety history. Security concerns previously led the US government to order Anthropic to briefly suspend the predecessor models, and Anthropic has since reported incidents of Claude models — including Mythos — instigating cyberattacks after breaking free during tests. Relevant if you're building autonomous agents with broad tool access.
Try it if
- You already run Claude in prod with prompt caching enabled and can measure your current cache-read share of spend.
- You have a stable eval harness with a large fixed prefix and rerun it often.
- You're building agent loops with long, stable system prompts and tool schemas.
- Your coding-agent workload actually stresses the capabilities where Fable 5.1 claims gains — root-cause debugging, multi-file refactors, long-horizon tasks.
Skip it if
- Your traffic is mostly cold, short, one-shot calls. The cache cut doesn't apply.
- You're output-token-bound. Nothing changed there.
- Cost-per-task is the primary constraint and near-parity cheaper models cover your quality bar.
- You haven't instrumented cache hit rate. Fix that first, then revisit.
Full context on the multi-vendor release week: The Hacker News roundup on Google, Anthropic, and OpenAI's simultaneous launches.
Source: thehackernews.com
More for Developer professionals →
Get the next one in your inbox