All posts

Muse Glimmer: Apache 2.0, 30B, and Why the EU AI Act Just Made Your Model License a First-Class Decision

Meta shipped Muse Glimmer on August 10, and the thing that matters most isn't the benchmark scores. It's the license. After more than a year of closed…

An open gate at the entrance of a server corridor with cool blue strip lighting illuminating rows of dark server racks beyond

Meta shipped Muse Glimmer on August 10, and the thing that matters most isn't the benchmark scores. It's the license. After more than a year of closed models, Meta put a 30B parameter agentic model on Hugging Face under Apache 2.0 with no strings attached. That decision landed two weeks after the EU AI Office gained actual enforcement teeth over general-purpose AI model providers. The timing isn't coincidental.

What You're Actually Getting

Muse Glimmer is a 30B model distilled from Muse Spark. The distillation kept the agentic capabilities, the multi-step reasoning, and the function-calling quality while cutting the parameter count to something you can deploy locally without a data center.

At full precision, 30B needs north of 55 GB of memory. In 4-bit K-Quant, the footprint drops to 17-20 GB. A single RTX 4090 or RTX 3090 (both 24 GB) handles it with room left for the KV cache. On a Mac with an M4 Max or M5 Max you have even more headroom.

Meta built DFlash speculative decoding into the release, using 16-token block speculation. The numbers are good. On an RTX 5090: 74.9 tokens per second baseline, 233.4 with DFlash on. M4 Max goes from 23.7 to 37.8 t/s. M5 Max from 26.6 to 50.2 t/s. For a local agent loop running dozens of tool calls per session, a 3x throughput improvement is the difference between acceptable and fast enough that you stop noticing the model.

It also ships with native support for llama.cpp, MLX, and ExecuTorch, though Meta noted those integrations were landing in the days after the initial release, so check the Hugging Face model card before setting up a production pipeline.

Where It Wins, Where It Doesn't

On MCP Atlas, DeepSearch QA, and SWE-Bench Pro, Muse Glimmer beats the comparable open-weight competition. Those are the workloads that matter for agentic use: tool-calling, multi-hop retrieval, code. It trails Qwen3.6-27B on OSWorld-Verified and TerminalBench 2.1, so if your agent stack is heavy on desktop automation or terminal control, Qwen3.6-27B at similar hardware specs is still the stronger call.

I haven't run it at production scale yet. But the SWE-Bench Pro numbers look credible enough to start routing my local coding agent experiments to Glimmer.

The License Is the Real Announcement

This is where Muse Glimmer actually separates itself from the last few years of "open" releases.

Apache 2.0. No gated download form requiring you to agree not to compete with Meta. No custom "community license" with monthly-active-user caps buried in the fine print. No restrictions on using model outputs to train other models. No representative requirement if you're serving EU users.

Llama's licensing has been a recurring headache since Llama 2. The Llama Community License isn't OSI-approved and carries restrictions that legal teams at companies with over 700M monthly active users have to review separately every single release. Qwen models use custom licenses with their own wrinkles. DeepSeek carries export-control complications for some use cases.

Apache 2.0 is clean, OSI-approved, and universally understood. One license, no surprises, no lawyer call.

What Changed on August 2

On August 2, 2026, the EU AI Office gained actual enforcement power over general-purpose AI model providers. For the twelve months before that date, GPAI obligations had been on the books since August 2025, but nobody in Brussels could compel anything. Now they can audit, request information, order corrections, restrict EU market access, and fine.

Here is what builders care about: the EU AI Act gives models released under a free and open-source license a materially different compliance burden. Under the open-source exemption, you only need to comply with copyright policy and publish a training data summary. The full GPAI compliance program, the mandatory transparency documentation, the systemic risk assessment obligations, the Code of Practice requirements: most of that doesn't apply to your Apache 2.0 model unless it presents systemic risk.

For teams that deploy models purely for internal use, this doesn't change much day-to-day. For anyone building products on top of open-weight models and serving EU customers, the model's license is now a compliance variable you can't ignore. A "community license" with custom terms doesn't get you the open-source exemption. Apache 2.0 does.

Meta's licensing decision isn't just developer-friendly. It reads like a deliberate response to the new regulatory reality that went live two weeks before they shipped.

What I'm Doing With This

Muse Glimmer slots into my stack as the local coding and tool-calling model. At 233 tokens per second with DFlash on an RTX 5090, local deployment stops feeling like a tradeoff. That's the threshold where waiting on the model disappears from the experience.

If your agents run in a context where data can't leave your machine, or you're in an EU-regulated product context where the model's compliance posture matters, or you just want to cut API costs on dev and evaluation runs, Glimmer is the right model to test this week. The VentureBeat writeup covers the strategic angle well if you want more context on Meta's positioning.

The one thing I'd check first: confirm llama.cpp and MLX support is fully landed before your next project kickoff. It was shipping after the initial release, and version pinning matters more than it used to when you're building agentic pipelines.