
TL;DR
Alibaba released Qwen 3.8 Max on August 3, 2026 - a 2.4T-parameter MoE with 95B active per token, a 1M context window, and $2/$6 per million tokens on QwenCloud. It leads PaperBench at 93.0, and the weights open next week.
Alibaba released Qwen 3.8 Max on August 3, 2026: a 2.4-trillion-parameter MoE with 95B active per token, a 1M-token context window, and native text plus vision input. QwenCloud prices it at $2 per million input tokens and $6 per million output, and the weights - the first Max-class model Alibaba has ever open-sourced - are promised for next week on Hugging Face and ModelScope.
The model is live on two surfaces today: QwenCloud under the model id qwen3.8-max, and Vercel's AI Gateway as alibaba/qwen3.8-max (added August 2, provider pricing, no markup). The teaser tweet from July 19 said "launching and going open-weight soon"; the launch is now real, and the open-weights promise is the headline for anyone running self-hosted fleets.
| Resource | Description |
|---|---|
| Qwen 3.8-Max announcement | The official release post: architecture, benchmarks, showcase runs |
| QwenCloud model page | Live pricing, rate limits, and API docs for qwen3.8-max |
| Vercel AI Gateway changelog | Availability announcement, August 2, 2026 |
| Qwen announcement on X | The July 19 teaser: 2.4T params, open weights "soon" |
| QwenCloud docs | DashScope API endpoints, OpenAI and Anthropic compatible |
Qwen 3.8 Max is built on the Qwen 3.5 architectural foundation and scales it up. The concrete numbers from the announcement:
reasoning_effort control: xhigh (default), medium, and low levels, plus preserve_thinking on by default. This is the same cost-control pattern DeepSeek and others now use - drop the effort level for cheap fast passes, raise it for long-horizon work.All numbers below are vendor-published in the announcement, with the caveats Qwen states: most external models were evaluated on their own preferred harnesses (Claude Code for the Claude models, Codex for GPT-5.6 Sol), and some Qwen in-house benchmarks are new. Treat cross-lab comparisons as directional.
| Benchmark | Qwen 3.8 Max | Opus 4.8 | Fable 5 | GPT-5.6 Sol (max) |
|---|---|---|---|---|
| PaperBench | 93.0 | 80.3 | 88.8 | 90.5 |
| Terminal Bench 2.1 | 86.6 | 84.6 | 84.6 | 88.8 |
| SWE-bench Pro | 67.7 | 69.2 | 80.0 | 64.6 |
| DeepSWE 1.1 | 56.6 | 59.0 | 70.0 | 73.0 |
| FrontierSWE | 73.5 | 70.0 | 88.8 | -- |
| SkillsBench | 70.2 | 65.1 | 70.9 | 73.5 |
| JobBench | 53.4 | 48.4 | 57.4 | 45.4 |
| GPQA Diamond | 92.6 | 92.0 | 92.6 | 94.1 |
| OSWorld-Verified | 86.1 | 83.4 | 85.0 | 83.2 |
| RealWorldQA | 88.0 | 76.6 | 85.9 | 83.7 |
The shape is familiar from K3 and GLM 5.2 launches: the new open-weights flagship beats the incumbent closed frontier on some agentic and multimodal surfaces (PaperBench, OSWorld-Verified, RealWorldQA) while trailing on others (DeepSWE, Fable 5's FrontierSWE). One note for this site specifically: Qwen states the Qwen series was evaluated on SkillsBench using OpenCode as the harness - the model runs in our own tooling.
Two showcase runs from the announcement are worth more than the table. In a Tianchi competition with 526 human teams, Qwen 3.8 Max worked autonomously for 24 hours, submitted 45 times, and climbed from 0.60 to 0.853 accuracy, beating 458 of 526 teams (87%). And handed a research paper plus a GPU budget, it reproduced the paper's pipeline from zero (7,600 lines of code, 33 training rounds), then improved on the paper's own method by +2.71 points on AIME24 over four self-designed experiment rounds. These are marketing demos, but they demonstrate the long-horizon loop that the benchmarks measure indirectly.
From the archive
Aug 2, 2026 • 9 min read
Aug 2, 2026 • 8 min read
Aug 2, 2026 • 7 min read
Aug 2, 2026 • 7 min read
Live from the QwenCloud model page, verified August 3, 2026:
| Item | Price per 1M tokens |
|---|---|
| Input (cache miss) | $2.00 |
| Output | $6.00 |
| Input (implicit cache) | $0.25 |
| Explicit cache creation | $2.50 |
| Explicit cache read | $0.17 |
Context caching is the feature that changes the effective cost. At $0.25/MTok on implicit cache reads, an agent loop that re-reads the same 200K-token repository across 50 turns pays about 8x less on input than the uncached rate - the same cache-first economics we tracked in the frontier pricing tracker.
For comparison: Qwen 3.7 Max sits at $1.25/$3.75, Kimi K3 at $3.00/$15.00 on cache miss, and DeepSeek V4 Flash at $0.14/$0.28. Qwen 3.8 Max is the premium tier of its own family - 60% above 3.7 Max on input - but still well under K3's output rate.
The model is not yet in OpenCode's model registry (the registry currently carries the Qwen 3.5 Plus, 3.6 Plus, and 3.7 Max lines). Until it lands, the fastest path is the QwenCloud API, which speaks both the OpenAI and Anthropic protocols. The official quickstart shows the OpenAI-compatible route:
from openai import OpenAI
import os
client = OpenAI(
api_key=os.environ.get("DASHSCOPE_API_KEY"),
base_url="https://dashscope-intl.aliyuncs.com/compatible-mode/v1",
)
response = client.chat.completions.create(
model="qwen3.8-max",
messages=[{"role": "user", "content": "Explain this repo's build failure"}],
extra_body={"enable_thinking": True},
reasoning_effort="xhigh",
stream=True,
)
Because Qwen exposes the Anthropic protocol at https://dashscope-intl.aliyuncs.com/apps/anthropic, you can also point Claude Code at it directly (ANTHROPIC_MODEL=qwen3.8-max with that base URL), and the Codex model catalog ships a qwen3.8-max entry with the same reasoning levels. The Vercel AI Gateway route is the zero-markup option with usage tracking, and vercel ai-gateway coding-agents setup wires it into Claude Code, Codex, or OpenCode once the model lands there.
The open-weights week is the event to watch. If the license is permissive like GLM 5.2's, the self-hosted frontier gets a 2.4T option that undercuts every closed lab on the agentic surfaces where it leads.
Alibaba's flagship MoE released August 3, 2026: 2.4T total parameters, 95B active, 1M context, text plus vision input, priced at $2/$6 per million tokens on QwenCloud. Weights are set to open on Hugging Face and ModelScope the following week.
$2.00 per million input tokens and $6.00 per million output, with implicit cache reads at $0.25/MTok, explicit cache creation at $2.50/MTok, and explicit cache reads at $0.17/MTok. Vercel AI Gateway mirrors provider pricing with no markup.
Not yet - the OpenCode model registry currently lists Qwen 3.5 Plus, 3.6 Plus, and 3.7 Max. Qwen's own SkillsBench runs used OpenCode as the harness, so the wiring is a model entry away. In the meantime, use the QwenCloud API directly or through Claude Code and Codex via the Anthropic/OpenAI-compatible endpoints.
1M tokens: 991K max input, 131K max output, and reasoning chains up to 262K tokens.
Qwen says next week, on Hugging Face and ModelScope. It will be the first open-weights release of a Max-class Qwen model.
| Source | URL |
|---|---|
| Qwen 3.8-Max announcement | https://qwen.ai/blog?id=qwen3.8 |
| QwenCloud model page (pricing) | https://www.qwencloud.com/models/qwen3.8-max |
| Vercel AI Gateway changelog | https://vercel.com/changelog/qwen-3-8-max-now-available-on-vercel-ai-gateway |
| Qwen announcement on X | https://x.com/Alibaba_Qwen/status/2078759124914098291 |
| QwenCloud docs | https://docs.qwencloud.com/developer-guides/getting-started/first-api-call |
Last updated: August 3, 2026
Read next
Alibaba shipped Qwen 3.7 Max on May 19, 2026 with a 1M token context window, Anthropic-compatible API, and agent-first architecture. Here is what developers need to know about pricing, performance, and when to use it.
8 min readMoonshot AI releases Kimi K3 with 2.8 trillion parameters, 1M context window, and Delta Attention architecture. Here's what developers need to know about pricing, performance, and where it fits in the frontier model landscape.
6 min readA data-rich, source-cited comparison of the open-weights coding models that matter in 2026: GLM-5.2, DeepSeek V4, Qwen3, and the new Kimi K3 frontier entrant. Benchmark table, per-token pricing, context windows, self-host footprint, and a clear pick-X-if decision matrix.
14 min readTechnical content at the intersection of AI and development. Building with AI agents, Claude Code, and modern dev tools - then showing you exactly how it works.
Alibaba's flagship open-weight coding model. 480B total parameters, 35B active (MoE). Native 256K context, scales to 1M....
View ToolOpen-source reasoning models from China. DeepSeek-R1 rivals o1 on math and code benchmarks. V3 for general use. Fully op...
View ToolOpenAI's flagship. GPT-4o for general use, o3 for reasoning, Codex for coding. 300M+ weekly users. Tasks, agents, web br...
View ToolEuropean open-weight models. Mistral Large for complex tasks, Mistral Small for speed, Codestral for code. Strong multil...
View ToolInstall Ollama and LM Studio, pull your first model, and run AI locally for coding, chat, and automation - with zero cloud dependency.
Getting StartedStage, commit, branch, and open PRs without leaving the session.
Claude CodeClickable PR link in the footer with review state color coding.
Claude Code
The video reviews OpenAI’s newly released GPT 5.4, highlighting access tiers (GPT 5.4 Thinking in ChatGPT Plus/Teams/Pro/Enterprise and GPT 5.4 in the $200/month tier) and API availability. It covers

Unveiling Qwen 3 Coder: The Most Powerful Open-Source Code Model by Alibaba In this video, we explore Qwen 3 Coder, Alibaba's latest and most powerful open-source AI code model. With 480 billion...

Google's Free and Open-Source Coding Assistant In this video, we explore Google's newly released Gemini CLI, a free and open-source competitor to Claude Code. Learn how to get started with...

Alibaba shipped Qwen 3.7 Max on May 19, 2026 with a 1M token context window, Anthropic-compatible API, and agent-first a...

Moonshot AI releases Kimi K3 with 2.8 trillion parameters, 1M context window, and Delta Attention architecture. Here's w...

A data-rich, source-cited comparison of the open-weights coding models that matter in 2026: GLM-5.2, DeepSeek V4, Qwen3,...

DeepSeek shipped the official V4 Flash release on July 31, 2026. The re-post-trained 0731 build beats V4-Pro-Preview on...

Same-day-verified llm api pricing july 2026: Claude Fable 5, GPT-5.6 Sol/Terra/Luna, Claude Sonnet 5, Gemini 3.5 Flash,...

Moonshot AI released the full Kimi K3 weights on HuggingFace today - 2.8T parameters, 1M context, native MXFP4 quantizat...

New tutorials, open-source projects, and deep dives on coding agents - delivered weekly.