Muse Glimmer is a dense causal transformer (not Mixture-of-Experts) with a dedicated ~1.8B-parameter ViT-G/14 perception encoder for multimodal input . It features 52 layers, a hidden dimension of 6,656, and 32 query heads with a 16:1 Grouped Query Attention pattern .
| Specification | Detail |
|---|---|
| Total parameters | ~29.6B (27.8B language model + ~1.8B vision encoder) |
| Context window | 131,072+ tokens (up to 262K in some configurations) |
| Multimodal input | Text + images via the dedicated perception encoder |
| License | Apache 2.0 — allows commercial use, modification, and redistribution |
| Offline/local | Runs entirely on a single consumer GPU or Mac — no cloud required |
| Knowledge cutoff | January 4, 2026 |
| Training data | Covers more than 100 languages |
The full-precision model requires ~55 GB of VRAM, but Meta ships it with 4-bit quantization that compresses the model to under 20 GB .
Meta ships two quantized release configurations, both built with K-Quant and measured against 15 benchmarks :
Independent laboratories have not yet reproduced these aggregate degradation claims .
To solve the latency problem of running a 30B model locally, Meta pairs Muse Glimmer with DFlash — a small five-layer speculative-decoding drafter that proposes blocks of 16 tokens at once, which the main model then verifies in parallel .
Meta reports the following throughput on the 17 GB quantized model at batch size 1 with greedy decoding :
| Hardware | Baseline (tok/s) | With DFlash (tok/s) | Speedup |
|---|---|---|---|
| NVIDIA RTX 5090 | 74.9 | 233.4 | 3.1x |
| Apple M5 Max | 26.6 | 50.2 | 1.9x |
| Apple M4 Max | 23.7 | 37.8 | 1.6x |
SGLang reported 236.4 tok/s on the same RTX 5090 hardware in a separate day-0 measurement . Early independent tests on an RTX 5090 with llama.cpp sometimes report lower numbers (e.g., ~137 tok/s), suggesting that the 233+ tok/s figure requires specific optimizations .
Muse Glimmer is not primarily a chatbot — it is a local AI agent designed for autonomous workflows . Meta explicitly tuned it to plan, call tools, and recover from its own errors . It supports the Model Context Protocol (MCP) natively and integrates with popular agent frameworks .
Key use cases include: function calling, local coding, long tool-use sessions, LLM-as-a-judge evaluation, document analysis, and personal assistants .
Meta published direct comparisons against Google's Gemma 4 31B and Alibaba's Qwen 3.6 27B (both in thinking/reasoning mode) :
| Benchmark | Muse Glimmer 30B | Gemma 4 31B | Qwen 3.6 27B | What it tests |
|---|---|---|---|---|
| MCP Atlas (Public) | 75.5 | 54.2 | 62.5 | Multi-turn use of 20+ MCP servers |
| DeepSearch QA | 74.6 | 61.7 | 71.1 | Autonomous web research |
| SWE-Bench Pro | 51.2 | 36.9 | 50.2 | Hard repository-level software tasks |
| SWE-Bench Verified | 76.0 | 66.6 | 77.2 | Verified coding tasks |
| AIME 2026 (math reasoning) | 94.7 | 89.2 | 94.1 | Math reasoning |
| τ³-Banking (agentic) | 23.5 | 15.1 | 16.7 | Agentic banking tasks |
| OSWorld-Verified | 65.9 | 58.5 | 75.6 | Desktop OS automation |
| Terminal-Bench 2.1 | 51.7 | 43.4 | 60.7 | Terminal/systems work |
Muse Glimmer leads on most agentic benchmarks, including MCP Atlas (75.5 vs. 62.5 for Qwen) and DeepSearch QA (74.6 vs. 71.1) . It also scores 94.7 on AIME 2026, leading both competitors .
Caveat: One third-party analysis notes that Glimmer trails Qwen 3.6 27B on TerminalBench 2.1 (51.7 vs. 60.7) and OSWorld-Verified (65.9 vs. 75.6), and has a tendency to refuse certain OS-level automation tasks .
Muse Glimmer was distilled from Muse Spark (Meta's larger, closed-source frontier model) using logit distillation during pre-training, followed by supervised fine-tuning and RLHF . Muse Spark itself remains closed — available only as a hosted API — making Glimmer the open-weight distillation for users who want local deployment . Meta has indicated that an open release of Muse Spark may follow .
Muse Glimmer is the clearest product yet of Mark Zuckerberg's vision of "personal superintelligence" — powerful AI running locally on personal devices, free from cloud costs, subscription fees, or data leaving the device . TechCrunch called it "the clearest picture yet" of that vision .
The release follows months of internal turmoil after Llama 4's disappointing launch in spring 2026, after which Meta appeared to abandon open-weight AI. Muse Glimmer reopens that strategy .
In June 2025, Meta invested $14.3 billion in data-labeling firm Scale AI, acquiring a ~49% stake . The deal brought Scale's 28-year-old CEO Alexandr Wang to lead Meta's new "Superintelligence" division . The investment was aimed at securing high-quality training data and talent for the Muse model family . CNBC reported in January 2026 that Wang was leading Meta's TBD AI unit building a successor to Llama, code-named Avocado .
Muse Glimmer is downloadable from Hugging Face at meta-models/Muse-Glimmer-30B under the Apache 2.0 license . It has day-0 support in:
Early community reports show that even an RTX 3090 (24 GB) can run the Q4_K_XL quantized model with DFlash and a 262K context window using about 22-23 GB of VRAM .