Announcements

Unlocking the Mythos: What Fable 5 and Mythos 5 Mean for Your Stack

June 12, 2026

For the past two years, Anthropic's Opus class was the frontier. Everything else was a tradeoff between cost and capability. On June 9, 2026, that changed.

Anthropic launched Claude Fable 5, the first model from an entirely new capability tier that the company had originally deemed too powerful for public release. After months of safety work under Project Glasswing, Anthropic gained enough confidence in its guardrails to make Fable 5 generally available, as reported by Fortune.

The arc runs from a deliberately restricted preview to a safeguarded public launch over roughly two months. Anthropic released Claude Mythos Preview in April 2026 through Project Glasswing, limiting access to a small group of cyber defenders and critical infrastructure providers because Mythos-class models had crossed a capability threshold, presenting significant risks. The model proved unusually capable at finding vulnerabilities across every major operating system and browser. Last week, access expanded to hundreds of organizations across 15 countries. Today, Fable 5 is live for everyone.

The Road to Fable: Three Steps from Opus 4.7

To appreciate how significant this launch is, it helps to understand the deliberate evolution that preceded it

1. Optimizing for Speed (Opus Fast)
The first major post-Opus pivot targeted near-zero latency for real-time applications. It worked, but early fast modes carried steep pricing. With Claude Opus 4.8 Fast, Anthropic found the right balance and brought fast-mode costs down to match Fable 5's current pricing.

2. Optimizing for Efficiency (Opus 4.8)
Opus 4.8 was a masterclass in model distillation. For the same complex reasoning tasks, it delivered a 20% cost reduction compared to Opus 4.7, with smarter adaptive effort, better recall, and more reliable state retention across long sessions. It proved that top-tier intelligence does not require an infinite budget.

3. Breaking the Mold (Fable 5)
If Opus 4.8 perfected the existing formula, Fable 5 breaks it entirely. It is not an iterative update. It is an agent. Give it a high-level objective and it will self-prompt, browse, write code, test its own outputs, and navigate an operating system until the goal is met.

What Is the Mythos Tier?

Mythos is Anthropic's new capability class sitting above Opus. Claude Fable 5 is "Anthropic's most capable widely released model, a Mythos-class model built for the most demanding reasoning and long-horizon agentic work." It features a 1M token context window with up to 128K output tokens per request, designed for ambitious, asynchronous tasks that previous models could not sustain.

Claude Fable 5 is the public-facing version: full Mythos-class intelligence with safety classifiers that route sensitive queries touching cybersecurity, biology/chemistry, or model distillation to Claude Opus 4.8. According to Anthropic, this fallback fires in fewer than 5% of sessions, meaning more than 95% of the time you are running on full Mythos-class capability, as detailed in Vellum's benchmark breakdown.

Claude Mythos 5 is the same underlying model with its cyber safeguards lifted, available exclusively to vetted Project Glasswing partners. It is not publicly available.

Fable 5 is Mythos for builders. Mythos 5 is Mythos for defenders.

The Benchmark Story

Claude Fable 5 launched at #1 on the Artificial Analysis Intelligence Index with a score of 64.9, approximately 5 points ahead of every other model on the index.

Benchmark

Fable 5

Opus 4.8

Artificial Analysis Intelligence Index

