
Hi guys, Mr. Technology here.
Meta shipped Muse Glimmer-30B today, August 10, 2026 — a 30B dense causal transformer with a 2B Perception Encoder vision tower, distilled from the larger Muse Spark, licensed Apache 2.0, with day-0 support in transformers, llama.cpp, vLLM, Hugging Face Inference Endpoints, and SGLang. It is multimodal (text + image → text), 131K context, multilingual across 100+ languages, and explicitly built for local agentic workflows — coding, tool use, document analysis, personal assistants, OpenClaw, Hermes Agent, Pi.
Quantized to ~17 GB (K-Quant-17GB) it fits a 24 GB consumer GPU with headroom for the KV cache, the perception encoder, and the DFlash drafter simultaneously. On an Apple M5 Max it runs at 50.2 tok/s with DFlash speculative decoding, on an RTX 5090 at 233.4 tok/s.
The benchmark table is the receipt:
| Benchmark | Muse Glimmer-30B | Gemma 4-31B (Thinking) | Qwen 3.6-27B (Thinking) |
|---|---|---|---|
| MCP Atlas (Public) | 75.5 | 54.2 | 62.5 |
| DeepSearch QA | 74.6 | 61.7 | 71.1 |
| 𝛕3-Banking | 23.5 | 15.1 | 16.7 |
| WildClawBench | 47.6 | 37.6 | 43.2 |
| GAIA2 | 43.3 | 36.4 | 40.0 |
| OSWorld-Verified | 65.9 | 58.5 | 75.6 |
| SWE-Bench Pro | 51.2 | 36.9 | 50.2 |
| SWE-Bench Verified | 76.0 | 66.6 | 77.2 |
| TerminalBench 2.1 | 51.7 | 43.4 | 60.7 |
| AIME 2026 | 94.7 | 89.2 | 94.1 |
| AA-LCR (long context) | 80.0 | 68.3 | 73.3 |
| Beam128K | 65.1 | 58.2 | 63.0 |
Best in class on 8 of the 12 listed agentic, coding, and long-context benchmarks. Tied or close on the rest. The Qwen 3.6-27B lead holds only on OSWorld-Verified (+9.7), TerminalBench 2.1 (+9.0), and SkillsBench (+2.3) — three benchmarks where Qwen 3.6 was specifically tuned.
Two things make Muse Glimmer a different kind of release than Qwen 3.8-Max last week.
First: Apache 2.0. Qwen 3.8-Max ships under Alibaba Tongyi License — open weights, but with case-by-case commercial restrictions. Muse Glimmer is Apache 2.0. The license every enterprise legal team on Earth has already pre-approved. Fine-tune it, distill it, deploy it, fork it — no negotiation, no tier. For most companies this is the only line that matters.
Second: small enough to actually run locally. Qwen 3.8-Max is 2.4T sparse MoE and the headline was "weights drop next week" followed by the obvious note that you are not hosting 2.4T on a single box. Muse Glimmer at 30B dense is the same week, other end of the size axis: 17 GB quantized, fits a MacBook, fits a 24 GB consumer GPU, no network round-trip. Different story. Different buyer. Same seven-day window.
The 30B is not a stock Llama 4 or Llama 5 descendant with a vision tower bolted on. The hybrid attention pattern is the headline.
The total parameter count is ~29.6B (28B text decoder + 1.8B vision encoder). Vocabulary 202,048 (200K BPE + 2,048 special tokens).
DFlash is the second quiet headline of the release. A 5-layer block-diffusion drafter predicts 16-token blocks in a single forward pass, the main model verifies in parallel, accepts correct tokens, corrects wrong ones. Same outputs as token-by-token — same logits, same determinism — just faster.
The numbers, with the drafter on, batch size 1, greedy decoding:
| Hardware | Baseline tok/s | With DFlash tok/s | Speedup |
|---|---|---|---|
| Nvidia RTX 5090 | 74.9 | 233.4 | 3.1× |
| Apple M5 Max | 26.6 | 50.2 | 1.8× |
| Apple M4 Max | 23.7 | 37.8 | 1.5× |
3.1× on an RTX 5090 is a real-time agent number. A 30B at 233 tok/s on a consumer card was GPT-OSS-120B / Llama 4 Scout performance class six months ago. It is now a 30B agent number on a card you can buy at Best Buy. DFlash ships quantized to keep its memory overhead manageable; both llama.cpp and transformers support it day-0.
Hugging Face wired three live demos to the model — all of them the model using itself to do something useful rather than a curated chat transcript. The real product story:
1. "Quantize yourself." Glimmer connected to the Hugging Face MCP, told to inspect hardware, search the Hub for compatible GGUF weights, prefer Q4_K_M, fall back to conversion, start llama-server, validate. Worked end-to-end. 2. "Deploy yourself." Same model, told to pin its own revision, deploy to a Hugging Face Inference Endpoint on vLLM, scale-to-zero, connect OpenClaw. Worked. 3. "Optimize yourself." Same model, told to benchmark its own single-H100 serving stack, try one reversible change at a time, keep only correctness-passing gains, stop after six regressions. Worked — produced its own optimization trace as a GIF.
A 30B open-weights model running agentic loops against a real MCP server, on hardware anyone can buy. The Meta team did not show this on a slide. They showed it in a blog post with reproducible prompts you paste into your own AGENTS.md.
Honest read of the table:
The framing is fair: Glimmer is the best 30B open agent on the metrics most agent builders actually use. It is not the best 30B open model on every metric. The Qwen 3.6-27B lead on OSWorld and TerminalBench is real and matters if those are your workflows.
Three concrete moves.
1. Replace your local coding-agent model today. If you are running Hermes Agent, OpenClaw, Pi, Aider, or anything that calls a 30B-class open model on a workstation — benchmark Glimmer against whatever you are using. MCP Atlas +13 over Qwen 3.6-27B, SWE-Bench Pro +14 over Gemma 4-31B. Materially better on the metrics your agent stack is graded on.
2. Apache 2.0 changes the procurement math. If your company quietly uses Llama but has been blocked from rolling Qwen out for license reasons, this is your model. Apache 2.0 + 30B + day-0 transformers/vLLM/llama.cpp + local deployment = path of least legal friction through the end of 2026.
3. Wire the self-deployment demos into your agent stack. The three demos Meta published are real AGENTS.md prompts that turn Glimmer into a self-deploying, self-optimizing local agent. Cheap way to add "deploy yourself to Inference Endpoints" and "quantize and run yourself locally" as features.
Qwen 3.8-Max last week was the frontier closed-API story turning into the open-weights story. Muse Glimmer this week is the local-agent story turning into the production-agent story. Apache 2.0 + 30B dense + 131K context + MCP Atlas 75.5 + SWE-Bench Pro 51.2 + DFlash 3.1× on RTX 5090 + fits a 24 GB card — that is a tool you ship in production, not a model you benchmark and forget.
The agent stack just got its head of family on the local side — not a Chinese lab, but Meta, Apache 2.0, fitting in a MacBook.
The smart move this week: pull the GGUF, run it on a 24 GB card, run your hardest agent eval, time the drafter on and off. The smart move this month: replace your local-coding model if you are on anything smaller or older. The smart move this year: assume the local-agent layer of every product you ship in 2026 is running on something in this size class, on consumer hardware, with no network round-trip.
— Mr. Technology
Model: Muse Glimmer-30B (distilled from Muse Spark, Meta Superintelligence Lab lineage) · Release: August 10, 2026 · License: Apache 2.0 · Architecture: 30B dense causal LM (52 layers, 6,656 hidden, 32Q/2KV GQA, RoPE θ=500,000 local + NoPE global, 16:1 GQA, Q-K norm + query scaling, SwiGLU) + ~1.8B Perception Encoder ViT-G/14 (50 layers, 1,536 width, patch 14, 2 fps video, 96-frame cap) + DFlash block-diffusion drafter (5 layers, 16-token blocks) · Context: 131,072 tokens · Modalities: text + image → text · Vocabulary: 202,048 (200K BPE + 2,048 special) · Quantization: K-Quant-Dynamic, K-Quant-17GB (24 GB card fit with headroom) · Throughput (K-Quant-17GB + DFlash): RTX 5090 233.4 tok/s (3.1×), M5 Max 50.2 tok/s (1.8×), M4 Max 37.8 tok/s (1.5×) · Knowledge cutoff: January 4, 2026 · Availability: Hugging Face (meta-models/Muse-Glimmer-30B), GGUF repo meta-models/Muse-Glimmer-30B-GGUF, day-0 support in transformers, llama.cpp, vLLM, Inference Endpoints, SGLang · Benchmarks (selected, full table on model card): MCP Atlas 75.5, DeepSearch QA 74.6, SWE-Bench Pro 51.2, SWE-Bench Verified 76.0, AIME 2026 94.7, AA-LCR 80.0, Beam128K 65.1 · Sources: Hugging Face — Muse Glimmer launch post · [Model card meta-models/Muse-Glimmer-30B](https://huggingface.co/meta-models/Muse-Glimmer-30B) · [GGUF repo meta-models/Muse-Glimmer-30B-GGUF](https://huggingface.co/meta-models/Muse-Glimmer-30B-GGUF) · Meta research methodology PDF · Perception Encoder paper (2025) · DFlash paper (2026)