
🤖 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.
Muse Glimmer is a dense 30B multimodal model with two parts bolted together:
The decoder is the interesting part. It's a hybrid attention stack:
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.
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:
Multimodal isn't an afterthought:
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.
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.
Honest take:
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.