On Friday, June 12, at 5:21 PM ET, Commerce Secretary Howard Lutnick sent a directive to Anthropic CEO Dario Amodei ordering the suspension of Claude Fable 5 and Claude Mythos 5 for all foreign nationals — including foreign nationals employed at Anthropic itself. By 00:50 UTC on June 13, both models went dark globally. Not just for international users. For everyone. This is the first time the US government has applied export controls directly to a deployed commercial AI model — treating cutting-edge software the same way it treats military hardware.
What Broke and How to Fix Your Claude API Now
If your application calls claude-fable-5 or claude-mythos-5, it is failing right now. The affected services span the entire Anthropic stack: claude.ai, the Claude API across all regions, Claude Code, and Claude Cowork. Anthropic has provided no restoration timeline. The fix is not automatic — you need to update your code manually. Switch your model identifier to claude-opus-4-8 as your primary fallback. Opus 4.8 was the go-to before Fable arrived and handles most coding and analysis tasks well.
While you are at it, add circuit breakers. Any system retrying indefinitely against an unavailable model endpoint will burn tokens, rack up costs, or cause cascading failures. One government directive, issued Friday afternoon, took down production systems globally by Saturday morning with zero notice. That is not a hypothetical risk model anymore — it happened. Also unaffected and still fully available: Sonnet 4.6, Sonnet 4.8, and Haiku 4.5.
Related: Anthropic Hid Guardrails Inside Claude Fable — And Got Caught
The Jailbreak Dispute — and Why GPT-5.5 Matters
The government’s stated concern is a bypass method: asking Fable 5 to read a specific codebase and identify software vulnerabilities. Anthropic says it only received “verbal evidence” of this — no formal written disclosure. Its own assessment found the technique “surfaced only a small number of previously known, minor vulnerabilities.” That is the entire case for pulling a model deployed to hundreds of millions of users, hours after a Friday directive.
However, here is where it gets harder to defend as a security policy: Anthropic stated publicly that the same technique works on OpenAI’s GPT-5.5 — a model that faces no export controls. The company’s exact wording: “The capability displayed there is widely available from other models, including OpenAI’s GPT-5.5, that are not subject to similar export controls.” If the vulnerability is real and widespread, selective enforcement against one company is not a security policy. Hacker News developers zeroed in on this immediately, noting that Anthropic’s years of “our models are unusually powerful and dangerous” messaging may have made it an easier regulatory target than competitors who stayed quieter.
The Precedent: AI Models as Controlled Export Assets
Until now, US export controls on AI targeted hardware — H100s and A100s are restricted to certain buyers — and occasionally training tools. This directive treats the deployed software model itself as a controlled strategic asset, applying the same dual-use logic the Commerce Department uses for weapons systems. That is a structural shift, not a one-off. Fortune’s reporting on the ban noted that companies now face what amounts to defense-contractor-level nationality verification requirements for their APIs.
The enforcement mechanism is also considered unworkable by many developers in the Hacker News discussion (2,781 points — the top story today). Blocking “foreign nationals whether inside or outside the United States” when payment verification relies on credit cards is not a coherent enforcement strategy. Meanwhile, open-source models like Kimi K2.7 and DeepSeek cannot be export-controlled once downloaded. US closed-source AI labs bear the entire compliance burden while open-source alternatives face none of it.
What This Means for Your AI Architecture
Model redundancy just became infrastructure, not a nice-to-have. If your stack has a hard dependency on a single provider’s flagship model, last night showed you exactly what that risk looks like when it materializes. Abstract your model calls behind a provider layer that can swap between Anthropic, OpenAI, Google Gemini, or open-source alternatives without a 3 AM emergency code push.
Furthermore, enterprise procurement now needs a geopolitical risk row in its assessment spreadsheet alongside price, performance, and data residency. A model can be available, affordable, and technically excellent — and then gone overnight due to a Commerce Department letter. Anthropic complied within hours of a Friday directive. Your application gets no grace period.
Key Takeaways
- Update any code calling
claude-fable-5orclaude-mythos-5toclaude-opus-4-8immediately — the fallback is not automatic - Add circuit breakers to prevent infinite retry loops against unavailable model endpoints
- Anthropic disputes the severity: the same jailbreak technique works on GPT-5.5, which faces no similar controls — selective enforcement is not coherent security policy
- This is the first US export control applied to a deployed commercial AI model — not hardware, not training tools, the model itself
- Build model-agnostic architecture now: one government directive turned a best-in-class model into a 404 overnight with zero notice













