On June 9, 2026, Anthropic shipped two new frontier models: Claude Fable 5 and Claude Mythos 5. A few days later they simply vanished โ€” not because of a technical failure, but because of a US government directive. For any company that had built a product on top of those models, it was a wake-up call about technological dependence.

โšก TL;DR

The US government ordered Anthropic to restrict foreign nationals' access to its most capable models over national security concerns. To comply, Anthropic disabled Fable 5 and Mythos 5 for all customers โ€” including Americans. The rest of the Claude family (e.g. Opus 4.8) stayed online. The lesson: depending on a single proprietary foreign AI exposes you to decisions you don't control.

What actually happened

According to international press coverage (CNN, NBC News), the US government issued a directive requiring Anthropic to suspend foreign nationals' access to its frontier models over national security concerns โ€” reports point to a jailbreak technique exploiting cybersecurity vulnerabilities.

Anthropic said it could not restrict only foreign nationals without shutting the service down for everyone, so it disabled Fable 5 and Mythos 5 globally to comply. The company publicly disputes the directive, arguing that taken to its logical end it would halt every new frontier model deployment across the industry.

The key takeaway: a regulatory decision made in Washington erased, overnight, a tool that companies worldwide were running in production.

Why this is a business problem, not just news

Suppose your startup, lab, or SaaS product depends on one specific model from a foreign API. Overnight, with no warning, it can:

  • Be shut off by government order โ€” exactly what just happened;
  • Block your country or region over export controls or sanctions;
  • Change pricing, limits, or terms with no negotiation;
  • Be deprecated when the vendor ships the next version;
  • Suffer instability you can neither diagnose nor fix.

In every case you don't hold the model weights, you don't control the infrastructure, and you have no plan B. That is business continuity risk โ€” the kind a compliance team or an investor's due diligence will want mitigated.

The alternative: open-source models on Brazilian GPUs

The good news is that 2026 may be the best moment in history to not depend on a single proprietary AI. The current wave of open-source (or open-weight) models already reaches frontier quality:

ModelStrong atRuns on
DeepSeek R1 / V3Reasoning & mathDedicated GPU (multi-GPU for full)
Qwen 3 (235B-A22B)Reasoning & codeDedicated GPU / quantized
Llama 4 ScoutLong context (up to 10M tokens)Dedicated GPU
Mistral Large 3General, multilingualDedicated GPU
Kimi K2.6Agents & codeDedicated GPU

When you run one of these on your own cloud GPU, three things change:

  1. Continuity: no one can "switch off" your model. The weights are yours, downloaded and versioned.
  2. Data sovereignty: your prompts and sensitive data never leave Brazil โ€” which directly helps LGPD compliance.
  3. Cost predictability: you pay for the GPU per hour in reais, with no FX surprises or unilateral API price changes.

๐Ÿ’ก It's not either/or

The healthiest architecture is hybrid: use the best proprietary API when it makes sense, but keep a self-hosted open-source model as a ready fallback. If the API goes down or gets suspended, your product stays up.

How to build your plan B on GPUBrazil

In practice, you can have an OpenAI-compatible endpoint serving an open-source model in minutes:

  1. In the Console, launch a vLLM template on a GPU sized for your chosen model.
  2. Point your code at the instance endpoint (same OpenAI /v1/chat/completions format).
  3. Configure a fallback: if the primary API fails, route to your self-hosted endpoint.
# Example: OpenAI client pointed at your vLLM on GPUBrazil
from openai import OpenAI

client = OpenAI(
    base_url="https://your-instance.gpubrazil.com/v1",
    api_key="your-local-key",
)

resp = client.chat.completions.create(
    model="Qwen/Qwen3-235B-A22B",  # or DeepSeek, Llama 4, Mistral...
    messages=[{"role": "user", "content": "Summarize this contract."}],
)
print(resp.choices[0].message.content)

Get a plan B no one can switch off

Spin up an open-source LLM on a Brazilian GPU in minutes.

Get Started Free โ†’

Frequently asked questions

Why were Claude Fable 5 and Mythos 5 suspended?

In June 2026 the US government directed Anthropic to restrict foreign nationals' access to its most capable models over national security concerns. Unable to block only foreign users, Anthropic disabled Fable 5 and Mythos 5 for all customers.

Which Claude models remain available?

The rest of the Claude family, including Opus 4.8, stayed available and was unaffected. Only Fable 5 and Mythos 5 were disabled.

How do I protect my business if a foreign AI is suspended?

Don't depend on a single proprietary model. Running open-source models (DeepSeek, Qwen 3, Llama 4, Mistral) on GPU cloud in Brazil gives you continuity, control of the weights, and data sovereignty under the LGPD.

Conclusion

The suspension of Claude Fable 5 and Mythos 5 is not the end of proprietary AI โ€” but it is a clear reminder that no third-party tool is guaranteed. The mature response is to architect for sovereignty: keep a self-hosted open-source model, on a GPU in Brazil, ready to take over. Continuity, compliance, and independence โ€” all at once.

Read next: Why startups are leaving AWS ยท Open-source LLM comparison 2026