Qwen3.8-Max Explained [What It Changes]
TL;DR
Qwen3.8-Max is Alibaba's Qwen flagship: a 2.4-trillion-parameter Mixture-of-Experts model that activates 95 billion parameters per query, reads text, images, and video together, and holds about one million tokens of context in a single call.
As of 3 August 2026 it is generally available through QwenCloud and Alibaba Cloud Model Studio at $2 input and $6 output per million tokens, with a 1 million token context window and a 131K max output.
The operational change for a small firm is not "a smarter chatbot." It is the ability to keep a whole matter file, a scanned exhibit set, or a long video deposition in one pass instead of chopping work into 128K-sized chunks.
The hosted Max API is the multimodal product. The open-weight Qwen3.8-2.4T-A95B checkpoint is text-only and thinking-on. The smaller Qwen3.8-27B is the on-prem option for desks that cannot send client files to a public API.
Key Takeaways
Alibaba's Qwen team shipped Qwen3.8-Max as a model swap for OpenAI- and Anthropic-compatible harnesses, not as a new application you have to rebuild.
Vendor-published scores lead on some agent and document benches (PaperBench 93.0, IFBench 82.8, PLawBench 73.2) and lag Claude Fable 5 on SWE-bench Pro (67.7 vs 80.0) and FrontierSWE (73.5 vs 88.8).
Cache math matters more than raw context length: QwenCloud bills implicit cache reads at $0.25 per million tokens against $2.00 for fresh input, so a stable matter-file prefix is the cost control.
Confidentiality still binds. A hosted 1M-token window does not replace a human lawyer, and the FTC has already punished "robot lawyer" claims.
For most small desks, the practical stack is: hosted
qwen3.8-maxfor long multimodal review, or Qwen3.8-27B on local hardware when files cannot leave the office.
What Qwen3.8-Max is
Qwen3.8-Max is Alibaba's hosted flagship language model: a sparse Mixture-of-Experts system with 2.4 trillion total parameters, 95 billion active per query, native text/image/video input, text output, and a one-million-token context window aimed at multi-day, multi-step work rather than one-shot Q&A.
That sentence is the product. The rest of this page is what it changes on a real desk.
A 2-truck HVAC shop should care because a full winter of invoices, photos of failed units, and manufacturer PDFs now fit in one review pass instead of a folder of summaries. A 10-person marketing agency should care because a year of brand guidelines, storyboards, and campaign video can sit in the same prompt as the brief. A solo clinic should care because a 200-page chart packet plus imaging no longer has to be pre-summarized by a person before the model sees it.
A solo lawyer or a four-person family-law shop should care for the same mechanical reason: discovery dumps, closing binders, and deposition video are the jobs that used to overflow every 128K window. If you already compare practice systems such as Clio alternatives for solo lawyers or MyCase vs Clio Manage for family-law firms, this model is the layer that reads the files those systems store. It does not replace the matter database.
According to the Qwen Team, Qwen3.8-Max uses 2.4 trillion parameters with 95 billion active and is the first Qwen-Max-class checkpoint the team said it would open-weight.
What shipped, and when
The Qwen blog post is dated 2 August 2026. Coverage from DataNorth and AI Tools Review treats 3 August 2026 as general availability, the day Alibaba published a full benchmark table and per-token prices after a mid-July preview that had no table.
As of 3 August 2026, the hosted product is live on QwenCloud, Alibaba Cloud Model Studio, Qwen Studio, and the Qwen home surface at qwen.ai. The API speaks OpenAI Chat Completions and, on the blog's install notes, the Anthropic protocol used by Claude Code, so existing coding and document agents can change a base URL and a model ID.
Two checkpoints matter:
Qwen3.8-Max /
qwen3.8-max: the hosted multimodal API. QwenCloud's model page lists image, text, and video in; text out; function calling; structured outputs; prefix completion; fine-tuning; batches; web search; and five built-in Responses API tools (code_interpreter,web_search,web_extractor,t2i_search,i2i_search).Open weights: Qwen3.8-2.4T-A95B (text-only, thinking required) and Qwen3.8-27B (dense vision-language, Apache 2.0). Both are listed on the Qwen Hugging Face org and were already downloadable as of this writing, after the blog's "next week" promise from 2 August 2026.
The lineage sits on Qwen 3.5 architecture. The earlier Qwen3 technical report (14 May 2025) described thinking/non-thinking in one model and dense plus MoE sizes up to 235B. Qwen3.8-Max is a later Max-tier scale-up, not a reprint of that paper. The team documents the older series on qwenlm.github.io, Qwen3 on GitHub, and Qwen's readthedocs.
How 2.4 trillion parameters can still be a $2 API call
Mixture-of-Experts means the model stores many specialist feed-forward networks ("experts") and, for each token, turns on only a few of them. The headline 2.4 trillion is the warehouse. The 95 billion is the crew that actually works on this query.
The Hugging Face model card publishes the layout: 92 layers, hidden size 8192, 512 experts, 10 routed plus 1 shared expert active, hybrid Gated DeltaNet plus Gated Attention, native context 262,144 tokens and extensible to 1,010,000. That is why a 2.4T model can be priced like a large hosted API rather than like a 2.4T dense model you would never run.
Two limits follow from the same design:
Self-hosting the full Max checkpoint is a cluster job. Every expert still sits in memory even when only 95B activate. A small firm does not put 2.4T on a single workstation.
The open 2.4T card is not the hosted API. Hugging Face states Qwen3.8-2.4T-A95B is text-only, thinking cannot be turned off, and multimodal input is not supported. Vision, non-thinking mode, default 1M context, and the built-in tools live on the hosted Qwen3.8-Max service.
The 27B dense sibling is the opposite trade: 27 billion parameters, native vision and video, thinking that can be disabled, Apache 2.0, and a 262,144 native context extensible to 1,000,000 tokens, per the Qwen3.8-27B card. That is the checkpoint aimed at ordinary on-prem GPUs.
Why this landed now
Three constraints broke at once.
Context. Older Max IDs on Model Studio still sit at 256K (qwen3-max). Qwen3.7-Max already offered 1M; Qwen3.8-Max keeps 1M and spends the extra capacity on long-horizon agent work. According to Alibaba Cloud, 1 million tokens is roughly 750,000 English words, or 8–10 novels — enough for a closing binder plus exhibits if you stop duplicating the same PDF in every turn.
Protocol. The blog shows Claude Code, Codex, Qoder CLI, Qwen Code, and OpenClaw pointed at qwen3.8-max with a base-URL change. The official oh-my-cli repo is the public trace of a 10-plus-day autonomous coding run the blog cites (265 commits, 127 PRs, 151 issues as of 30 July 2026 in the post). You do not need that repo to use the API. It is evidence that Alibaba is pitching "stay in the loop for days," not "answer this email."
Price. According to Alibaba Cloud Model Studio pricing (last updated 2 September 2026), Singapore qwen3.8-max is $2 input and $6 output per million tokens across the full 0-to-1M input tier, cheaper than Singapore qwen3.7-max at $2.5 / $7.5. QwenCloud posts the same $2 / $6 list and publishes cache dollars on the same page.
Benchmarks the vendor actually published
Treat these as Alibaba's own runs unless a third party repeats them. The Hugging Face Qwen3.8-2.4T-A95B card is the cleanest public table. Independent Artificial Analysis Terminal-Bench v2.1 documents the 89-task harness and cites tbench.ai as the public home; the HF footnote says Qwen3.8-Max's 86.6 was run with Claude Code (avg@10), while Opus 4.8 and Fable 5 scores in that row are the best published Terminus 2 numbers from Artificial Analysis.
According to the Hugging Face model card, Qwen3.8-Max scores 86.6 on Terminal-Bench 2.1, ahead of Claude Fable 5 at 84.6 and behind GPT-5.6 Sol (max) at 88.8.
| Benchmark | Qwen3.8-Max | Qwen3.7-Max | Claude Fable 5 | GPT-5.6 Sol (max) |
|---|---|---|---|---|
| Terminal-Bench 2.1 | 86.6 | 74.5 | 84.6 | 88.8 |
| SWE-bench Pro | 67.7 | 60.6 | 80.0 | 64.6 |
| FrontierSWE | 73.5 | 40.7 | 88.8 | — |
| PaperBench | 93.0 | 64.8 | 88.8 | 90.5 |
| DeepSWE 1.1 | 56.6 | 21.6 | 70.0 | 73.0 |
| JobBench | 53.4 | 31.3 | 57.4 | 45.4 |
| IFBench | 82.8 | 79.1 | 63.5 | 72.7 |
| GPQA Diamond | 92.6 | 92.4 | 92.6 | 94.1 |
| PLawBench | 73.2 | 58.9 | 70.2 | 72.3 |
| PRBench-Legal | 57.6 | 48.5 | 57.6 | 57.6 |
Sources: Qwen3.8-2.4T-A95B model card; Terminal-Bench background at Artificial Analysis and tbench.ai.
The pattern is usable without hype. Gains versus Qwen3.7-Max are large on agent benches (DeepSWE 1.1 21.6 → 56.6; FrontierSWE 40.7 → 73.5; JobBench 31.3 → 53.4). Against Fable 5, Qwen3.8-Max leads PaperBench and IFBench, ties PRBench-Legal at 57.6, and trails badly on SWE-bench Pro and FrontierSWE. For a law firm that is not asking the model to maintain a production repo, the legal-adjacent rows matter more than FrontierSWE.
According to the same Hugging Face card, Qwen3.8-Max scores 73.2 on PLawBench, above Fable 5 at 70.2 and GPT-5.6 Sol at 72.3.
On vision, Alibaba Cloud's visual-understanding page lists qwen3.8-max at 1M context, 16 million pixels per image, 2-hour / 2 GB video, 2048 images, and 64 videos per request. The 27B card reports OSWorld-Verified 84.3 and OmniDocBench 1.5 at 91.1; QwenCloud's open-source 2.4T listing quotes OSWorld 86.1 for the flagship checkpoint. Those are still vendor numbers.
Price, cache, and rate limits
| Surface | Input $/1M | Output $/1M | Implicit cache $/1M | Explicit create $/1M | Explicit read $/1M |
|---|---|---|---|---|---|
| QwenCloud qwen3.8-max | 2.00 | 6.00 | 0.25 | 2.50 | 0.17 |
| Model Studio Singapore qwen3.8-max | 2.00 | 6.00 | — | — | — |
| Model Studio Singapore qwen3.7-max | 2.50 | 7.50 | — | — | — |
| QwenCloud qwen3.8-flash | 0.15 | 0.47 | — | — | — |
| QwenCloud kimi-k3 | 3.00 | 15.00 | — | — | — |
Sources: Qwen3.8-Max on QwenCloud; QwenCloud marketplace; Alibaba Cloud Model Studio pricing as of 2 September 2026. Em dashes mean that page did not publish a matching cache cell.
QwenCloud also posts 991K max input, 983K max input with thinking, 131K max output, 262K max reasoning, 2 million tokens per minute, and 15,000 requests per minute. Model Studio Singapore lists a 1 million token free quota for qwen3.8-max (90 days from activation, release, or approval). Beijing and several other regions list $1.65 / $4.951 instead of $2 / $6; check the region you actually call.
Alibaba Cloud context cache describes two modes on Model Studio: explicit cache (create typically 125% of input, hits typically 10%, 5-minute TTL that resets on hit, 1,024-token minimum) and implicit cache (automatic prefix match, hits typically 20% of input, hit not guaranteed). QwenCloud's dollar table is the figure set to use if you bill on QwenCloud; do not mix the 20% Model Studio rule with QwenCloud's $0.25 cell and assume they are the same invoice.
Batch is a separate discount. Alibaba Cloud's OpenAI-compatible Batch API prices supported batch calls at 50% of real-time. The Beijing supported-model list includes qwen3.8-max with a 256K per-request cap in batch; the Singapore batch list on that page names older qwen-max / qwen-plus / qwen-flash / qwen-turbo IDs. Do not assume Singapore batch at 50% for qwen3.8-max until your console shows that ID.
Context window vs the open checkpoint
| Product | Context | Max input | Max output | Max reasoning | Native (weights) |
|---|---|---|---|---|---|
| Hosted qwen3.8-max (QwenCloud) | 1,000,000 | 991,000 | 131,000 | 262,000 | — |
| Hosted qwen3.8-max thinking input | 1,000,000 | 983,000 | 131,000 | 262,000 | — |
| Qwen3.8-2.4T-A95B weights | 1,010,000 extensible | — | 131,072 recommended final | 262,144 recommended | 262,144 |
| Qwen3.8-27B weights | 1,000,000 extensible | — | — | — | 262,144 |
Sources: QwenCloud qwen3.8-max; Qwen3.8-2.4T-A95B; Qwen3.8-27B.
A 1M window is not a 1M answer. You can feed nearly a million tokens; you cannot emit a million. Plan retrieval so the model writes a memo, a clause list, or a JSON extract, not a restatement of the whole file.
USTA analysis: cache beats a bigger window
USTA analysis (derived only from QwenCloud list prices). Inputs: 50 matter files, each with an 80,000-token prefix (the PDF pack) reused across 8 questions; 2,000 new tokens of instructions per question; 3,000 output tokens per answer. Token totals: prefix 50 × 80,000 = 4,000,000; questions 50 × 8 = 400 calls; extra input 400 × 2,000 = 800,000; output 400 × 3,000 = 1,200,000.
Fresh Qwen3.8-Max input on every call would bill (4,000,000 + 800,000) / 1,000,000 × $2.00 = $9.60 wait — no: 400 calls each see 82,000 input tokens = 32,800,000 input tokens × $2.00 / 1,000,000 = $65.60, plus 1,200,000 × $6.00 / 1,000,000 = $7.20, total $72.80.
Explicit cache on QwenCloud: create 50 prefixes × 80,000 × $2.50 / 1,000,000 = $10.00; 400 cache reads × 80,000 × $0.17 / 1,000,000 = $5.44; 800,000 new input × $2.00 / 1,000,000 = $1.60; output still $7.20. Cached total = $24.24.
Same volume on Singapore qwen3.7-max at $2.50 / $7.50 with no cache: 32,800,000 × $2.50 / 1,000,000 = $82.00 plus 1,200,000 × $7.50 / 1,000,000 = $9.00, total $91.00.
The derived deltas: Qwen3.8-Max with explicit cache vs Qwen3.8-Max fresh is $72.80 − $24.24 = $48.56 saved (67%) on this workload. Qwen3.8-Max fresh vs Qwen3.7-Max fresh is $91.00 − $72.80 = $18.20 (20%), which is just the list-price cut. The window does not save the money. Reusing a stable prefix does.
A transactional desk that already keeps closing checklists in Smokeball vs Clio Manage can pin that checklist plus the current binder as the cached prefix and only pay full freight on the question. Teams already routing documents through US Tech Automations workflows will plug this in as a model swap, not a rebuild: same extract step, new model ID, cache the file once.
What changes on a legal desk
The hosted model is pitched at legal and financial document review, not only coding. The Qwen blog's compliance-counsel example is the one to read twice. According to the Qwen Team, Qwen3.8-Max surfaced 1,284 relevant clauses across hundreds of documents in under an hour, against a paralegal-team baseline of around a week.
That is a vendor case study, not a time-and-motion study of your office. What you can take from it without inflating the claim: the product is being sold as "read the corpus once, list the clauses," which is exactly the job a 128K model forced you to shard.
Concrete workflow, still on sourced mechanics:
Ingest. PDFs, scans, and deposition video go in as the multimodal payload (vision limits: 16M pixels, 2-hour video). Pair that with a document-extract agent such as US Tech Automations data extraction so the matter ID, dates, and parties land in structured fields instead of a chat blob.
Pin the prefix. Put standing instructions plus the file pack ahead of a cache marker so questions 2 through n hit context cache or QwenCloud's $0.17 explicit read.
Ask for structured output. Model Studio documents JSON-shaped extracts for names, dates, and amounts. Demand a clause table, not a narrative, when the next step is a human.
Keep the human on exceptions. NIST's AI Risk Management Framework is voluntary and use-case agnostic; it still names valid/reliable, privacy-enhanced, accountable, and explainable as the trustworthiness set. A firm can map "model proposes, lawyer disposes" onto that Govern/Map/Measure/Manage loop without waiting for a legal-specific NIST profile.
A tax or accounting practice that already compares Drake vs ProConnect or shops practice-management software hits the same pattern: the 1M window is for the return package and the workpapers, not for replacing the organizer.
Finance-side reporting tools such as Fathom vs Jirav remain the system of record for numbers. Qwen3.8-Max is the reader that sits in front of those files.
Honest limits
Vendor benches are not a court record. Alibaba published the table. Hugging Face repeats it. Artificial Analysis independently runs Terminal-Bench v2.1, but the 86.6 figure for Qwen3.8-Max on the model card is Alibaba's Claude Code run. Do not treat 86.6 as an AA leaderboard print.
Hosted Max ≠ open 2.4T. If you need images or video, you are on the API (or on 27B). If you need to turn thinking off on the giant checkpoint, the open 2.4T card says you cannot.
License is not Apache on the flagship weights. The Qwen3.8-Max license grants broad use, then adds two commercial gates: prominent model-name display if a commercial product exceeds 100,000,000 monthly active users or $20,000,000 monthly revenue; and a separate license from Qwen if you run Model-as-a-Service or an "AI Work Assistant" and trailing-twelve-month aggregate revenue exceeds $50,000,000 (internal use that does not expose the model to third parties is carved out). Qwen3.8-27B is Apache 2.0 on its model card. Read the file before you self-host.
Confidentiality is a process, not a context length. Sending a client PDF to DashScope or QwenCloud is a third-party disclosure unless your engagement terms and the vendor DPA say otherwise. On-prem 27B is the conservative path for privileged files. The NIST AI RMF 1.0 PDF still frames privacy-enhanced and accountable as design requirements, not slogans.
Do not market this as a lawyer. According to the FTC, DoNotPay agreed to pay $193,000 and to stop claiming an AI service could substitute for a human lawyer without evidence. A 73.2 PLawBench score is not a bar license.
Long-horizon demos are demos. The blog's 16-day oh-my-cli run, the five-day paper reproduction (~7,600 lines, 33 GPU jobs, +2.7 AIME24), the 24-hour Tianchi contest (0.60 → 0.853, 458 of 526 teams beaten), the chip-design cut from 8,298 gates to 678, and the E-Commerce Bench finish at ¥416,252 are Alibaba's own stories. They show the kind of loop the model was trained for. They are not your SLA.
Signal vs Speculation
Signal (sourced). Qwen3.8-Max is live as of 3 August 2026 on QwenCloud and Model Studio. List price on those two Singapore/international surfaces is $2 / $6 per million tokens. Context is 1M with a 991K max input and 131K max output on QwenCloud. Open weights for 2.4T-A95B (custom Qwen3.8-Max license) and 27B (Apache 2.0) are on Hugging Face. The API is documented as OpenAI-compatible. Cache, tools, vision limits, and regional price splits are on vendor docs, not on blogs. PLawBench 73.2 and PRBench-Legal 57.6 are vendor-reported. FTC and NIST documents above are independent of Alibaba.
Speculation (our read, 12–36 months). If the $2 / $6 list holds and cache hits stay near QwenCloud's $0.17, small firms will stop paying people to pre-summarize PDFs for a 128K model and will instead cache the file and ask questions. That is a workflow change, not a headcount prophecy. If independent labs later cut the agent scores the way they sometimes cut launch tables, buyers should keep the cache design and swap the model ID — the same move this API was built for. Our read: the 27B Apache checkpoint is the more important SMB artifact than the 2.4T cluster weights, because privilege and data-residency rules will keep a slice of legal and clinic files off DashScope no matter how cheap the API gets. Our read: "robot lawyer" marketing will keep attracting FTC-style enforcement; firms that log prompts, keep a human on the filing, and refuse to auto-send client advice will be the ones still allowed to use the window.
A solo-run clinic, a 10-person agency, and a 2-truck HVAC shop land in the same 12–36 month bucket as a four-lawyer firm: one shared matter pack, cached, queried, extracted into the system of record. The homepage path is that extract-and-route layer. A firm that already runs US Tech Automations document routing can treat Qwen3.8-Max as the reader behind the same steps, then hand structured fields to whatever practice system it already pays for.
How to try it without boiling the ocean
Point an OpenAI-compatible client at Model Studio or QwenCloud, set model to qwen3.8-max, and keep enable_thinking explicit. The Qwen blog uses https://dashscope-intl.aliyuncs.com/compatible-mode/v1 for Singapore and lists Beijing and US (Virginia) bases. For a first legal pilot, use one closed matter, one cached prefix, five questions, and a human reviewer. If the output is a clause table you would actually paste into a memo, widen the file set. If it is a fluent wrong date, stop.
Flash exists when Max is surplus. QwenCloud lists Qwen3.8-Flash at $0.15 / $0.47 per million with the same 1M context and 131.1K max out. Model Studio's text page tells offices to start on qwen3.7-plus for ordinary drafting and to reserve qwen3.8-max for strongest reasoning, including "legal cross-referencing."
When the routing is ready, wire the model into an agentic workflow so intake, extract, cache, and human review are steps with owners, not a chat tab.
FAQs
What is Qwen3.8-Max?
Qwen3.8-Max is Alibaba's hosted Qwen flagship: 2.4 trillion total parameters, 95 billion active, multimodal input, 1 million token context, generally available as of 3 August 2026. The quotable definition is on the Qwen blog and the QwenCloud model page.
How much does Qwen3.8-Max cost?
Hosted list price is $2 per million input tokens and $6 per million output tokens on QwenCloud and on Model Studio Singapore. Cache, region, and batch change the invoice; Beijing lists $1.65 / $4.951 for the same ID.
Can a small law firm run Qwen3.8-Max on its own servers?
Not the 2.4T MoE checkpoint, not as a single-box job. Use the API, or run Qwen3.8-27B locally under Apache 2.0 when files cannot leave the office.
Is Qwen3.8-Max safe for confidential client files?
The model does not make a hosted API privileged. If the file cannot go to Alibaba Cloud or QwenCloud, do not send it; use on-prem 27B and your own logging. Map the use against NIST AI RMF privacy and accountability functions, and do not advertise it as a lawyer (FTC Operation AI Comply).
How does Qwen3.8-Max compare with Claude and GPT on legal work?
On Alibaba's table, it leads PLawBench at 73.2, ties PRBench-Legal at 57.6 with Fable 5 and GPT-5.6 Sol, and trails Fable 5 on software-engineering benches. There is no independent legal-work leaderboard in the sources above that repeats those two legal rows.
What is the difference between Qwen3.8-Max and Qwen3.8-27B?
Max is the hosted MoE flagship (2.4T / 95B) with the full tool and vision API. 27B is a dense open vision-language model for ordinary GPUs. Max open weights are text-only and thinking-locked; 27B can disable thinking and ingest images and video, per the two Hugging Face cards.
Does a 1 million token window mean I should paste the whole matter file every time?
No. Paste it once, cache the prefix, and send short questions. QwenCloud bills fresh input at $2 / 1M and explicit cache reads at $0.17 / 1M. Repeating an 80K PDF is how you throw away the price cut.
Glossary
Mixture-of-Experts (MoE): A model that stores many expert networks and activates only a subset per token. Qwen3.8-Max stores 2.4T parameters and activates 95B.
Active parameters: The parameters used for a given forward pass (95B here), not the stored total.
Context window: How much prompt plus history the model can see at once. Hosted Max: 1M tokens, 991K max input.
Token: A model-native chunk of text, roughly 0.75 English words on Alibaba's 1M ≈ 750,000-word rule of thumb.
Thinking mode: Extra internal reasoning tokens billed as output. Hosted Max supports thinking and non-thinking; open 2.4T-A95B requires thinking.
Context cache: Reuse of a shared prompt prefix at a lower input price ($0.25 implicit / $0.17 explicit read on QwenCloud).
Open weights: Downloadable parameters. 2.4T-A95B uses the Qwen3.8-Max license; 27B uses Apache 2.0.
DashScope: Alibaba Cloud's model API, including the OpenAI-compatible
compatible-mode/v1endpoint used in the Qwen blog snippets.
Put the window on a workflow, not a chat tab
Qwen3.8-Max is a long-file reader with a published $2 / $6 price, a 1M-token window, and an OpenAI-compatible plug. The legal change is mechanical: stop slicing matter files to fit 128K, cache the pack, extract structure, and keep a human on the filing.
If you want that sequence as named steps rather than a prompt, start from agentic workflows on the US Tech Automations platform and attach the model as a swap behind document intake. For the extract-only slice, use the data-extraction agent. The USTA homepage is the index for those routes.
About the Author

Helping businesses leverage automation for operational efficiency.
Related Articles
See how AI agents fit your team
US Tech Automations builds and runs the AI agents that handle this work end to end, so your team doesn't have to.
View pricing & plans