What is Claude Fable 5?
On June 9, 2026, Anthropic announced Claude Fable 5 and Claude Mythos 5, a major step in its model lineup. Claude Fable 5 is described as a Mythos-class model made safe for general use: the most capable model Anthropic has ever released broadly, built for work that used to require hours, days, or weeks of human effort.
Fable 5 is not a minor upgrade. Anthropic positions it as state-of-the-art across software engineering, knowledge work, vision, scientific research, and long-running autonomous tasks. The longer and more complex the job, the wider its lead over previous Claude models.
A restricted sibling, Claude Mythos 5, shares the same base model but with fewer safeguards, reserved for verified partners (Project Glasswing, cyber defenders, select researchers). Fable 5 is the public-facing version most teams and developers will actually use.
What Fable 5 is built for
Long-horizon coding and agentic work
Fable 5 excels at end-to-end engineering rather than single-shot answers. Early reports include:
A codebase-wide migration on a 50-million-line Ruby project completed in a day, work Anthropic estimates would have taken a team over two months manually.
Strong scores on SWE-Bench Pro and frontier coding benchmarks (around 80% in independent coverage).
Better token efficiency than prior Claude generations on difficult production-quality coding tasks.
For developers running agents, IDEs, or automation pipelines, this means fewer hand-offs, longer autonomous runs, and better handling of ambiguous, multi-step problems.
Knowledge work at scale
On analytical and document-heavy tasks (finance, legal review, spreadsheets, research synthesis), Fable 5 is tuned for senior-level reasoning: picking directions, self-correcting, and sustaining focus across very large inputs.
Vision and multimodal input
Fable 5 supports text, image, and file (document) inputs with text output, plus reasoning. It is Anthropic's strongest vision model to date: extracting data from figures, interpreting charts, and even rebuilding applications from screenshots with less scaffolding than before.
1M-token context window
With a 1 million token context and up to 128K output tokens, Fable 5 can hold entire codebases, long document sets, or extended agent sessions in a single thread, critical for migration projects, due diligence, and multi-day agent workflows.
Safeguards: power with guardrails
Releasing this much capability comes with real risk. Anthropic ships Fable 5 with safety classifiers that monitor requests in sensitive domains:
DomainBehavior when triggeredCybersecurity (offensive)Response handled by Claude Opus 4.8 instead of Fable 5Biology & chemistrySame fallback to Opus 4.8 (conservative tuning at launch)Model distillation attemptsFallback to Opus 4.8
Users are informed when a fallback occurs. Anthropic reports that more than 95% of sessions never trigger it, but the trade-off is real: some legitimate security-audit or hardening requests may also be downgraded, a frustration noted by several security practitioners in the days after launch (BlogNT, Next).
Data retention: Mythos-class models (including Fable 5) now use a 30-day retention policy for safety monitoring: prompts and outputs are not used for training, but are kept temporarily. This has already caused friction for enterprises that relied on Zero Data Retention (ZDR) on API routes; Microsoft reportedly blocked internal employee access while its legal team reviews the change.
For most indie developers, startups, and product teams, this is a reasonable balance. For regulated or highly confidential workloads, review Anthropic's retention policy before routing sensitive data through Fable 5.
Pricing snapshot
Official Anthropic API pricing for Fable 5:
Per 1M tokensInput$10Output$50Cached input$1
This is roughly 2× the price of Claude Opus 4.8, reflecting its frontier positioning. Output is priced at 5× input, typical for reasoning-heavy models where generated tokens dominate cost.
Claude Fable 5 on RodiumAI
RodiumAI lists Claude Fable 5 in the catalog as anthropic/claude-fable-5.
On the model page you will find:
RODI pricing (input, output, cached) with USD reference rates
Capabilities: streaming, tool calling, vision, JSON mode, reasoning
Context: 1M tokens · Max output: 128K
Upstream: Anthropic (direct)
Why use Fable 5 through RodiumAI?
One API key for Fable 5 alongside GPT, Gemini, DeepSeek, Mistral, and the rest of the catalog.
RODI billing: recharge via Mobile Money (Orange, MTN, Wave…) or bank transfer, without juggling multiple provider accounts.
OpenAI-compatible API at
https://api.rodiumai.io/v1: drop in your existing SDK or agent stack.Usage visibility in the RodiumAI dashboard: per-request cost, model breakdown, API key scoping.
Quick API example
from openai import OpenAI
client = OpenAI(
base_url="https://api.rodiumai.io/v1",
api_key="rd_sk_prod_…",
)
response = client.chat.completions.create(
model="anthropic/claude-fable-5",
messages=[
{
"role": "user",
"content": "Review this migration plan and list risks before we refactor the payment module.",
}
],
max_tokens=4096,
)
print(response.choices[0].message.content)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.rodiumai.io/v1",
apiKey: process.env.RODIUM_API_KEY,
});
const res = await client.chat.completions.create({
model: "anthropic/claude-fable-5",
messages: [
{
role: "user",
content: "Draft a step-by-step plan to audit this codebase for security issues.",
},
],
});
console.log(res.choices[0].message.content);
Tip: For long agent runs, set
max_tokensgenerously and keep your system prompt stable. Cached input pricing applies when context repeats across turns.
When to choose Fable 5 vs other models on RodiumAI
Use caseSuggested directionLong codebase migration, multi-file refactorFable 5Everyday chat, fast iteration, lower costClaude Sonnet 4.6, GPT-5 mini, Gemini FlashMaximum reasoning on a budgetClaude Opus 4.8Deep offensive security researchFable may fallback; evaluate Opus 4.8 or dedicated security toolingHighly confidential data + strict zero retentionReview retention policy; may prefer models/upstreams with ZDR
Fable 5 is a premium frontier model. Use it where autonomy and depth justify the cost, not for every /v1/chat/completions call.
The bigger picture
Claude Fable 5 sits at the intersection of three industry trends in mid-2026:
Agentic AI: models that work for hours, not seconds.
Safety layering: public access to near-Mythos power with classifiers and fallbacks.
Platform consolidation: one API surface (RodiumAI, Claude API, Bedrock, Foundry…) to reach the same model slug.
For builders in Africa and beyond, RodiumAI lowers the friction: same frontier model, local payment rails, unified billing.
Explore the full spec and live pricing on the Claude Fable 5 model page, create an API key in your dashboard, and start with a focused pilot on one long-horizon workflow before rolling Fable 5 into production agents.
