Overview
Qwen3.5 is Alibaba Cloud's flagship open-weight model, released on February 16, 2026. It is a 397-billion-parameter Mixture-of-Experts model that activates only 17 billion parameters per token — delivering frontier-level performance at a fraction of the compute cost. Unlike previous Qwen generations that required separate Vision-Language variants, Qwen3.5 unifies text, image, and video understanding into a single checkpoint via early fusion.
The release is particularly notable for its agentic capabilities: Qwen3.5 posts strong results across key AI agent benchmarks at launch, including AndroidWorld (66.8), BrowseComp (69.0/78.6), and NOVA-63 (59.1), though performance varies across different evaluation suites. It ships under the Apache 2.0 license, making it freely usable, modifiable, and deployable in commercial products without royalties.
What's New
Unified Multimodal Architecture
Previous Qwen versions required users to choose between a text model and a separate VL (Vision-Language) variant. Qwen3.5 eliminates this split. Vision capabilities are built in through early fusion training on multimodal tokens — not bolted on as a post-hoc adapter — allowing the model to natively reason across text, images, and video in a single pass.
- Image understanding across photos, documents, charts, and UI screenshots (official resolution limits not publicly specified)
- Supports hour-scale video understanding (official docs recommend optimizations for long video; exact maximum duration is not specified)
- Achieves 90.8 on OmniDocBench1.5 (document understanding) — highest of any tested model
- Scores 88.6 on MathVision — highest across GPT-5.2, Claude Opus 4.5, and Gemini 3 Pro
Hybrid Architecture: 8.6×–19× Faster Decoding
The most significant architectural upgrade is the combination of Gated Delta Networks (linear attention) with traditional Gated Attention and sparse MoE routing. Compared to the previous Qwen3-Max generation:
- 8.6× faster decode throughput at 32K context
- 19× faster decode throughput at 256K context
Linear attention scales with sequence length linearly (not quadratically), enabling the 1M token extended context window without the memory explosion typical of standard transformers. This is how Qwen3.5 can process entire codebases, 500-page reports, or multi-hour video transcripts in a single prompt.
Strong Agentic Capabilities
Qwen3.5 is positioned as an "agentic era" model. It natively understands screenshots, identifies UI elements, and executes multi-step workflows across desktop and mobile environments. It combines visual understanding with tool-calling and function-calling capabilities so it can act, not just respond.
Benchmark results at launch:
| Benchmark | Qwen3.5 | GPT-5.2 | Claude Opus 4.5 |
|---|---|---|---|
| AndroidWorld (mobile automation) | 66.8 | — | — |
| BrowseComp (browser automation) | 69.0 | 65.8 | 67.8 |
| NOVA-63 (agentic tasks) | 59.1 | 54.6 | 56.7 |
| IFBench (instruction following) | 76.5 | 75.4 | 58.0 |
| MathVision (multimodal math) | 88.6 | 83.0 | 74.3 |
| SWE-bench Verified (coding) | 76.4 | 80.0 | 80.9 |
Expanded Multilingual Support
Qwen3.5 supports 201 languages and dialects — up from 119 in Qwen3. The vocabulary expanded from ~150K to approximately 250K tokens (official config: 248,320), which means:
- 15–25% fewer tokens needed for technical multilingual datasets
- 10–60% cost reduction for multilingual AI code generation and processing
- Better handling of low-resource languages due to more efficient tokenization
Apache 2.0 Open-Weight License
The full 397B model weights are available on HuggingFace under Apache 2.0 — no usage restrictions, no royalties, no commercial approval required. Community quantizations (GGUF format via Unsloth) enable deployment ranging from research setups to production clusters.
Availability & Access
Qwen3.5 is accessible through multiple channels:
- Web UI: chat.qwen.ai — free access with rate limits; no API key required
- API (Qwen3.5-Plus): Available via Alibaba Cloud Model Studio (dashscope.aliyuncs.com); requires an Alibaba Cloud account and API key
- Open weights: Qwen/Qwen3.5-397B-A17B on HuggingFace under Apache 2.0
- OpenAI-compatible API: Drop-in replacement for existing OpenAI SDK workflows — change only the base URL and API key
The API uses the model ID qwen3.5-plus-2026-02-15 on Model Studio.
System Requirements for Local Deployment
Running the full 397B model locally requires substantial hardware. All experts must be loaded into memory even though only 17B activate per token:
| Quantization | Approx. Size | Minimum RAM/VRAM |
|---|---|---|
| BF16 (full precision) | ~780 GB | 800+ GB (multi-GPU server) |
| Q8_0 | ~400 GB | 420+ GB |
| Q4_K_XL | ~220 GB | 240+ GB (high-memory workstation or multi-GPU server; CPU offloading likely required) |
| Q2_K_XL | ~140 GB | 160+ GB |
Supported inference frameworks: vLLM, SGLang, llama.cpp (GGUF), LM Studio, Ollama, and HuggingFace Transformers (use latest versions; refer to the official quickstart for specific version requirements).
Pricing & Plans
| Access Method | Cost |
|---|---|
| chat.qwen.ai (web) | Free with rate limits |
| API — qwen3.5-plus input (≤128K, CN region) | from $0.115 / 1M tokens |
| API — qwen3.5-plus output (≤128K, CN region) | from $0.688 / 1M tokens |
| API — higher context ranges (128K–1M) | Higher rates; varies by tier |
| Batch mode (async) | 50% discount available |
Important: API pricing varies by deployment region (Mainland China vs. international) and context length tier. No free API quota is provided — verify current rates on the Alibaba Cloud Model Studio pricing page before building.
The per-token rate is the same whether thinking mode is enabled or disabled. However, enabling thinking typically generates substantially more output tokens (the <think> block counts toward output), so the total API cost per request increases when thinking is on. Compared to some competing AI chatbots that charge an explicit reasoning surcharge, Qwen3.5's approach keeps the unit price fixed while letting token volume determine the cost.
Best For
- AI agent developers building multi-step automated workflows across desktop, mobile, and web environments
- Teams processing large document collections — SEC filings, entire codebases, multi-hour video transcripts — that require 1M+ token context windows
- Developers building multilingual AI applications serving global audiences across 201 languages
- Organizations wanting frontier-quality AI without vendor lock-in, thanks to Apache 2.0 full model weights
- Researchers and teams requiring strong multimodal document understanding (highest OmniDocBench score) or multimodal math (highest MathVision score)
- Cost-sensitive production workloads where Qwen3.5-Plus API pricing undercuts competing frontier models by 60–70%
FAQ
Is Qwen3.5 free to use?
Yes, partially. Qwen3.5 is free to try at chat.qwen.ai with rate limits, and the model weights are freely available on HuggingFace under Apache 2.0 for self-hosting. For production API access, Qwen3.5-Plus on Alibaba Cloud Model Studio is pay-as-you-go with no free quota — see the Model Studio pricing page for current rates by region and context tier.
How does Qwen3.5 compare to GPT-5.2 and Claude Opus 4.5?
Qwen3.5 leads on instruction following (IFBench 76.5), multimodal math (MathVision 88.6), document understanding (OmniDocBench 90.8), and several key agentic benchmarks (AndroidWorld, BrowseComp, NOVA-63). GPT-5.2 leads on doctoral-level science (GPQA 92.4) and coding (SWE-bench 80.0). Claude Opus 4.5 leads on real-world software engineering (SWE-bench 80.9). The key differentiator for Qwen3.5 is its combination of open-weight accessibility, agentic capability, and price efficiency.
Is Qwen3.5-Plus the same as Qwen3.5?
Yes. Qwen3.5-Plus is the hosted API version of the open-weight Qwen3.5-397B-A17B model on Alibaba Cloud Model Studio. It includes production-grade features like a default 1M token context window, built-in tool integration, and rate-limited free access. The underlying model weights are identical.
Can I run Qwen3.5 locally?
Yes, but hardware requirements are significant. The Q4_K_XL quantization (lowest practical quality) requires ~220 GB of storage and ~240 GB of RAM. This rules out most consumer setups. Supported hardware includes Mac Studio (256 GB unified memory), Mac Pro, or multi-GPU servers. GGUF quantizations from Unsloth are available for llama.cpp, LM Studio, and Ollama.
What is thinking mode and how does it affect cost?
When thinking is enabled, the model generates a visible <think>...</think> block before the final response. This thinking content counts as output tokens, so enabling thinking increases the total token count and API cost for each request — even though the per-token rate stays the same. Thinking can be toggled via the enable_thinking API parameter (default: true). Setting enable_thinking: false skips the thinking block, reducing output tokens and response latency.
Does Qwen3.5 support image generation?
No. Qwen3.5 understands and analyzes images and video, but its output is text-only. For image generation, Alibaba offers Qwen-Image-2.0 as a separate 7B text-to-image model. Qwen3.5 can, however, generate SVG code from image descriptions and convert wireframes or hand-drawn sketches into functional HTML/CSS/JS.



