Meta releases Muse Glimmer 30B — an Apache-2.0 agentic multimodal model for 24GB consumer GPUs

metamuse-glimmeropen-weightsmultimodalagentic-ailocal-llm
Generated editorial diagram of Muse Glimmer 30B architecture: perception encoder, text decoder, and DFlash drafter (AI-generated, AI Newsroom)
Generated editorial image · Model/tool: PIL · Disclosure: AI-generated, not source evidence

Meta Superintelligence Labs released Muse Glimmer on August 10, 2026: a 30‑billion‑parameter multimodal agentic model under the Apache‑2.0 license. The weights, GGUF k‑quants, and a DFlash speculative‑decoding drafter are available on Hugging Face the same day. The model is explicitly distilled from the closed‑weights Muse Spark and designed to run on a single consumer GPU.

What happened

The model is hosted on Hugging Face at meta-models/Muse-Glimmer-30B. A separate GGUF repository (meta-models/Muse-Glimmer-30B-GGUF) provides quantized builds for llama.cpp.

Why it matters

A 30 B model that fits a 24/32 GB consumer GPU changes the local‑agent cost model. With 4‑bit quantization the language model shrinks to under 20 GB, leaving headroom for the perception encoder, KV cache, and the DFlash drafter inside a 24 GB envelope. That means a single RTX 4090/5090‑class card (or an Apple‑Silicon Mac with enough unified memory) can host a multimodal agent without cloud APIs.

Combined with the bundled DFlash speculative decoder, this is the first Apache‑2.0 agentic multimodal model at this scale aimed at local deployment rather than API‑only access.

Architecture in plain terms

Muse Glimmer is a dense transformer (not MoE), so every parameter activates on every token. The split is:

The architecture details are documented in the Hugging Face model card and the Meta methodology report.

Benchmarks — Meta‑reported, with caveats

Meta’s blog and the HF model card publish a comparison table against Gemma4‑31B and Qwen3.6‑27B. Headline numbers (all Meta self‑reported):

BenchmarkMuse Glimmer‑30BGemma4‑31BQwen3.6‑27B
SWE‑Bench Verified76.066.677.2
SWE‑Bench Pro51.236.950.2
MCP Atlas75.554.262.5
GAIA243.336.440.0

Meta says the model “performs strongly for its size class on several widely used LLM benchmarks” — not “all.” No independent reproduction exists at time of writing.

Practical implications

The model drops into the same harness surface as Llama‑class open weights. Day‑0 support is available in transformers, llama.cpp, and vLLM (Hugging Face shipped day‑0 integrations; Inference Endpoints too). Ollama, LM Studio, Unsloth, and SGLang are listed as “in coming days” per Meta.

To try it locally:

# Install llama.cpp (build ≥10353 required)
curl -LsSf https://llama.app/install.sh | sh

# Download the 17 GB quantized weights + perception encoder
pip install huggingface_hub
hf download meta-models/Muse-Glimmer-30B-GGUF \
    --local-dir Muse-Glimmer-30B-GGUF \
    --include "muse-glimmer-30B-kquant-17gb.gguf" \
    --include "mmproj-kquant.gguf"

# Start the server with DFlash drafter
llama serve -hf meta-models/Muse-Glimmer-30B-GGUF \
    --spec-type draft-dflash --spec-draft-n-max 15

The 4‑bit quantized envelope stays under 20 GB, fitting a 24 GB GPU with room for the KV cache and perception encoder.

Risks and caveats

What to watch

Sources

SourceURLBacks upAccessed
Meta AI Research — “Introducing Muse Glimmer”https://research.meta.ai/blog/introducing-muse-glimmer-open-agentic-modelRelease date (2026‑08‑10), Apache‑2.0 framing, “leading on several” benchmark phrasing, RTX 5090 throughput (74.9 → 233.4 tok/s with DFlash drafter), day‑0 inference surface2026‑08‑12
Meta AI Research — Muse Glimmer methodology reporthttps://research.meta.ai/static/muse-glimmer-methodologyDistillation from Muse Spark, training / post‑training methodology, safety / evaluation notes2026‑08‑12
Hugging Face model card — Muse‑Glimmer‑30Bhttps://huggingface.co/meta-models/Muse-Glimmer-30BParameter count (29.6 B / 30 B), architecture split (~2 B ViT perception + ~28 B text decoder), context length (131 K+), Apache‑2.0 license declaration, benchmark rows, DFlash drafter pairing2026‑08‑12
Hugging Face blog — Meta Muse Glimmerhttps://huggingface.co/blog/muse-glimmerIndependent confirmation of release framing, day‑0 vs “in coming days” inference surface2026‑08‑12
Hugging Face — Muse Glimmer GGUF repohttps://huggingface.co/meta-models/Muse-Glimmer-30B-GGUFGGUF k‑quant availability, quantization envelope (under 20 GB at 4‑bit)2026‑08‑12