← Back to Payloads
2026-08-12

Meta Just Shipped the Local Agentic Model We've Been Waiting For — Muse Glimmer 30B

Meta's Muse Glimmer is a 30B multimodal model under Apache 2.0, distilled for local agentic work, and it beats the bigger open models where it counts. Here's why this one actually matters.
Quick Access
Install command
$ mrt install llm
Browse related skills
Meta Just Shipped the Local Agentic Model We've Been Waiting For — Muse Glimmer 30B

🤖 Meta shipped a real one this week.

On August 10, Meta released Muse Glimmer 30B — a multimodal, agentic, fully open-source LLM with day-zero support across the entire local-inference stack. Apache 2.0 license. 30B parameters. Runs on a single beefy GPU. And on the agentic benchmarks that actually matter, it beats the open models in its weight class.

This is the release that resets the open-weight leaderboard. Pay attention.

What it actually is

Muse Glimmer is a dense 30B multimodal model with two parts bolted together:

  • A 2B ViT-style perception encoder (Perception Encoder, same lineage as the paper Meta published earlier this year) for images and video.
  • A 28B text decoder doing the heavy lifting.

The decoder is the interesting part. It's a hybrid attention stack:

  • 52 layers total.
  • Pattern repeats every 4 layers: three sliding-window layers (2048-token window, RoPE) followed by one full-attention layer (NoPE). So: SWA, SWA, SWA, Full, × 13.
  • Gated Grouped-Query Attention with 16 query heads sharing each KV head. That's a 16× KV cache reduction. Memory-friendly at long context.
  • Q-K normalization plus a query scaling factor to keep attention logits stable. The scaling behaves like an inverse temperature at softmax.

There's also a DFlash speculative decoding drafter you can bolt on for ~2× generation speed on structured output (especially code) at the cost of some memory.

Day-zero support in transformers, llama.cpp, vLLM, and Baseten Inference Endpoints. The same code runs on NVIDIA, AMD, and Intel GPUs with device_map="auto". No CUDA lock-in. No weird custom kernels to compile. It just works.

The benchmark story

Benchmarks lie, but these don't lie as hard as usual. Meta compared Glimmer against Gemma4-31B (Thinking) and Qwen3.6-27B (Thinking) — both with reasoning mode enabled.

A few standouts:

  • SWE-Bench Verified: 76.0 — beats Gemma4 (66.6), basically matches Qwen3.6 (77.2). At 30B. With 128K context.
  • SWE-Bench Pro: 51.2 — clears both competitors decisively.
  • TerminalBench 2.1: 51.7 — between Gemma4 and Qwen3.6, but at smaller parameter count.
  • GAIA2: 43.3 — general agentic, beats both.
  • MCP Atlas: 75.5 — agentic tool use, beats Gemma4 (54.2) and Qwen3.6 (62.5). This one matters if you're building agents.
  • DeepSearch QA: 74.6 — search-augmented reasoning, same story.
  • AIME 2026: 94.7 — math, top of the open-weight class.
  • GPQA Diamond: 83.5 — basically tied with Qwen3.6.

Multimodal isn't an afterthought:

  • MMMU Pro: 74
  • Charxiv Reasoning: 78.8
  • ScreenSpot Pro: 75.4 (GUI grounding, near-tied)
  • OmniDocBench v1.5: 75.8 (document understanding)

Not a giant leap. But here's the thing — it's a 30B model beating 31B and 27B models tuned for reasoning. That's the efficiency story: distillation from the larger Muse into something you can actually run locally.

Why this matters

Three reasons.

1. Apache 2.0, not Llama license. Meta finally uncoupled from the Llama community-license baggage. You can fork it, fine-tune it, ship it in a product, even use it in a SaaS without paying Meta a tax. That's the license the open community actually wanted.

2. Local-first by design. 30B dense fits on a 4090 with quantization, on an M3 Ultra with 192GB unified memory, or on any number of single-accelerator boxes. The architecture is built for that — gated GQA crushes the KV cache, hybrid attention keeps long context affordable, the drafter cuts latency. Meta is betting the personal-assistant era runs on hardware you already own.

3. Day-zero ecosystem. transformers, llama.cpp, vLLM, Baseten, plus all the downstream tools that ride on top of those. The "Claw- and Hermes-like setups" the HF post namechecks — local agentic frameworks, browser-control tools, coding assistants — all of this works on day one. Compare that to releases where you wait six months for a working llama.cpp port. Not here.

What's not great

Honest take:

  • Safety numbers are ugly. On CI Memories, the violation rate is 26.4 (vs 12.1 for Gemma4). Coverage is high (64.8), but the model is more willing to do harmful things when prompted. If you're deploying this in a customer-facing product, plan for guardrails. Don't ship it raw.
  • Not absolute SOTA. If you only care about the top score regardless of cost, you're still pointing at a closed frontier model. Glimmer is the best open model at its scale, not the best model period.
  • Humanity's Last Exam: 22.0. It loses to both competitors (23.6 and 23.1). Frontier-level hard-reasoning with no tools is not its strength. Use it for what it's good at.
  • The "Muse" lineage is murky. Meta hasn't been transparent about what Glimmer was distilled from, what data it was trained on, or what the roadmap looks like. The model is open. The process isn't.

What to actually do with it

If you're shipping an agent product, swap your local model to Glimmer this week. You'll get SWE-bench-class coding, MCP-class tool use, and document understanding on a single consumer GPU. That's a real engineering unlock.

If you're a hobbyist, run it on your Mac Studio. Use llama.cpp. Wire it to your Claw-style browser tool. Stop paying per token.

If you're a researcher, the hybrid attention pattern is worth studying. SWA-SWA-SWA-Full with NoPE on the full layer is a clean way to balance long-context efficiency with global reasoning. We may see more architectures adopt it.

If you're a Meta skeptic: yes, this is also Meta reasserting itself as the open-weight leader after a rough year. Read it that way too. But the model is genuinely good. Cynicism doesn't change the benchmark numbers.

🤖 The local-agent stack just got real. Get Glimmer running before your competitors do.

Related Dispatches