Qwen3.5-35B-A3B

reasoning
multimodal

Qwen3.5-35B-A3B is a mid-sized Mixture-of-Experts (MoE) model with 35 billion total parameters, activating only 3 billion per token. The model comprises 40 layers with a hidden size of 2048 and utilizes tokenization with a notably large vocabulary size of 248,320. Its hybrid attention architecture combines Gated DeltaNet layers (linear attention) for fast processing of long sequences and Gated Attention layers (full attention) for precise contextual understanding. This enables the model to support a native context window of 262,144 tokens without quality degradation. Vision-language capabilities are integrated through early-fusion training, providing better image understanding compared to the Qwen3-VL series. The model supports two operational modes: Thinking for deep reasoning (mathematics, logic, code) and No-thinking for quick responses to simple queries. Inference is highly optimized; deploying the quantized format requires approximately 22–24 GB of GPU memory.

The model demonstrates impressive results on benchmarks, falling only slightly behind the flagship versions of the series. In language tests such as MMLU-Pro (85.3) and SuperGPQA (63.4), it outperforms larger models from the previous generation. Its agentic capabilities stand out in particular: the TAU2-Bench score (81.2) is the best in the family, indicating excellent proficiency in planning and executing multi-step tasks using tools. In multimodal analysis, it shows results close to top-tier models: MathVision (83.9), MMMU-Pro (75.1), OCRBench (91.0). It is important to note that this model forms the foundation of the Qwen3.5-Flash service.

The model's uniqueness lies in its versatility and efficiency, plus it distinguishes itself from previous versions with a significant leap in agent performance and multimodal understanding. This variant could be an excellent choice for companies developing sophisticated assistants, order processing systems, intelligent RAG systems with vast knowledge bases, and generally for any scenario requiring high-quality context understanding and generation while maintaining controlled, reasonable infrastructure costs.


Announce Date: 24.02.2026
Parameters: 36B
Experts: 256
Activated at inference: 3B
Context: 263K
Layers: 40, using full attention: 10
Attention Type: Hybrid Attention
Mamba Type: Gated Delta Net
Developer: Qwen
Transformers Version: 4.57.0.dev0
vLLM Version: 0.17.0
License: Apache 2.0

Public endpoint

Use our pre-built public endpoints for free to test inference and explore Qwen3.5-35B-A3B capabilities. You can obtain an API access token on the token management page after registration and verification.
Model Name Context Type GPU TPS Tooling Status Link
Qwen/Qwen3.5-35B-A3B-GPTQ-Int4 263K Public 2×4090
tensor
227.0 yes AVAILABLE chat

API access to Qwen3.5-35B-A3B endpoints

curl https://chat.immers.cloud/v1/endpoints/qwen3.5-35b-a3b/generate/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer USER_API_KEY" \
--data-binary @- <<"EOF"
{"model": "qwen3.5-35b-a3b", "messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Say this is a test"}
], "temperature": 0, "max_tokens": 150
}
EOF
$response = Invoke-WebRequest https://chat.immers.cloud/v1/endpoints/qwen3.5-35b-a3b/generate/chat/completions `
-Method POST `
-Headers @{
"Authorization" = "Bearer USER_API_KEY"
"Content-Type" = "application/json; charset=utf-8"
} `
-Body ([System.Text.Encoding]::UTF8.GetBytes((@{
model = "qwen3.5-35b-a3b"
messages = @(
@{ role = "system"; content = "You are a helpful assistant." },
@{ role = "user"; content = "Say this is a test" })
} | ConvertTo-Json -Depth 10)))
([System.Text.Encoding]::UTF8.GetString($response.RawContentStream.ToArray()) | ConvertFrom-Json).choices[0].message.content
#!pip install OpenAI --upgrade

from openai import OpenAI

client = OpenAI(
api_key="USER_API_KEY",
base_url="https://chat.immers.cloud/v1/endpoints/qwen3.5-35b-a3b/generate/",
)

chat_response = client.chat.completions.create(
model="qwen3.5-35b-a3b",
messages=[
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Say this is a test"},
]
)
print(chat_response.choices[0].message.content)

Private server

Rent your own physically dedicated instance with hourly or long-term monthly billing.

We recommend deploying private instances in the following scenarios:

  • maximize endpoint performance,
  • enable full context for long sequences,
  • ensure top-tier security for data processing in an isolated, dedicated environment,
  • use custom weights, such as fine-tuned models or LoRA adapters.

