Open Weights ≠ Open Deployment: Qwen3.8-2.4T-A95B Lands
On August 12, 2026, a 2.4-trillion-parameter model appeared on Hugging Face as a plain set of weights: Qwen/Qwen3.8-2.4T-A95B, published at 10:24 UTC, the first open-weight release in Qwen’s Max class. Within hours it had an official NVIDIA serving guide for a GB300 NVL72 rack. That pairing — a downloadable model and a 72-GPU rack as its getting-started story — is the whole article. “Open weights” is not one thing anymore. It is three decisions stacked: what you can download, what you need to run it, and what you are allowed to resell.
The 2.4T/95B split
The name encodes the architecture. Qwen3.8-2.4T-A95B is a fine-grained mixture-of-experts model with 2.4 trillion total parameters and 95 billion activated per token: 92 layers, 512 experts with 10 routed plus one shared active per forward pass, hidden dimension 8192, with multi-token prediction trained in (model card).
That ratio is the economically interesting number, and it splits the cost of running the model into two different currencies:
- Memory and bandwidth scale with 2.4T. Every expert’s weights live on the serving cluster, and token generation streams through them. This is why the FP8 variant exists (fine-grained FP8, block size 128, “performance metrics nearly identical” per the card) and why a single GPU is not a deployment target — a 30B dense model needs ~20GB at 4-bit, this needs a datacenter.
- Compute per token scales with 95B. The routing decision — which 10 of 512 experts fire — happens at the serving layer, invisible to the caller, and determines both latency and quality on a per-token basis.
The vendor’s own benchmark table (self-reported, with harness footnotes) puts Qwen3.8-Max at 93.0 on PaperBench, 86.6 on Terminal Bench 2.1, 67.7 on SWE-bench Pro, and 92.6 on GPQA Diamond, ahead of Qwen3.7-Max on most rows and competitive with closed frontier models in the same table. Those numbers are worth reading, but they are not the systems story. The systems story is that a “frontier open model” now ships with a hardware bill of materials: NVIDIA’s GB300 NVL72 walkthrough landed within a day of the weights, because serving 2.4T parameters is the actual engineering problem the release creates.
Hybrid attention for long-horizon agents
The architecture is a hybrid: per the model card, each of 23 blocks alternates three (Gated DeltaNet → MoE) layers with one (Gated Attention → MoE) layer. Gated DeltaNet is a linear-attention layer — linear in the QK heads, with V-side heads for state — which is how the model reaches a native context of 262,144 tokens, extensible to 1,010,000, without quadratic memory blowup over the whole span.
This is an agent-infrastructure signal, not just a spec sheet. Long-horizon agentic work — the 10+ day autonomous coding runs Qwen describes in its launch post — accumulates tool traces, logs, and edit histories far beyond what a 128K window can hold. The DeltaNet layers are the mechanism that makes million-token context economically survivable at inference time. The QwenCloud product version makes this explicit: 1M context by default, built-in tools, vision input.
The behavior split: open weights are not the whole model
Here is the part most coverage will gloss over. The open-weights model is deliberately not the API model. From the model card:
Qwen3.8-2.4T-A95B is a text-only model that requires thinking mode for all interactions. Multimodal inputs are not supported, and thinking cannot be disabled.
Meanwhile Qwen3.8-Max on QwenCloud adds “vision input & non-thinking support, 1M context length by default, official built-in tools.” Wikipedia’s Qwen entry states it plainly: the open-weights model “omits certain features of the cloud model, such as image input and a non-thinking mode.”
So “open weights” is a specific product configuration — text-only, thinking always on, reasoning_effort (xhigh/medium/low) as the only dial — not the full model. Anyone building an agent harness on the self-hosted version inherits that configuration: every response begins with <think> reasoning, thinking cannot be turned off, and multimodal input is off the table. The API version and the open version are two different products sharing weights, and the open one is the constrained one.
The license that reads like a market map
The LICENSE file is a custom “Qwen3.8-Max License” (Hugging Face tags it license:other), and it contains two thresholds that matter:
- Attribution. Any commercial product or service using the model with more than 100 million monthly active users or US$20 million monthly revenue must prominently display the model name.
- A resale gate. If you or your affiliates run a “Model as a Service or AI Work Assistant business” and aggregate revenue exceeds US$50 million in any consecutive twelve months, you must obtain a separate license from Qwen before commercial use.
Read the definitions. “Model as a Service” means giving a third party access to inference or fine-tuning “via an API or a hosted endpoint” where the third party exercises meaningful control over inputs, parameters, or training data — and it explicitly excludes “the mere relaying of requests to models hosted by other third parties.” “AI Work Assistant” means an independent product “primarily designed for AI-assisted coding or office productivity,” explicitly excluding single-purpose tools and assistants embedded as a feature of a non-AI product.
That is a map of the reseller economy drawn in legalese: gateways and routers that relay to Qwen-hosted endpoints stay in the clear, self-hosted inference resold at scale needs a commercial deal, and the coding-assistant category is called out by name. For any startup building agent infrastructure on open weights, the license terms — not the benchmark table — are the first thing an operator should route through legal review.
The same week, the opposite pole
Two days earlier, Meta’s Superintelligence Labs shipped Muse Glimmer: 30B parameters, Apache 2.0, quantized to under 20GB, designed to run on a single consumer GPU or Mac, with a speculative-decoding drafter and agentic benchmarks. Apache 2.0 means no revenue thresholds, no attribution gates, no MaaS carve-outs.
Same week, two “open” releases, opposite ends of every axis that matters:
| Qwen3.8-2.4T-A95B (Aug 12) | Muse Glimmer (Aug 10) | |
|---|---|---|
| Parameters | 2.4T total / 95B active | ~30B dense |
| Deployment substrate | Rack-scale (GB300 NVL72 guide) | Single consumer GPU / Mac |
| License | Custom, revenue-gated | Apache 2.0 |
| Context | 262K native → 1M | Local-device class |
| Positioning | Frontier self-host + resale carve-outs | Always-on local agents |
The open ecosystem is bifurcating by deployment substrate. One pole is “open weights you can actually run” — small, permissive, local. The other is “open weights you can rent a rack for” — frontier-scale, permissive-looking, license-gated at the point where it becomes a business. Both are called open weights. They are not the same product class, and conflating them is how a team ends up building a business on a license that has their revenue threshold already written into it.
What operators should take from this
- Cost-model the 2.4T/95B split separately. Compute scales with activated parameters; memory, bandwidth, and cluster footprint scale with total parameters. A “95B active” headline hides a multi-terabyte weight set and a KV cache at 262K+ context.
- Treat the open-weights configuration as a product decision. Text-only, thinking-mandatory, no built-in tools — if your agent pipeline needs vision, non-thinking fast paths, or tool schemas, the API version and the open version are not interchangeable, and the gap is a deliberate product boundary.
- Read the license before the README. The Qwen3.8-Max License is short and specific: research and internal use are open; resale at scale is a sales conversation. Know which side of the thresholds you sit on before you build the reseller.
- Watch the substrate bifurcation. Muse Glimmer and Qwen3.8-2.4T-A95B are the same trend at two different scales: open-weight releases are now targeted at a specific deployment tier, with the license, quantization, and serving guides all tuned to that tier. Choosing a model is increasingly choosing an infrastructure class.
The uncomfortable truth for the “open frontier” narrative is that the most capable open-weight model ever released shipped with a hardware bill of materials and a business-development clause. Weights are the easy part to open. The rack, the bandwidth, and the right to resell are the parts that stayed closed.
Sources
- Hugging Face: Qwen/Qwen3.8-2.4T-A95B model card
- Hugging Face: Qwen/Qwen3.8-2.4T-A95B-FP8 model card
- Hugging Face: Qwen3.8-Max License (LICENSE file)
- Qwen: Qwen3.8-Max — A New Bar for Coding and Cowork (Aug 2, 2026)
- NVIDIA Technical Blog: Serve Qwen3.8-2.4T-A95B with Configurable Reasoning on NVIDIA GB300 NVL72 (Aug 12, 2026)
- Meta AI Research: Introducing Muse Glimmer — An Open Agentic Model That Runs on Your Device (Aug 10, 2026)
- Wikipedia: Qwen (release date cross-reference, Aug 12, 2026)