THE VERDICT, UP FRONT
● Run Qwen 3.8-27B if you want a coding or computer-use agent. It wins SWE-Bench Pro 61.7 to 53.4 and OSWorld-Verified 84.3.
● Run Muse Glimmer 30B if you need the widest language coverage and a simpler memory profile. 131K context, 100+ languages, no YaRN configuration to get wrong.
● Run neither if you have under 24GB VRAM and need long context. The KV cache, not the weights, is what will break you.
● Overall pick: Qwen 3.8-27B — it wins every head-to-head benchmark that exists, with the caveat that Qwen ran all of them.
The head-to-head table
| Benchmark |
Qwen 3.8-27B |
Muse Glimmer 30B |
Winner |
| SWE-Bench Pro |
61.7 |
53.4 |
Qwen |
| QwenSWEBench |
79.0 |
63.8 |
Qwen (in-house test) |
| LiveCodeBench v6 |
90.3 |
88.8 |
Qwen (narrow) |
| IFBench |
79.5 |
77.0 |
Qwen (narrow) |
| GPQA Diamond |
89.2 |
83.5 |
Qwen |
| Native context |
262,144 (1M via YaRN) |
131,072 |
Qwen |
| Parameters |
27.78B dense |
30B dense |
Qwen (smaller) |
| License |
Apache 2.0 |
Apache 2.0 |
Tie |
| NL2Repo-Bench, DeepSWE 1.1, JobBench |
42.3 / 42.2 / 33.4 |
Not published |
No comparison possible |
That last row is the honest limit of this comparison. Meta did not publish Muse Glimmer results on several of the harder sets Alibaba ran. On every benchmark where both models were actually tested, Qwen 3.8-27B comes out ahead. On four significant benchmarks, there is nothing to compare against.
Qwen 3.8-27B
Verdict: the best agentic coding model you can run on one consumer GPU today.
Released August 14, 2026 by Alibaba's Tongyi Lab. ModelScope records the release at 15:00 UTC, with the Hugging Face card following a second later. The checkpoint is 27.78 billion parameters, dense, natively multimodal across text, images and video.
The architecture is the interesting non-story: the published configuration is identical to Qwen3.6-27B. There is no new layer layout. The gains come entirely from new weights and post-training.
Generation-over-generation gains versus Qwen3.6-27B:
- SWE-Bench Pro: 53.5 to 61.7
- Terminal-Bench 2.1: 63.4 to 73.0
- DeepSWE 1.1: 13.3 to 42.2, roughly a tripling
- OSWorld-Verified: 63.9 to 84.3
- QwenSWEBench: 49.3 to 79.0
- CoWorkBench, long-horizon office work: 61.0 to 70.7
- Agent's Last Exam pass@1: 10.6 to 20.4
Standout feature: reasoning effort control. Thinking is on by default and adjustable across xhigh, medium and low, or disabled entirely. On a local model where every thinking token costs you wall-clock time on your own hardware, that dial matters more than it does on a hosted API.
Honest limitation: the benchmark provenance. Qwen ran everything. QwenSWEBench and CoWorkBench are in-house evaluations. The SWE-Bench Pro comparison against Opus imports Anthropic's published figure rather than rerunning Opus in Qwen's harness with temperature 1.0 and a 256K window. That is not necessarily unfair, but it is not an apples-to-apples run either.
Pricing if you do not self-host: 0.45 dollars per million input and 3.20 dollars per million output on OpenRouter.
Best for: coding agents, terminal automation, computer-use tasks, long-document multimodal analysis.
Meta Muse Glimmer 30B
Verdict: still a good model, now the second-best option in its own weight class.
Released earlier in August under Apache 2.0, a 30B dense multimodal model tuned for local agentic tool use, coding, and LLM-as-judge work, with a 131K context and support for more than 100 languages. It runs on a 24GB GPU.
Standout feature: language coverage. 100+ languages is a wider net than Qwen advertises, and for teams working across Southeast Asian, African or Eastern European languages that is not a rounding error. It is the one axis where Muse Glimmer has a defensible claim.
Honest limitation: it loses every published head-to-head, and the 131K context is half of Qwen's native window. For agentic work over a large repository, that gap shows up as more retrieval plumbing on your side.
Best for: multilingual local deployment, LLM-as-judge pipelines, teams that want a simpler context configuration than YaRN extension.
The hardware reality nobody puts in the launch table
Both models are marketed as running on a single 24GB card. Both do. That is also where the marketing stops being useful.
THE KV CACHE PROBLEM
Weights are the floor, not the total. KV cache scales with context length and with concurrency. A 27B model serving 262K-token requests to several users can double its memory footprint over the weight size alone. Loading the model and serving your workload are different budgets.
Practical guidance from community reports: Qwen 3.8-27B runs on RTX 3090s, dual RTX 5080s, and 16GB cards at aggressive quantization. Ollama lists roughly 18GB packages for standard and MLX variants. Official FP8 weights target server runtimes rather than desktops.
Also worth stating plainly: quantization does not preserve agent behaviour uniformly. A model that benchmarks at 61.7 in FP8 does not necessarily hold that score at 4-bit on your laptop. Nobody has published that curve yet.
Decision framework
| If you are... |
Use |
| Building a coding agent that edits real repos |
Qwen 3.8-27B, FP8 on a server GPU |
| Automating desktop or browser tasks |
Qwen 3.8-27B (OSWorld-Verified 84.3) |
| Working across many non-English languages |
Muse Glimmer 30B |
| Handling data that cannot leave your building |
Either, Apache 2.0 removes the legal question |
| Doing hard scientific reasoning |
Neither, stay on a frontier hosted model |
| Just testing before committing hardware |
Qwen on OpenRouter at 0.45 / 3.20 per million |
The workflow stack that actually works
Neither model replaces a frontier API outright. The setup getting the most traction right now is a three-tier split:
- Qwen 3.8-27B local for the high-volume loop: reading files, running tests, iterating on diffs. This is where token cost compounds and where 61.7 on SWE-Bench Pro is enough.
- A frontier model on API for the hard calls: architecture decisions, ambiguous requirements, anything where GPQA-style reasoning matters and Qwen falls behind.
- Muse Glimmer as the judge layer if you are scoring outputs, since running your evaluator on the same model that produced the output is a known failure mode.
The economic argument for tier one is straightforward. If you are burning 50 million input tokens a month on agentic coding loops, moving that from a 2 dollar per million hosted model to local inference on hardware you already own is the difference between 100 dollars a month and electricity.
FAQ
Is Qwen 3.8-27B really better than Claude Opus 4.6 Max?
On SWE-Bench Pro (61.7 vs 53.4), QwenSWEBench (79.0 vs 63.8), LiveCodeBench v6 (90.3 vs 88.8), IFBench (79.5 vs 62.5), OSWorld and AndroidWorld, per Qwen's published table, yes. Opus 4.6 Max stays ahead on Terminal-Bench 2.1 (78.2 vs 73.0), NL2Repo-Bench (47.6 vs 42.3), GPQA Diamond and HLE. It is a coding-agent win, not a general one.
Can I run either model on 16GB VRAM?
Community reports say yes for Qwen 3.8-27B at aggressive quantization, but with reduced context. Whether the agent behaviour survives that quantization has not been independently measured. If your workload involves long-horizon agent runs, budget 24GB minimum and treat 64GB as the comfortable target.
What does YaRN extension to 1M tokens actually cost?
Memory and quality. YaRN extends the usable window beyond the 262K native range, but KV cache grows linearly with context, and long-context quality degradation is real even when the model technically accepts the input. Most local deployments should stay inside native context.
Which is better for non-coding work?
Qwen leads CoWorkBench at 70.7, which targets long-running office tasks across computer science, finance, law and medicine. Muse Glimmer has no published CoWorkBench score, so the comparison is one-sided rather than settled.
Should I switch production workloads to Qwen 3.8-27B today?
Not on vendor benchmarks alone. Independent replication is still pending on every headline number. Run your own eval against the specific tasks you care about before moving anything that matters. The Apache 2.0 license means there is no cost to testing beyond your time.
Are these models free for commercial use?
Yes. Both ship under Apache 2.0, which permits commercial use, modification and redistribution. That is the meaningful difference between this pair and most frontier alternatives.