Meta Just Killed Llama and Nobody Is Saying It Out Loud
The Muse Spark 1.1 announcement dropped today and the front-page story is "Meta released a coding agent at near-Opus level." That is not the story. The story is in the second paragraph, and you have to read the API terms to find it: Muse Spark 1.1 is not open-weight. Meta is selling it. After three years of free Llama downloads, the strategy just flipped, and the agentic-coding tier now has one more closed vendor with a paid API instead of one fewer open one.
Let me say the quiet part out loud: the Llama era at Meta is over, and "personal superintelligence" is the cover story.
What Muse Spark 1.1 actually is
Meta Superintelligence Labs (MSL), the new org run by Alexandr Wang, shipped Muse Spark 1.1 today as a paid API preview for US developers. It is a multimodal reasoning model built for agentic work, with major gains in tool use, computer use, and coding. Benchmarks land it in the same cluster as Grok 4.5, Opus 4.8, and GPT-5.5, all noticeably behind Claude Fable 5 but within a few points of each other on most evals. (GLM-5.2 from Zhipu is also in that benchmark cluster, but it is an open-weights model on Hugging Face, not a paid closed-tier vendor.) The context window is 1 million tokens. It is available now via the Meta Model API, which is in public preview.
The benchmarks worth caring about (numbers are from Meta's launch, so take them with the usual grain of salt):
| Benchmark | Muse Spark 1.1 | What it measures |
|---|---|---|
| MCP Atlas | leading | Tool use across MCP servers |
| JobBench | leading | Long-horizon agentic tasks |
| Humanity's Last Exam | high | Reasoning at expert-human level |
| Finance Agent v2 | high | Financial analysis workflows |
| Terminal-Bench 2.1 | ~cluster | Command-line agent tasks |
| DeepSWE 1.1 | ~cluster | Real GitHub issue resolution |
Notice what is not on the list: open weights, download link, Hugging Face repo. Notice what is on the list: a paid API. That is the entire story in two lines.
Why the cluster is the real story
Techzine put it well today: in 2023, GPT-4 was so far ahead of everything that the second tier clustered under it for a year before anyone caught up. In 2026, the second tier has gotten good enough that Grok 4.5, Muse Spark 1.1, Opus 4.8, GPT-5.5, and GLM-5.2 are all within a few points of each other on most coding and reasoning benchmarks, even though GLM-5.2 is the only open-weights model in that group. Fable 5 is the outlier at the top. The rest are interchangeable for most working tasks.
That matters for two reasons:
- Pricing becomes the only durable differentiator. When every model is "good enough," the one that costs 1/10th per task wins the agentic workflows, the same way the cheap model always wins the inference-volume game.
- Open-weights stops being the moat. When the closed tier is also chasing cheap-and-fast, the open tier is competing on price with Meta, not on price with itself. Llama's value proposition was free frontier weights. The moment Meta decides free frontier weights are not the strategy, that proposition evaporates.
If you are betting your stack on Llama 5 landing as open weights, you should probably have a Plan B. Meta's last open release was Llama 4, and Llama 4's adoption was "disappointing" by Meta's own admission. The Muse line is what they are scaling instead.
The agentic angle is real
Muse Spark 1.1 is not a chatbot demo model. It is built to drive multi-agent workflows: create a plan, delegate to parallel subagents, compress latency. The "Thinking" mode is the production version of the Contemplating mode that shipped with the original Muse Spark in April. The 1M context window is large enough to hold a meaningful slice of a real codebase, which is the threshold for "useful in Cursor / Claude Code / Codex CLI" rather than "useful for paste-and-hope demos."
Computer use is the other angle. Meta is explicitly training the model to decide when to write a script versus click directly, because pure click-loop agents are slow. If they pull that off it is a real advantage over the MCP-only integrations that most frontier labs ship with today.
What this changes for working developers
A few practical implications from today's launch:
- One more paid coding model on the menu. Muse Spark 1.1 joins Opus 4.8, GPT-5.5, Grok 4.5, and Fable 5 in the closed-weights agentic tier. Pricing is not yet public; expect "aggressive" per Bloomberg's Zuck quote this morning.
- Multi-agent orchestration is becoming table stakes. Every frontier lab is now shipping "plan + delegate to subagents" as a core capability, not a research demo. If your tooling does not support it, you are behind.
- The open-weights hedge is thinner. Qwen, GLM-5.2, DeepSeek, Mistral, and a handful of others are the only remaining free frontier-tier options. Llama is not on that list anymore in any meaningful sense.
A quick CLI snippet for when the API goes live (Meta preview is closed today):
# When Muse Spark 1.1 is available in your tier:
curl -X POST https://api.meta.com/v1/muse-spark-1-1/messages \
-H "Authorization: Bearer $META_MODEL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "muse-spark-1.1",
"thinking": {"enabled": true, "max_subagents": 4},
"messages": [{"role": "user", "content": "Refactor the auth module to use the new session API."}],
"context_window": 1000000
}'
The exact endpoint shape is not yet public; treat the snippet as illustrative of the call pattern, not a copy-paste.
What it does not change
Muse Spark 1.1 is not a Fable 5 killer. On the hardest reasoning benchmarks Claude's frontier model still leads, and the gap is meaningful when each token is a high-stakes decision. For novel architecture work, security review, and the "I need this to be right the first time" tasks, you are still on Claude. For everything else, the closed tier is now a price competition, and the open tier is now a price competition against the closed tier, and that is a different game than the one we were playing six months ago.
The Chinese labs are still ahead of Meta on the open-weights angle. GLM-5.2 is shipping fast and cheap, and the 2.7T parameter z-ai model is reportedly in flight. Meta is not "back" in the sense the press is claiming. Meta is back in the closed-weights tier, where it has to compete on price with xAI, OpenAI, Anthropic, and Zhipu all at once. That is harder than being back in open weights, and the proof will be in the Q4 API pricing.
My read
The interesting move today is not Muse Spark 1.1 itself. It is the line in the API terms that says you cannot download the weights. Meta spent three years building an open-weights brand, then quietly sunset it the moment a paid competitor tier got crowded enough to make the math work. The next twelve months are going to be a race to the bottom on per-token pricing across the paid tier (Opus 4.8, GPT-5.5/5.6, Grok 4.5, Muse Spark 1.1), with Fable 5 holding the premium end and the open-weight labs (Mistral, Qwen, Zhipu's GLM-5.2, DeepSeek) undercutting them from below on the same benchmarks. The "free frontier weights" moat was real, and it just died.
Source: techzine.eu - Meta Muse Spark 1.1 closes the gap to Anthropic and OpenAI