---
source: 'https://howaiworks.ai/blog/alibaba-qwen-3-8-max-open-weights-license'
section: blog
title: Qwen3.8-Max's Open Weights Are Not the Model You Benchmarked
description: >-
  Alibaba opened its 2.4T flagship — but the download is text-only,
  thinking-required and 262K context, under a licence that is not Apache 2.0.
date: '2026-09-06'
author: HowAIWorks Team
tags:
  - Alibaba
  - Qwen
  - Open Weights
  - Open Source
  - MoE
  - AI Models
  - Multimodal AI
  - Long Context
  - Inference
readingTime: 8 minutes
isReviewed: false
---

# Qwen3.8-Max's Open Weights Are Not the Model You Benchmarked

> Alibaba opened its 2.4T flagship — but the download is text-only, thinking-required and 262K context, under a licence that is not Apache 2.0.

## Introduction

On August 12, 2026 Alibaba published the weights of its flagship model. `Qwen/Qwen3.8-2.4T-A95B` and an FP8 build went up on Hugging Face nine days after [Qwen3.8-Max](https://howaiworks.ai/models/qwen) reached general availability, and the coverage wrote itself: the 2.4-trillion-parameter frontier model is open, download it.

Almost every write-up stopped there. It should not have, because **the open checkpoint is not the model the API serves**, and Alibaba says so on the model card itself:

> Qwen3.8-Max is the official version based on Qwen3.8-2.4T-A95B with more features, such as vision input & non-thinking support, 1M context length by default.

Read that sentence backwards and it is a list of everything the download does not have. A team that benchmarked `qwen3.8-max` through Model Studio, liked the numbers, and then pulled the weights to self-host is not deploying the system it evaluated. That gap, and the licence sitting on top of it, is what this post is about.

## What the two artifacts actually are

There are two things called Qwen3.8-Max in circulation, and they differ on three axes that matter for almost any real deployment.

| | Hosted `qwen3.8-max` | Open `Qwen3.8-2.4T-A95B` |
|---|---|---|
| Input modalities | Text, image, video | Text only |
| Thinking mode | Selectable; non-thinking path available | Required; cannot be disabled |
| Context window | 1,000,000 tokens by default | 262,144 native, extensible to ~1,010,000 |
| Licence | Alibaba Cloud terms of service | Qwen3.8-Max License |

Everything else is shared. Both are the same sparse [Mixture-of-Experts](https://howaiworks.ai/glossary/mixture-of-experts) network — 2.4 trillion parameters in total with 95 billion activated per token, 512 experts of which 11 fire per layer (10 routed plus one shared), in a hybrid stack that alternates Gated DeltaNet blocks with gated attention. The config in the open repository is the real architecture. What differs is the post-training and the serving stack wrapped around it.

That is the honest reading of Alibaba's own wording: the hosted model is "the official version based on" the open checkpoint. The open checkpoint is the base the served product was built from, not a copy of the served product.

## Why each difference bites

**Text-only kills a whole class of migration.** The headline capability of the 3.8 generation, relative to Qwen3.7-Max, was that the Max line stopped being text-only. Alibaba Cloud Model Studio lists `qwen3.8-max` under image and video understanding as well as text generation, and Alibaba's launch material sells the million-token window in terms of hundred-page documents, television series and 100-hour livestreams. None of that transfers to the download. If your evaluation involved a single screenshot, chart or video frame, it did not measure the open weights. For [multimodal](https://howaiworks.ai/glossary/multimodal-ai) work you either stay on the API or reach for a different open model.

**Thinking-required changes your cost and latency model, not just your prompts.** On the hosted model, non-thinking is the escape hatch for the high-volume, low-difficulty half of a production workload — classification, extraction, routing — where reasoning tokens are pure overhead. The open checkpoint does not offer it. Self-hosting therefore means every request pays for a reasoning trace, and your tokens-per-request distribution shifts under you at exactly the moment you have taken on the serving cost yourself.

**262K is not 1M.** The checkpoint is natively 262,144 tokens and extensible to roughly 1,010,000, but extension is a configuration you apply and validate, not a default you inherit. Any architecture built on the assumption of a whole repository or a full document corpus in one [context window](https://howaiworks.ai/glossary/context-window) needs re-testing at the length you will actually run — and long-context quality at an extended window is not the same thing as long-context quality at a native one.

None of these are defects. They are the ordinary difference between a base checkpoint and a productised endpoint. The problem is that "Alibaba open-sourced its flagship" flattens all three into nothing.

## "Open weights" is not one thing

The second half of the story is the licence, and here the interesting comparison is inside Alibaba's own catalogue.

`Qwen3.8-2.4T-A95B` ships under a custom **Qwen3.8-Max License**. It is broadly permissive — free commercial use, redistribution, fine-tuning — with two gates bolted on. The `LICENSE` file in the repository, rather than the one-word licence tag Hugging Face renders in the sidebar, is where they live.

The first is attribution. A product or service with "more than 100,000,000 monthly active users or US$ 20,000,000 (or equivalent in other currencies) monthly revenue" must ensure the "respective model name must be prominently displayed on the user interface of such product or service." That is a UI requirement, not a notice-file requirement, and it lands on the design team rather than the legal team.

The second is a hard stop. If the licensee or an affiliate "conducts a Model as a Service or AI Work Assistant business, and the aggregate revenue of the licensee and its affiliates exceeds US$50,000,000 (or the equivalent amount in any other currencies) during any consecutive twelve (12) months, the licensee shall obtain a separate license from Qwen." The licence defines Model-as-a-Service as "giving a third party access to language model inference or fine-tuning (e.g., via API or a hosted endpoint)" and an AI Work Assistant as "an independent AI-powered product primarily designed for AI-assisted coding or office productivity."

Note who that targets. It is not aimed at enterprises running the model on their own data — the MaaS definition turns on giving a third party access. It is aimed squarely at inference resellers and at coding-assistant startups, which is to say at the two business models most likely to want a free frontier checkpoint. If you are either, and you are anywhere near US$50M, this is a negotiation with Alibaba rather than a download.

Now compare **Qwen3.8-27B**, published two days later on August 14, 2026. Its `LICENSE` file is the Apache License 2.0, verbatim, with an Alibaba Cloud copyright line in the appendix. No MAU gate, no revenue gate, no separate-licence trigger.

**The small model kept the permissive licence. The flagship did not.** That is the pattern worth carrying forward: as a Chinese lab's models approach the frontier, the licence tightens, and the tightening is aimed at commercial competitors rather than at users. Qwen3.8-Flash-Next, the 125B [MoE](https://howaiworks.ai/glossary/mixture-of-experts) we covered in [Qwen3.8-Flash-Next Runs Locally in 75 GB of RAM](https://howaiworks.ai/blog/alibaba-qwen-3-8-flash-next-local-gguf), sits in a third position again — `qwen-community-1.0`, neither Apache nor the Max terms. Three models from one lab in one month, three licences. "Open weights" tells you almost nothing on its own.

## The practical decision

Self-hosting a 2.4T model is a datacenter problem regardless of the licence. Sparse activation cuts compute per token, not storage: 95B active parameters do not reduce the number of bytes you must hold resident, and the full-precision weights are a multi-node deployment. The FP8 build helps and does not make this a single-server model. Unlike Flash-Next, this is not a checkpoint anyone runs on a workstation, and [quantization](https://howaiworks.ai/glossary/quantization) does not close that gap here.

So the realistic reasons to take the weights are sovereignty, air-gapping, or a research need for the base model — not cost. On cost, the hosted model is $2.00 per 1M input tokens, $0.20 cached and $6.00 output in Alibaba Cloud's International (Singapore) region, which is quoted natively in US dollars; the Chinese mainland card is quoted natively in yuan at ¥12 and ¥36 per 1M, a separate rate card rather than a conversion of the dollar one. Against that, self-hosting a 2.4T MoE has to clear a very high utilisation bar.

If your actual requirement is permissive licensing rather than maximum capability, Qwen3.8-27B under Apache 2.0 is the model to build on, and it is a dense vision-language model rather than a text-only one — which is to say it is more multimodal than the flagship's open checkpoint.

## What the benchmarks can and cannot tell you

One more caveat compounds the first two. Alibaba renders its benchmark tables as **images**, and the qwen.ai blog serves no static text at all, so every score in circulation has been transcribed by hand from a picture rather than read from a machine-readable table. Treat second decimals accordingly, and attribute the numbers to Alibaba when you quote them.

Beyond transcription, the scores carry three structural caveats. They are vendor-run and were unreplicated at the time of writing. Most of the agentic coding rows were measured inside the Claude Code harness rather than a neutral scaffold, and harness choice moves those scores materially. And several of the benchmarks are Alibaba's own constructions, which no third party can audit. Alibaba's strongest recent claim — first place on Code Arena WebDev at 1,691 points for the `qwen3.8-max-0902` snapshot published September 2, 2026 — is a first-party report on a post-training refresh of the hosted model.

Which is the point that closes the loop: **`qwen3.8-max-0902` is a hosted snapshot.** The refresh Alibaba describes for coding depth, multi-tool orchestration and chart and document parsing landed on the API. The open checkpoint published on August 12 has not moved. Every week the hosted model gets a post-training update is another week of drift between the thing you can measure and the thing you can download.

## Conclusion

Alibaba did open its flagship's weights, and that is genuinely a reversal — Qwen3.7-Max was closed and API-only, and a 2.4T checkpoint on Hugging Face is not nothing. But two qualifications travel with it, and the coverage dropped both.

The download is text-only, thinking-required and natively a quarter of the advertised context window, so API benchmarks do not transfer to it. And the licence is not Apache 2.0: it carries a UI attribution gate above 100M MAU or US$20M monthly revenue, and a separate-licence requirement for Model-as-a-Service and AI-work-assistant businesses above US$50M in any twelve months, while the 27B sibling two days later shipped fully permissive.

The general lesson is the one to keep. **Read the model card for what the checkpoint is, and read the `LICENSE` file rather than the licence tag for what you may do with it.** For this release, both documents say something the headline did not.

## Sources

- [Qwen/Qwen3.8-2.4T-A95B](https://huggingface.co/Qwen/Qwen3.8-2.4T-A95B) — the open base checkpoint, its model card, config and `LICENSE` file
- [Qwen/Qwen3.8-2.4T-A95B-FP8](https://huggingface.co/Qwen/Qwen3.8-2.4T-A95B-FP8) — the FP8 build published alongside it
- [Qwen/Qwen3.8-27B](https://huggingface.co/Qwen/Qwen3.8-27B) — the Apache 2.0 sibling, August 14, 2026
- [Qwen on Hugging Face](https://huggingface.co/Qwen) — the full open-weight catalogue
- [Alibaba Cloud Model Studio pricing](https://www.alibabacloud.com/help/en/model-studio/model-pricing) — the Singapore rate card, quoted natively in USD
- [阿里云百炼模型计费](https://help.aliyun.com/zh/model-studio/model-pricing) — the mainland rate card, quoted natively in CNY
- [Model Studio supported models](https://www.alibabacloud.com/help/en/model-studio/models) — where `qwen3.8-max` is listed under image and video understanding
- [Qwen3.8-Max: A New Bar for Coding and Cowork](https://www.alibabacloud.com/blog/qwen3-8-max-a-new-bar-for-coding-and-cowork_603421) — Alibaba's launch post and the source of the benchmark images
- Our model page: [Qwen3.8-Max](https://howaiworks.ai/models/qwen)

## Frequently Asked Questions

### Are the Qwen3.8-Max open weights the same model as the hosted API?

No. Qwen's own model card says Qwen3.8-Max is the official version based on Qwen3.8-2.4T-A95B with more features, such as vision input and non-thinking support. The downloadable checkpoint is text-only, cannot disable thinking mode, and ships with a 262,144-token native window rather than the hosted 1M.

### Is Qwen3.8-Max released under Apache 2.0?

No. The flagship checkpoint ships under a custom Qwen3.8-Max License with revenue- and MAU-gated conditions. The smaller Qwen3.8-27B, published two days later, does ship under a verbatim Apache License 2.0 — the permissive licence stayed with the small model, not the flagship.

### What are the revenue thresholds in the Qwen3.8-Max License?

Two. A product with more than 100,000,000 monthly active users or US$20,000,000 monthly revenue must display the model name prominently in its user interface. A Model-as-a-Service or AI Work Assistant business whose aggregate revenue with its affiliates exceeds US$50,000,000 in any consecutive twelve months must obtain a separate licence from Qwen.

### Can I get vision input from the downloaded Qwen3.8-Max weights?

No. The open checkpoint is text-only. Image and video understanding exist only on the hosted qwen3.8-max served through Alibaba Cloud Model Studio, which lists the model under both text generation and image and video understanding.

### Does self-hosting Qwen3.8-2.4T-A95B give you the full 1M context window?

Not by default. The checkpoint is natively 262,144 tokens and extensible to about 1,010,000 with context-length extension, whereas the hosted API serves 1M out of the box. The extension is your configuration problem, not a shipped default.

### How much does the hosted Qwen3.8-Max cost?

In Alibaba Cloud's International (Singapore) region, which is quoted natively in US dollars, it is $2.00 per 1M input tokens, $0.20 per 1M cached input tokens and $6.00 per 1M output tokens. The Chinese mainland card is quoted natively in yuan at ¥12 and ¥36 per 1M tokens, which is a separate rate card rather than a conversion.

---

Source: https://howaiworks.ai/blog/alibaba-qwen-3-8-max-open-weights-license — HowAIWorks.ai
