Meta Muse Glimmer: Open-Weights 30B Local Agentic Model
Meta open-sourced Muse Glimmer, a 30B multimodal agentic model distilled from Muse Spark, runnable locally under Apache 2.0.
Meta open-sourced Muse Glimmer, a 30B multimodal agentic model distilled from Muse Spark, runnable locally under Apache 2.0.
Introduction
Meta Superintelligence Labs open-sourced Muse Glimmer on August 10, 2026, a 30-billion-parameter multimodal agentic model released under the Apache 2.0 license. The weights are published on Hugging Face, with GGUF quantized versions such as unsloth/Muse-Glimmer-30B-GGUF already available for local inference.
Glimmer is distilled from Meta's closed Muse Spark model, but it is not simply a smaller version of Spark's chat-reasoning interface. Meta built it specifically to run as an always-on local agent: a model that can call tools, read files and screenshots, write and check code, and act as a judge for other model outputs, all while running fully offline on a user's own machine. Meta and outside coverage frame Glimmer as a concrete, shippable expression of Mark Zuckerberg's "personal superintelligence" vision — a private, always-available assistant that lives on the device rather than in the cloud.
This matters because it marks Meta's first open-weights release in the Muse family. Muse Spark (April 2026) is a closed proprietary reasoning model, Muse Image (July 2026) is a closed image generator, and Muse Code (August 2026) is a closed terminal coding agent built on Muse Spark 1.2. Glimmer stands apart from all three: it is the one Muse product anyone can download, inspect, fine-tune, and run without an API key.
Feature Overview
Glimmer's architecture pairs a 2-billion-parameter Perception Encoder — a ViT-style vision encoder — with a 28-billion-parameter text decoder spread across 52 layers, for 30B parameters in total. The text decoder uses a hybrid attention pattern: three alternating sliding-window attention layers with a 2,048-token window, followed by one full-attention layer, repeating through the stack. This design keeps most computation local to a limited window while periodically letting a full-attention layer connect distant tokens, which helps control memory and compute cost at long context lengths.
Attention itself runs on gated Grouped-Query Attention with a 16:1 query-to-key head ratio, combined with Q-K normalization and query scaling. In practice, this reduces the size of the key-value cache relative to a standard multi-head setup, which is one of the main levers for making long-context inference cheaper on limited hardware.
Glimmer supports a context window of more than 131,000 tokens and more than 100 languages. Meta reports the following benchmark results for the model:
| Benchmark | Muse Glimmer | Competing models |
|---|---|---|
| MCP Atlas | 75.5 | 54.2–62.5 |
| SWE-Bench Pro | 51.2 | 36.9–50.2 |
| SWE-Bench Verified | 76.0 | — |
| DeepSearch QA | 74.6 | — |
| AIME 2026 | 94.7% | — |
| Charxiv Reasoning | 78.8 | — |
These are Meta's own reported figures, published alongside the release. On MCP Atlas and SWE-Bench Pro, where Meta lists a comparison range, Glimmer's scores sit above the top of the competing-model range Meta cites.
Usability Analysis
Glimmer targets developers and power users who want an agent that runs without a network connection or a subscription. Meta positions it for tool-calling workflows, coding assistance, handling local files and screenshots, and serving as an LLM-as-a-judge component inside larger local pipelines.
The practical entry point is a quantized GGUF build. Meta and community packagers, including Unsloth, have shrunk Glimmer to under 20GB, which fits comfortably inside a 24GB consumer GPU such as an RTX 4090. For a 30B-parameter multimodal agentic model, that is a genuinely small footprint, and it is the basis for headlines describing Glimmer as a model that runs on a single consumer GPU.
That claim needs a precise caveat. Meta's own stated minimum for running the unquantized model is one 80GB H100 GPU. LoRA fine-tuning requires the same single 80GB H100, and full fine-tuning requires eight 80GB GPUs distributed across a cluster. So the "runs on one consumer GPU" story is true specifically for the quantized, compressed checkpoint — not for the full-precision model Meta trained and evaluated. Users who want to fine-tune Glimmer, rather than just run inference on the pre-quantized weights, are back in data-center territory. This is a meaningful distinction that gets blurred in some of the marketing framing around the release.
For an evaluation-then-deploy workflow — download the GGUF build, run it locally with something like llama.cpp, and use it as an offline agent — the experience should be close to what Meta advertises. For anyone planning to adapt the model to their own data, the hardware bar returns to enterprise-scale.
Pros and Cons
Pros
- Genuinely open-weights release under Apache 2.0, distinct from every other closed Muse-family product Meta has shipped in 2026
- Strong reported results on Meta's cited benchmarks, including MCP Atlas and SWE-Bench Pro, where Glimmer's scores exceed the competing-model range Meta lists
- Quantized GGUF builds under 20GB make real local, offline inference practical on a single 24GB consumer GPU
- Long 131K+ token context window and 100+ language support broaden the range of use cases
- Hybrid sliding-window/full-attention design with gated GQA is a concrete architectural approach to controlling long-context inference cost
Cons
- The "runs on a consumer GPU" claim applies only to quantized versions; Meta's own stated minimum for unquantized inference is a single 80GB H100, and fine-tuning (LoRA or full) requires H100-class or multi-GPU (8x80GB) hardware
- Benchmark numbers are Meta's own self-reported figures from the launch materials, without independent third-party leaderboard verification cited alongside them
- As a distillation of the closed Muse Spark model, Glimmer's ceiling is bounded by whatever Spark itself achieves, and any of Spark's limitations can carry into the smaller model
- Reaching the sub-20GB footprint that makes local deployment practical requires quantization, which typically trades away some accuracy relative to the full-precision checkpoint
Outlook
Glimmer's release is notable less for any single benchmark number and more for what it signals about Meta's product strategy. After a year of positioning its flagship Muse models as closed and proprietary — Spark for reasoning, Image for image generation, Code for terminal coding — Meta has now shipped an open-weights sibling aimed squarely at local, offline agentic use. That gives developers and researchers a legally unencumbered, inspectable model that can be fine-tuned, quantized further, or embedded into local tooling without going through Meta's API.
Whether Glimmer becomes a meaningful building block for the open-source ecosystem will depend on how the community's own benchmarking holds up against Meta's launch numbers, and on how much capability quantized builds retain compared with the full-precision model. If independent testing confirms Meta's reported scores and the GGUF builds prove reliable in day-to-day agentic use, Glimmer could become a reference point for locally deployed multimodal agents in the same way earlier open Llama releases became reference points for open chat models.
Conclusion
Muse Glimmer is Meta's first open-weights entry in the Muse family, and the first one built explicitly for local, offline agentic use rather than as a cloud-hosted product. Its hybrid attention design, competitive reported benchmarks, and sub-20GB quantized footprint make it a credible option for developers who want a capable multimodal agent running entirely on their own hardware. The catch is that the consumer-GPU story applies to the quantized model, not the full-precision one Meta trained — a distinction worth keeping in mind before assuming a laptop or single gaming GPU can do everything the launch materials imply. It is best suited to developers and researchers experimenting with local agentic workflows, less so to teams planning to fine-tune the model themselves without data-center-grade GPUs.
Editor's Verdict
Meta Muse Glimmer: Open-Weights 30B Local Agentic Model earns a solid recommendation within the Llama space.
The strongest case for paying attention: genuinely open-weights release under Apache 2.0, distinct from every other closed Muse-family product Meta has shipped in 2026. That alone raises the bar for what readers should expect in this space. Reinforcing that, strong reported results on Meta's cited benchmarks, including MCP Atlas and SWE-Bench Pro, where Glimmer's scores exceed the competing-model range Meta lists — practical value rather than just headline appeal. The broader signal worth registering is straightforward: Muse Glimmer is Meta's first open-weights release in the Muse family, distilled from the closed proprietary Muse Spark model. On the other side of the ledger, one constraint is real rather than a marketing footnote: the 'runs on a consumer GPU' claim applies only to quantized versions; Meta's own stated minimum for unquantized inference is a single 80GB H100, and fine-tuning requires H100-class or multi-GPU (8x80GB) hardware. It should factor into any serious decision. Layered on top of that, benchmark numbers are Meta's own self-reported figures from launch materials, without independent third-party leaderboard verification cited alongside them — which narrows the set of teams for whom this is an obvious yes.
For on-premises AI teams, open-weight enthusiasts, and organizations needing full model control, this is a serious evaluation candidate, not just a curiosity to bookmark. For everyone else, the safer posture is to monitor coverage and revisit once the use cases that matter to your team are demonstrated in the wild.
Pros
- Genuinely open-weights release under Apache 2.0, distinct from every other closed Muse-family product Meta has shipped in 2026
- Strong reported results on Meta's cited benchmarks, including MCP Atlas and SWE-Bench Pro, where Glimmer's scores exceed the competing-model range Meta lists
- Quantized GGUF builds under 20GB make real local, offline inference practical on a single 24GB consumer GPU
- Long 131K+ token context window and support for 100+ languages broaden the range of practical use cases
- Hybrid sliding-window/full-attention design with gated GQA is a concrete engineering approach to long-context efficiency
Cons
- The 'runs on a consumer GPU' claim applies only to quantized versions; Meta's own stated minimum for unquantized inference is a single 80GB H100, and fine-tuning requires H100-class or multi-GPU (8x80GB) hardware
- Benchmark numbers are Meta's own self-reported figures from launch materials, without independent third-party leaderboard verification cited alongside them
- As a distillation of the closed Muse Spark model, Glimmer's capability ceiling is bounded by Spark's own performance and limitations
- Reaching the sub-20GB footprint needed for local deployment requires quantization, which typically trades away some accuracy versus the full-precision checkpoint
References
Comments0
Key Features
30B-parameter open-weights (Apache 2.0) multimodal agentic model: 2B vision encoder + 28B text decoder (52 layers), hybrid sliding-window/full-attention design, gated GQA at 16:1 ratio, 131K+ token context, 100+ languages, distilled from closed Muse Spark, quantized GGUF builds under 20GB for single consumer-GPU inference.
Key Insights
- Muse Glimmer is Meta's first open-weights release in the Muse family, distilled from the closed proprietary Muse Spark model
- The hybrid pattern of three sliding-window attention layers (2,048-token window) followed by one full-attention layer, repeated through 52 layers, is a concrete architectural approach to controlling long-context inference cost
- Gated Grouped-Query Attention at a 16:1 query-to-key head ratio, combined with Q-K normalization and query scaling, shrinks the key-value cache needed for long-context inference
- On Meta's own reported benchmarks, Glimmer scores above the competing-model range on MCP Atlas (75.5 vs. 54.2-62.5) and SWE-Bench Pro (51.2 vs. 36.9-50.2)
- The widely repeated 'runs on a single consumer GPU' claim applies specifically to quantized GGUF builds under 20GB; Meta's own stated minimum for unquantized inference is one 80GB H100 GPU
- Fine-tuning Glimmer, via LoRA or full fine-tuning, requires H100-class or multi-GPU (8x80GB) hardware, not consumer-grade equipment
- Glimmer is clearly differentiated within the Muse family: unlike closed Spark (reasoning), Image (image generation), and Code (terminal coding agent), Glimmer is open-weights and built for local, offline agentic use
- The release is framed by Meta and press coverage as a concrete instance of Mark Zuckerberg's 'personal superintelligence' vision of an always-on, private, local device agent
Was this review helpful?
Share
Related AI Reviews
Meta Muse Image Launches: MSL's First In-House Image AI
Meta launched Muse Image, Meta Superintelligence Labs' first fully in-house image generator, rolling out across Meta AI, Instagram, and WhatsApp.
Meta Launches Llama 4 Scout and Maverick: First Open-Weight Multimodal MoE Models
Meta releases Llama 4 Scout (17B active, 16 experts, 10M context) and Maverick (17B active, 128 experts), its first natively multimodal mixture-of-experts models.
Meta's Llama Models Surface on Dark Web Forums: What the Alleged Leak Means for AI Security
Cybersecurity intelligence flags unauthorized distribution of Meta's Llama model variants on a prominent hacker forum, raising concerns about proprietary fine-tuning data and non-public model weights.