64.9 (#1)

SWE-Bench Pro (agentic coding)

80.3%

69.2%

OS-World Verified (computer use)

85%

FrontierCode Diamond

29.3%

13.4%

GDP.pdf vision (no tools)

29.8%

22.5%

Humanity's Last Exam

53%

~46%

Legal Agent Benchmark

13.3%

10.4%

The gap is largest on long-horizon, multi-step tasks. On FrontierCode Diamond, Fable 5 posts roughly 2x the score of Opus 4.8. On OS-World Verified for computer use, it hits 85%, remarkably close to Mythos Preview's 85.4%, confirming the two models share the same underlying weights.

The benchmarks match real-world behavior. Stripe's engineering team used Fable 5 to complete a codebase-wide migration across a 50-million-line Ruby codebase in a single day, a task that would have taken a full team more than two months.

The Capability That Changes Agent Architecture

Beyond benchmarks, Fable 5 introduces what Anthropic describes as long-horizon memory management: the model's ability to hold context, validate its own work, and stay on task across very long sequences.

Where previous models sometimes lost the thread mid-task, Fable 5 checks assumptions, course-corrects before output, and improves iteratively. When tested on the deck-builder game Slay the Spire with persistent file-based memory, Fable 5's performance improved three times more than Opus 4.8 under the same conditions, and it reached the final act three times as often, per Vellum's analysis.

Notably, when asked directly about model selection strategy, Fable 5 itself recommended using a blend of Fable, Opus, and other frontier models for complex tasks, alongside lighter open-weight models for simpler routing. You do not always need the biggest model on every call.

GMI Cloud Demo: Fable 5 at Work

We asked Claude to build a living 3D visualization of how modern AI serving infrastructure works, using planets and spaceships as the metaphor.

The result: a fully interactive, browser-rendered scene where GPU clusters are planets, inference requests are spaceships in orbit, and model routing decisions play out in real time. No scaffolding. No helper harness. One prompt.

This is what Fable 5's long-horizon autonomy looks like in practice. It held the full visualization architecture in context, made design decisions without being prompted, validated the output, and delivered a complete artifact.

Try it yourself at console.gmicloud.ai.

What Engineers Must Know: Safeguards and Data Retention

Two production considerations every team should evaluate before deploying Fable 5.

Safeguard fallback: Queries touching cybersecurity, biology/chemistry, or model distillation are automatically rerouted to Opus 4.8. Anthropic ran an external bug bounty with over 1,000 hours of testing in which no universal jailbreak was found. The classifiers are tuned conservatively and Anthropic is actively refining them post-launch. Design your evaluation suite to explicitly test for fallback behavior if your workload touches these domains.

No Zero Data Retention (ZDR): This is a critical enterprise consideration. Fable 5 does not support ZDR. Customer content is retained for 30 days to detect and prevent serious harm, then automatically deleted except in rare situations. If your compliance posture requires ZDR, route those workloads to Opus 4.8 instead.

Get Started on GMI Cloud in 3 Steps

GMI Cloud supports both the OpenAI-compatible Chat Completions API and Anthropic's native Messages API. You can swap in Fable 5 with a single endpoint change, no new SDK required.

Step 1 — Get your API key

Go to console.gmicloud.ai, navigate to Settings > API Keys > Create API Key, and copy it immediately.

Step 2 — Make your first call

Using the OpenAI-compatible endpoint:

curl https://api.gmi-serving.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $GMI_API_KEY" \
  -d '{
    "model": "anthropic/claude-fable-5",
    "messages": [
      {
        "role": "system",
        "content": "You are a helpful assistant."
      },
      {
        "role": "user",
        "content": "Hello!"
      }
    ]
  }'

Using Claude Code with GMI? Set these environment variables before launching:

export ANTHROPIC_BASE_URL=https://api.gmi-serving.com
export ANTHROPIC_AUTH_TOKEN=$GMI_API_KEY
export ANTHROPIC_MODEL="anthropic/claude-fable-5"
export ANTHROPIC_SMALL_FAST_MODEL="anthropic/claude-sonnet-4.6"
export ANTHROPIC_DEFAULT_OPUS_MODEL="anthropic/claude-opus-4.8"
export ANTHROPIC_DEFAULT_HAIKU_MODEL="anthropic/claude-haiku-4.5"

Claude Code will automatically use Fable 5 as the primary model across your terminal workflow.

Step 3 — Scale with AgentBox

For teams running multi-model agents, GMI AgentBox lets you route to Fable 5 or any of 200+ models behind a single API key, with native Docker deployment, managed infrastructure, and zero idle cost. Route your hardest tasks to Fable 5. Route everything else to the right model for the job.

What the Developer Community Is Saying

Engineers moved fast on this launch. On Reddit's r/ClaudeAI, the consensus is that Fable 5's agentic coding results look "really strong" on SWE-Bench Pro, but that its advantages are concentrated in long-horizon, repo-scale work rather than uniformly across every task type. The practical takeaway: use it selectively.

The subscription cutoff on June 22 has also gotten attention. Fable 5's inclusion on paid plans only until then signals that capacity is still constrained, making the current testing window is time-limited.

The Bottom Line for Your Stack

Fable 5 is the right model for your hardest work: large-scale codebase operations, multi-document knowledge tasks, long-running autonomous agents, and anything where a wrong answer costs more than compute. Use it as your escalation model. Route standard tasks to Opus 4.8 or lighter models.

The one constraint to plan around: no ZDR support means regulated workloads need a separate routing path. For everything else, Fable 5 running on GMI Cloud's NVIDIA H100/H200 infrastructure gives you Mythos-class intelligence at production scale, no subscription cliff, no rate limits, pay per token.

The Mythos tier is here. Put it to work at console.gmicloud.ai.

Roan Weigert

Roan Weigert

DevRel @ GMI Cloud

Build AI Without Limits

GMI Cloud helps you architect, deploy, optimize, and scale your AI strategies

Ready to build?

Explore powerful AI models and launch your project in just a few clicks.

Get Started