Qwen: Qwen3.6 35B A3B
GPU TEE
qwen/qwen3.6-35b-a3b
Created May 26, 2026|262K context|$0.20/M input tokens|$1.27/M output tokens
Intel TDXNVIDIA CC
Qwen3.6-35B-A3B is an open-weight model from Alibaba Cloud with 35 billion total parameters and 3 billion active parameters per token. It uses a hybrid sparse mixture-of-experts architecture combining Gated attention. Served as a text-only TEE deployment via NEAR AI.
Providers for Qwen: Qwen3.6 35B A3B
RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
near-ai
Total Context
262K
API
RedPill provides an OpenAI-compatible completion API to all models & providers that you can call directly, or using the OpenAI SDK. Additionally, some third-party SDKs are available.
fetch("https://api.redpill.ai/v1/chat/completions", {
method: "POST",
headers: {
"Authorization": "Bearer <YOUR-REDPILL-API-KEY>",
"Content-Type": "application/json"
},
body: JSON.stringify({
"model": "qwen/qwen3.6-35b-a3b",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})