Release guide · August 11, 2026

Meta's Muse Glimmer: a 30B open-weight agent model that runs on one GPU

Meta's Muse Glimmer is a 30B Apache 2.0 agent model distilled from Muse Spark 1.2, sized for one consumer GPU. US open weights are back.

Reading time
9 min
Checked
Aug 11, 2026
Paper-cutout illustration of a small figure carrying folders and a toolbox across an upright graphics card used as a stage
Meta's 30B agent model is built to live on your desk, not in its data centers
Bottom line

Muse Glimmer is Meta's credible return to open weights: a 30B dense agent model under Apache 2.0 that runs on a single consumer GPU. It won't dethrone frontier models, but as a free local execution tier it pressures exactly the cheap API models builders actually pay for. The catch is that the release comes wrapped in a policy play.

Meta released the weights of a brand-new AI model on August 10, 2026, reversing course just four months after it hid its leading models behind closed doors.

The model is Muse Glimmer: a 30-billion-parameter dense, multimodal model built for agentic tasks: carrying out multi-step actions with tools, not just answering prompts in a chat window. It ships on Hugging Face under the permissive Apache 2.0 license, which means anyone can download it, modify it, and run it commercially without asking Meta for anything.

Meta says Glimmer is small enough to run on a Mac or PC with a single consumer GPU. That is the whole pitch: an always-on local agent that doesn’t phone home.

What shipped

Muse Glimmer comes out of Meta Superintelligence Labs, the unit built around Chief AI Officer Alexandr Wang. The technical shape, per Meta’s announcement and early coverage:

  • 30B dense parameters (29.6B, per the model card math), distilled from Muse Spark 1.2, Meta’s closed flagship, using logit distillation, where the small model is trained to mimic the teacher’s output distributions on agent tasks.
  • A dedicated perception encoder for interleaved images, so it can read screenshots and visual state mid-task, table stakes for a browser or desktop agent.
  • Trained emphasis on multi-turn requests, precise tool calls, long multi-step plans, and recovering from failed tool calls.
  • Memory envelope aimed at workstations: full precision wants 55GB+, but a 4-bit quantized build is designed to fit 24-32GB consumer cards.
  • Day-one integrations promised across the local-inference stack: llama.cpp, MLX, ExecuTorch, Ollama, LM Studio, vLLM, and SGLang.

Alongside Glimmer, Meta committed to releasing the weights of Muse Spark 1.2 itself, notable because Spark 1.2 launched just five days earlier as a closed model with no open-source provision. And Mark Zuckerberg published a 14-page letter laying out a personal-superintelligence philosophy, a “Future Is For Everyone Fund” for data-center communities, and a new governance wrinkle: Meta’s independent board gets authority over model-release safety criteria.

The economics: where a free 30B local model fits

On this channel we measure models in cents per task, not leaderboard points. So let’s place Glimmer on the tiered workflow.

The pattern that works for most builders is: a smart, expensive model for planning and hard one-shots; a cheap model for bulk execution and orchestration. That cheap tier is currently served by API models (Kimi, DeepSeek, MiniMax) at real money per million tokens, multiplied by every loop your agent runs.

A local 30B model attacks exactly that tier. The marginal cost of a token on your own GPU is electricity. If Glimmer’s distilled quality holds up on execution tasks (tool calls, retries, structured output), it becomes the execution tier you own outright: no rate limits, no pricing changes, no data leaving the machine, no vendor deciding your prompt is against policy.

The counterargument is the hardware bill and the ops burden. A 24-32GB card is a real purchase, and a local model that fails 20% more often on tool calls can cost more in retry loops and babysitting than a cheap API ever would. Local inference wins when volume is high, tasks are repetitive, and data sensitivity is real. It loses when you need burst capacity or frontier-quality recovery from weird failures.

The skeptic’s check

Three reasons to keep your enthusiasm on a leash.

One: Meta’s recent open-weight record is mixed. Llama 4’s reception was underwhelming enough that Meta went closed in the first place. Glimmer is a distillation of a closed teacher, which means its ceiling is Spark 1.2’s agent behavior, and distillation quality on long-horizon tasks is exactly where small models quietly fall apart. The agent benchmarks in the announcement are vendor numbers. Wait for independent runs before you route production traffic.

Two: read the letter as a policy document. Zuckerberg’s 14 pages ask for reduced US restrictions on training data for open models, continued silicon export controls, protection for distillation, and shared intermediate checkpoints with the government. Futurum’s framing is the right question: is this a PC play or a policy play? The answer is obviously both. Open weights are Meta’s differentiation against OpenAI, Anthropic, and Google, and every release doubles as a lobbying artifact. That doesn’t make Glimmer bad. It means the roadmap depends on politics as much as engineering.

Three: the bar has moved. The practical benchmark for open-weight usefulness is no longer Llama; it’s the Chinese labs. Kimi, DeepSeek, and Qwen have spent a year setting the standard for what a builder can expect from weights they can download. Glimmer doesn’t get graded against Meta’s past; it gets graded against DeepSeek V4 Pro on your actual task list. If a distilled 30B can’t beat cheap API models on cost per completed task, the license doesn’t matter.

Who should pilot it, and how

Worth a pilot this month if you:

  • run high-volume, repetitive agent tasks (scraping pipelines, structured extraction, eval harnesses) where API bills are adding up;
  • have data that genuinely cannot leave the building (legal, medical, client-confidential);
  • want an always-on local agent (scheduling, file ops, watchdog loops) without a meter running;
  • already own a 24GB+ GPU or a recent high-memory Mac.

Skip it for now if your workloads are bursty, your tasks need frontier-quality long-horizon planning, or you don’t want to own inference ops.

The test protocol is the same one we always use: pick one real workflow, run it on Glimmer and on your current cheap API model, and compare cost per completed task, including retries and failures, not cost per call. Vendor benchmarks measure capability. Your task list measures value.

What to watch next

The Spark 1.2 weights drop is the bigger story. A flagship-class open release would put real pressure on the gated frontier, and on the Chinese labs’ claim to be the default open option. If Spark 1.2 lands as promised and Glimmer’s distillation holds up in independent testing, Meta is back in the open-weight game for real. If either slips, Glimmer is a press release with a Hugging Face repo attached.

We’ll bench it against the usual suspects when the quant builds settle.

Sources

Put this to work

Understand what logit distillation from a closed teacher gets you in a small open model, and where the quality floor usually shows up.

Try

Pull Muse Glimmer through Ollama or LM Studio on a 24GB card and run your most common agent task against your current cheap API model.

Prove it worked

Benchmark both on tokens per task, latency, and failure-recovery rate for one real workflow, then compute cost per completed task, not per call.

Where it can pay

Local-model deployment for data-sensitive clients is a billable skill; Apache 2.0 removes the licensing conversation.

Keep in view

  • Muse Glimmer is a 30B dense multimodal model for agentic tasks, released August 10, 2026 under Apache 2.0 on Hugging Face.
  • Distilled from the closed Muse Spark 1.2 flagship; a 4-bit quant targets 24-32GB consumer cards.
  • Integrations promised for llama.cpp, MLX, ExecuTorch, Ollama, LM Studio, vLLM, and SGLang.
  • Muse Spark 1.2's own weights are promised to follow, five days after it launched closed.
Learn the workflow: the open-weight model landscape