Qwen · 2026-08-26 · seismic
Qwen3.8-Flash-Next — open 125B MoE with 6B active previews Qwen4
Qwen3.8-Flash-Next is an open-weights 125B mixture-of-experts model that activates only 6B parameters per token and previews the Qwen4 architecture. It scores 62.5 on SWE-bench Pro, against 53.4 for Claude-Opus-4.6 (Max).

Qwen3.8-Flash-Next ships open weights for the first public preview of the Qwen4 architecture.
Quick facts
| Maker | Qwen (Alibaba Group) |
|---|---|
| Parameters | 125B total, 6B active per token |
| Extra weights | 51B n-gram embedding + 4B MTP |
| Experts | 512, with 10 routed + 1 shared per token |
| Context window | 262,144 native, up to 1,000,000 |
| License | qwen-community-1.0 |
| Availability | Open weights on Hugging Face and ModelScope |
Benchmarks
| Qwen3.8-Flash-Next | 62.5% | |
|---|---|---|
| Qwen3.8-27B | 61.7% | |
| DeepSeek-V4-Flash-0731 | 56% | |
| Qwen3.7-Plus | 55.8% | |
| Claude-Opus-4.6 (Max) | 53.4% |
| Qwen3.8-Flash-Next | 58.7% | |
|---|---|---|
| DeepSeek-V4-Flash-0731 | 54.4% | |
| Qwen3.8-27B | 42.2% | |
| Qwen3.7-Plus | 16.5% |
| Qwen3.8-Flash-Next | 81% | |
|---|---|---|
| Claude-Opus-4.6 (Max) | 77.5% | |
| Qwen3.7-Plus | 75.8% | |
| Qwen3.8-27B | 73.8% |
| Qwen3.8-Flash-Next | 91.7% | |
|---|---|---|
| Claude-Opus-4.6 (Max) | 91.3% | |
| DeepSeek-V4-Flash-0731 | 90.8% | |
| Qwen3.7-Plus | 90.3% | |
| Qwen3.8-27B | 89.2% |
What is it?
The countdown ended and the weights are live: Qwen3.8-Flash-Next is now downloadable from Hugging Face and ModelScope under the qwen-community-1.0 license. The model has 125B total parameters but activates 6B per token, plus 51B of n-gram embedding parameters and a 4B multi-token-prediction head. Qwen ships it as an early look at the Qwen4 architecture so the community can prepare for the full Qwen4 family.
How does it work?
The 48 layers mix two attention types: Gated DeltaNet for cheap linear recall and Qwen Sparse Attention, which reads a 2,048-token budget in 512-token blocks instead of the whole sequence. Routing picks 10 of 512 experts plus 1 shared expert per token, which is how Qwen3.8-Flash-Next keeps 125B of weights but 6B of compute. A 20-million-entry bigram and trigram embedding sits at layer 2, and Gated Residual mixes 4 branches per layer.
Why does it matter?
A 6B-active model that posts 62.5 on SWE-bench Pro moves frontier coding scores onto hardware a small team can actually afford to serve. Qwen3.8-Flash-Next also beats Claude-Opus-4.6 (Max) on SWE-bench Multilingual, 81.0 to 77.5, and reads text, images and video through one API. Day-one recipes exist for vLLM, SGLang and TokenSpeed, so serving it does not wait on framework support.
Who is it for?
teams self-hosting coding and agent models
Frequently asked questions
- Is Qwen3.8-Flash-Next open source?
- Qwen3.8-Flash-Next ships open weights under the qwen-community-1.0 license, published on both Hugging Face and ModelScope in Safetensors format. That is Qwen's own community license rather than Apache-2.0 or MIT, so read the license file before commercial deployment. The GitHub repo QwenLM/Qwen3.8-Flash-Next carries the technical report alongside the weights.
- How does Qwen3.8-Flash-Next compare to Qwen3.8-27B?
- Qwen3.8-Flash-Next leads its 27B sibling on every published benchmark, and the gap is widest on agentic work: 58.7 versus 42.2 on DeepSWE 1.1, and 81.0 versus 73.8 on SWE-bench Multilingual. On SWE-bench Pro the two are close, 62.5 against 61.7. Flash-Next activates 6B parameters per token, so it is cheaper to run despite holding 125B weights.
- Can I run Qwen3.8-Flash-Next on my own hardware?
- Yes. Qwen published day-one serving recipes for vLLM, SGLang and TokenSpeed, and the model speaks the OpenAI chat-completions API, so existing client code works by pointing at a local endpoint. Note that all 125B parameters plus the 51B n-gram embedding must fit in memory even though only 6B activate per token. Qwen Cloud offers a managed API for teams that would rather not host.
- Does Qwen3.8-Flash-Next accept images and video?
- Qwen3.8-Flash-Next takes text, images and video as input through the standard image_url and video_url message parts. Its vision scores include 64.4 pass@3 on ClawEval-MM for multimodal tool use, 84.5 on AndroidWorld for mobile control and 90.6 on MathVision. Computer use is the weak spot: 19.4 on OSWorld 2.0, level with Qwen3.8-27B.
- What does this tell us about Qwen4?
- Qwen describes Qwen3.8-Flash-Next as a preview of the Qwen4 architecture, released early so developers can prepare for the full Qwen4 family. The architectural bets on show are hybrid Gated DeltaNet plus Qwen Sparse Attention, very sparse routing at 10 of 512 experts, and a 20-million-entry n-gram embedding at layer 2. Qwen has not announced a Qwen4 date.
- How long a prompt does Qwen3.8-Flash-Next handle?
- Qwen3.8-Flash-Next handles 262,144 tokens natively and stretches to 1,000,000 tokens with RoPE scaling. Qwen Sparse Attention is what makes the long end affordable: it reads a 2,048-token budget in 512-token blocks rather than attending across the whole sequence. On CoWorkBench, a long-horizon office benchmark, it scores 73.9 against 70.7 for Qwen3.8-27B.
Try it
Model ID: Qwen/Qwen3.8-Flash-Next — SGLang cookbook at docs.sglang.io/cookbook/autoregressive/Qwen/Qwen3.8-Flash-Next