Recommended server configurations for hosting Qwen3.5-35B-A3B

Prices:
Name GPU Price, hour TPS Max Concurrency
teslaa10-2.16.64.160
262,144.0
tensor
2 $0.93 2.871 Launch
teslaa2-3.32.128.160
262,144.0
pipeline
3 $1.06 1.537 Launch
teslaa2-4.32.128.160
262,144.0
tensor
4 $1.26 2.084 Launch
rtx3090-2.16.64.160
262,144.0
tensor
2 $1.56 3.259 Launch
rtx3090-2.16.64.160.nvlink
262,144.0
tensor
2 $1.56 3.259 Launch
rtx4090-2.16.64.160
262,144.0
tensor
2 $1.92 227.00 3.324 Launch
teslaa100-1.16.64.160
262,144.0
1 $2.37 132.96 9.667 Launch
rtx5090-2.16.64.160
262,144.0
tensor
2 $2.93 6.109 Launch
h100-1.16.64.160
262,144.0
1 $3.83 153.60 9.699 Launch
h100nvl-1.16.96.160
262,144.0
1 $4.11 12.184 Launch
teslaa100-2.24.96.160.nvlink
262,144.0
tensor
2 $4.61 23.634 Launch
h200-1.16.128.160
262,144.0
1 $4.74 20.679 Launch
h200-2.24.256.160.nvlink
262,144.0
tensor
2 $9.40 45.786 Launch
Prices:
Name GPU Price, hour TPS Max Concurrency
teslaa10-3.16.96.160
262,144.0
pipeline
3 $1.34 2.841 Launch
teslaa10-4.12.48.160
262,144.0
tensor
4 $1.57 3.665 Launch
teslaa2-6.32.128.160
262,144.0
pipeline
6 $1.65 4.425 Launch
rtx3090-3.16.96.160
262,144.0
pipeline
3 $2.29 3.323 Launch
teslaa100-1.16.64.160
262,144.0
1 $2.37 101.89 7.055 Launch
rtx4090-3.16.96.160
262,144.0
pipeline
3 $2.83 3.305 Launch
rtx3090-4.16.64.160
262,144.0
tensor
4 $2.89 4.054 Launch
rtx5090-2.16.64.160
262,144.0
tensor
2 $2.93 3.480 Launch
rtx3090-4.16.128.160.nvlink
262,144.0
tensor
4 $3.01 4.054 Launch
rtx4090-4.16.64.160
262,144.0
tensor
4 $3.60 4.039 Launch
h100-1.16.64.160
262,144.0
1 $3.83 165.39 7.058 Launch
h100nvl-1.16.96.160
262,144.0
1 $4.11 9.572 Launch
teslaa100-2.24.96.160.nvlink
262,144.0
tensor
2 $4.61 21.005 Launch
h200-1.16.128.160
262,144.0
1 $4.74 18.067 Launch
h200-2.24.256.160.nvlink
262,144.0
tensor
2 $9.40 43.158 Launch
Prices:
Name GPU Price, hour TPS Max Concurrency
rtx3090-4.16.96.320
262,144.0
tensor
4 $2.97 1.172 Launch
rtx4090-4.16.96.320
262,144.0
tensor
4 $3.68 1.158 Launch
h100nvl-1.16.96.240
262,144.0
1 $4.12 99.00 3.482 Launch
rtx5090-3.16.96.240
262,144.0
pipeline
3 $4.35 1.745 Launch
h200-1.16.128.240
262,144.0
1 $4.74 11.977 Launch
teslaa100-2.24.256.240
262,144.0
tensor
2 $4.93 114.38 15.008 Launch
teslaa100-2.24.256.320.nvlink
262,144.0
tensor
2 $4.94 15.008 Launch
rtx5090-4.16.128.320
262,144.0
tensor
4 $5.76 4.035 Launch
h100-2.24.256.240
262,144.0
tensor
2 $7.85 14.982 Launch
h200-2.24.256.240.nvlink
262,144.0
tensor
2 $9.41 37.161 Launch

Related models

Need help?

Contact our dedicated neural networks support team at support@immers.cloud or send your request to the sales department at sale@immers.cloud.

We use cookies and web analytics services to ensure the proper functioning of the website, analyze web-site traffic, and improve the quality of our services.
By continuing to use the website, you consent to the Privacy Policy and consent to the processing of cookie files and technical data.