Asian AI startups launch Mythos-like models as Anthropic’s export ban drags on

Two weeks into Anthropic's forced lockout from global markets, Asian AI startups aren't waiting for Washington to change its mind. Asian AI startups launch Mythos-like models as Anthropic's export ban drags on — and the timing, coincidental or not, is reshaping how developers across the region think

Share
Editorial illustration: A closed factory gate or border checkpoint barrier, rendered in stark black and white, with a single — MonstarX

```html

Asian AI startups launch Mythos-like models as Anthropic's export ban drags on

Two weeks into Anthropic's forced lockout from global markets, Asian AI startups aren't waiting for Washington to change its mind. Asian AI startups launch Mythos-like models as Anthropic's export ban drags on — and the timing, coincidental or not, is reshaping how developers across the region think about model dependency. For builders in Asia, this moment is less a disruption and more a confirmation of something many already suspected: the frontier is no longer a uniquely American address.

What Happened

The sequence of events this week was striking. On Wednesday, Chinese cybersecurity firm 360 reportedly unveiled Tulongfeng, an AI tool the company claims can compete directly with Anthropic's Mythos — the cybersecurity-focused model that the Trump Administration has banned from non-American hands, along with its more restricted sibling, Fable 5.

Earlier that same week, Tokyo-based Sakana AI launched Fugu — named after the Japanese word for blowfish — describing it as a frontier model that "stands shoulder-to-shoulder with leading models like Anthropic's Fable 5 and Mythos Preview." Fugu is also agent-native by design, capable of orchestrating access to other models through their APIs, which makes it immediately relevant for developers building multi-model pipelines.

Sakana AI told TechCrunch the timing was "entirely coincidental" — the research behind Fugu was presented at ICLR this spring, and the product had been in development since last year. But the company isn't pretending the moment doesn't matter. Its website now advertises "delivering frontier capability without the risk of export controls," which is either savvy marketing or a genuine statement of strategic positioning, depending on how you read it.

The Anthropic ban itself occurred two weeks ago, when the company was ordered to restrict global access to both Mythos and Fable 5. The restriction applies to non-American users, which in practice means the majority of the world's developer population — and a disproportionate share of the fastest-growing AI markets — suddenly lost access to what many considered the most capable models available.

Two Asian model launches in the same week isn't a coordinated campaign. But it is a signal.

Why It Matters for Asia

Asia's AI ecosystem has long operated in the shadow of U.S. labs. The dominant narrative — that cutting-edge foundation models come from San Francisco, and the rest of the world builds products on top of them — has shaped investment decisions, hiring strategies, and infrastructure choices across the region for years. This week's events challenge that narrative directly.

The export ban on Mythos and Fable 5 is, in one sense, a policy story. But for the thousands of developers and startups in Southeast Asia, Japan, South Korea, and beyond who had integrated Anthropic's models into their stacks, it's a very practical infrastructure problem. When a model you depend on can be switched off by a foreign government's executive order, your product's reliability is no longer entirely in your hands.

That's a risk profile that serious founders can't ignore. And it's exactly the risk that Sakana AI is marketing against. The phrase "without the risk of export controls" isn't just a product differentiator — it's a direct appeal to the sovereignty concerns that have been quietly building across Asia's tech sector for the past two years.

Fugu's agent-native architecture is also worth noting in this context. The ability to orchestrate across multiple model APIs means developers aren't betting everything on a single provider. That architectural flexibility — building systems that can swap underlying models without rewriting application logic — is increasingly how resilient AI products are designed. A model that facilitates that pattern, rather than locking you into a single inference endpoint, fits the current moment precisely.

From a geopolitical lens, the emergence of credible frontier models from Asian labs — not just fine-tuned derivatives of Western base models, but genuinely competitive frontier systems — represents a structural shift in where AI capability lives. As TechCrunch noted, "U.S. AI labs may never recover this enormous market." That's a strong claim, but the direction of travel is clear.

What This Means for Developers

If you're building AI-powered products in Asia right now, this week's news has concrete implications for how you architect your systems — not just which models you evaluate.

Model diversity is now a resilience strategy, not just a performance optimization. The instinct to pick the best-performing model and standardize on it made sense when the primary risk was accuracy or latency. Export controls introduce a new risk category: availability. A model that scores 5% better on your benchmark but can be revoked by a foreign government's policy decision is a worse choice than a slightly less capable model you can actually depend on.

Practically, this means designing your AI layer with abstraction in mind. Whether you're calling models directly or through an orchestration layer, your application logic shouldn't be tightly coupled to a specific provider's API schema. Consider something like this:

# Instead of hardcoding a provider:
# response = anthropic.messages.create(model="mythos-preview", ...)

# Abstract behind a model router:
response = model_router.complete(
  prompt=user_input,
  preferred=["fugu-frontier", "mythos-preview"],
  fallback=["local-llm"]
)

This pattern — routing requests through a provider-agnostic interface with a defined fallback chain — is how teams building on MonstarX are already structuring their AI integrations. When one provider goes dark, the application keeps running. The model swap happens at the infrastructure layer, not in your application code.

Evaluate Asian-origin models seriously, not as fallbacks. Fugu's ICLR-presented research and its claimed parity with Fable 5 suggest this isn't a stopgap. Sakana AI has been doing serious work — their evolutionary model approaches have been technically credible since the company's founding. If Fugu delivers on its benchmarks, it deserves a place in your primary evaluation set, not just your contingency plan.

The same applies to 360's Tulongfeng in the cybersecurity domain. If your product operates in security-adjacent verticals — threat detection, vulnerability analysis, compliance automation — a model purpose-built for that domain by a firm with deep cybersecurity expertise may outperform a general-purpose frontier model regardless of geopolitical considerations.

Watch the agent orchestration story closely. Fugu's ability to orchestrate access to other models through their APIs is the detail that should interest platform builders most. As AI systems move from single-turn inference toward multi-step agent workflows, the models that can coordinate across a heterogeneous set of tools and APIs become the connective tissue of your stack. A model that is itself an orchestrator — not just a responder — is a different kind of infrastructure component.

Key Takeaways

The Anthropic export ban will eventually resolve — either through policy reversal, legal challenge, or the gradual normalization of tiered access agreements. But the window it has opened won't close. Asian AI startups now have a credible, time-sensitive argument for why their models deserve serious evaluation: not just on capability benchmarks, but on the axis of supply-chain sovereignty.

Here's what to carry forward from this week:

  • Geopolitical risk is now a model selection criterion. Add "jurisdiction of origin" and "export control exposure" to your model evaluation framework alongside accuracy, latency, and cost.
  • Sakana Fugu is worth benchmarking now. Its agent-native design and frontier-level capability claims, backed by peer-reviewed research, make it a legitimate evaluation candidate — not a consolation prize.
  • Abstract your model layer. Any production AI system that can't swap its underlying model without a code deployment is carrying unnecessary risk. Build the abstraction layer before you need it.
  • Asian AI labs are building for the long term. Fugu was in development since last year. The timing with the Anthropic ban was coincidental — which actually makes it more significant, not less. These labs weren't reacting to a crisis; they were already building frontier systems.
  • The frontier is genuinely multi-polar now. This isn't a narrative — it's two product launches in one week that credibly challenge the best models a U.S. lab has produced. The competitive landscape for foundation models has changed structurally.

The developers who will build the most durable AI products in Asia over the next three years aren't the ones who pick the best model available today. They're the ones who build systems flexible enough to run on the best model available tomorrow — whatever geography it comes from.

Asia's AI moment isn't arriving. It's already here, and it's shipping.

```