Qwen3.8-2.4T-A95B

Updated
21.08.2026
Thinking
Tools
Reasoning
Code
Multilingual
Web

Qwen3.8-2.4T-A95B is the downloadable version of Qwen 3.8 Max: a 2.4T MoE with 95B active parameters and a 256K context.

At a glance

  • License: Qwen3.8-Max license
  • Parameters: 2.4T total, 95B active per token
  • Context length: 262,144 tokens
  • Modalities: text in, text out
  • Minimum hardware: about 400 GB of memory at 1-bit, a multi-GPU node in practice

Overview

Qwen3.8-2.4T-A95B is the downloadable version of Qwen 3.8 Max, the flagship of Alibaba's Qwen 3.8 release. Alibaba announced the Max on August 3, 2026 and published these weights on August 12. It is a sparse mixture of experts: 2.4 trillion parameters in total, of which 95 billion are active for any given token.

SpecificationQwen3.8-2.4T-A95B
Total parameters2.4T
Active parameters95B per token, 10 of 512 experts
ArchitectureSparse MoE, hybrid attention (Gated DeltaNet + Gated Attention)
Layers92
Context window262,144 tokens
ModalitiesText input, text output
ReasoningReasons on every request
Release dateAugust 12, 2026
LicenseQwen3.8-Max license

Sparse routing is what makes a model this size servable at all: only 10 of the 512 experts run per token, so the compute per token stays near a 95B model while the weights still have to sit in memory. That memory requirement is the reason this one belongs on a multi-GPU node rather than a workstation. The dense Qwen3.8-27B from the same release is the model to run at home.

Qwen3.8-2.4T-A95B benchmarks

The numbers Alibaba publishes on this repository are scored on Qwen 3.8 Max, the served version of these weights, against its predecessor and three frontier API models:

Qwen3.8-MaxQwen3.7-MaxClaude Opus 4.8Fable 5GPT 5.6 Sol (max)
Terminal Bench 2.1
Agentic terminal-use tasks
86.674.584.684.688.8
SWE-bench Pro
Real-world software engineering, harder split
67.760.669.280.064.6
DeepSWE 1.1
Agentic coding
56.621.659.070.073.0
GPQA Diamond
Expert-level science questions
92.692.492.092.694.1
Humanity's Last Exam
Expert-level questions across every domain
43.641.445.753.347.2
Toolathlon Verified
Long-horizon tool use
72.549.776.277.974.9
WideSearch
Broad web research
81.975.272.981.2-
IFBench
Instruction following
82.879.162.263.572.7

The Max leads its predecessor on every row here, and it takes instruction following and broad web research outright. On agentic coding it sits behind Fable 5 and GPT 5.6 Sol, which is the gap Alibaba is closing with each release rather than one it claims to have closed.

Qwen3.8-2.4T-A95B hardware requirements

The system requirement to check is memory, and at this size it is measured in hundreds of gigabytes. There is no consumer configuration that runs these weights. The smallest GGUF build published for the model is still 397 GB:

MemoryBuild to pickFile size
400 GBUD-Q1_0397 GB
512 GBUD-IQ1_S508 GB
768 GBUD-IQ2_XS731 GB
1 TB and upUD-IQ3_XXS956 GB

This is the same class of hardware as Kimi K3: a rented multi-GPU node or a very large unified-memory machine, served through vLLM or SGLang. If you want Qwen 3.8 on your own machine, run the 27B instead.

How to run Qwen 3.8 in Atomic Chat

Atomic Chat is a free local app for macOS, Windows and Linux. It includes a Hugging Face model browser and a built-in chat, with no manual llama.cpp build required.

  1. Download Atomic Chat for your platform and open it.
  2. Search for Qwen3.8 in the model browser and open Download Options.
  3. Pick the build that fits the memory you have, then start a chat.

The full walkthrough, with the quant table and the llama.cpp commands, is in our guide to running Qwen 3.8 locally.

Atomic Chat downloads and runs whatever fits your machine, which for most people means the 27B. See the full lineup of Qwen models to run locally.

License

The weights ship under Alibaba's own Qwen3.8-Max license rather than Apache 2.0, which is what the rest of the Qwen line uses. Read the license file on the model repository before any commercial deployment, because the terms are set by Alibaba and not by a standard open-source licence.

Get the weights from Hugging Face

huggingface-cli download Qwen/Qwen3.8-2.4T-A95B
# 1-bit GGUF, still 397 GB on disk:
huggingface-cli download unsloth/Qwen3.8-2.4T-A95B-GGUF --include "UD-Q1_0/*"
curl http://localhost:8000/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "Qwen3.8-2.4T-A95B",
    "messages": [{"role": "user", "content": "Plan a migration from Postgres 14 to 17."}]
  }'
# 2.4T weights need a multi-GPU node; serve them with vLLM rather than plain transformers.
from openai import OpenAI

client = OpenAI(base_url="http://localhost:8000/v1", api_key="local")
res = client.chat.completions.create(
    model="Qwen3.8-2.4T-A95B",
    messages=[{"role": "user", "content": "Explain MoE routing to a backend engineer."}],
)
print(res.choices[0].message.content)
import OpenAI from "openai";

const client = new OpenAI({ baseURL: "http://localhost:8000/v1", apiKey: "local" });
const res = await client.chat.completions.create({
  model: "Qwen3.8-2.4T-A95B",
  messages: [{ role: "user", content: "Draft a release checklist for a Rust CLI." }],
});
console.log(res.choices[0].message.content);
Desktop
macOS
(M1 or better)
Download
Windows
(x64)
Download
Linux
(x86_64)
Download

Frequently asked questions

It is the open-weight version of Qwen 3.8 Max, Alibaba's flagship model in the Qwen 3.8 release. The architecture is a sparse mixture of experts with 2.4 trillion total parameters and 95 billion active per token, and a 262,144-token context window.

No. The smallest published GGUF build is 397 GB, so the model needs a multi-GPU server or a very large unified-memory machine. For local use on a desktop or laptop, run Qwen3.8-27B from the same release.

Qwen 3.8 Max is the model served through the Alibaba Cloud API. Qwen3.8-2.4T-A95B is the same model published as downloadable weights, so the benchmark numbers on the repository are scored on Max.

The weights are free to download, but they are not Apache 2.0. They ship under Alibaba's Qwen3.8-Max license, so check the license file for what it permits before deploying it commercially.

The config sets 262,144 tokens natively. Holding that much context on a model this size takes a large KV cache on top of the weights, so plan memory for both.