Qwen: Qwen3.5-122B-A10B
GPU TEE
qwen/qwen3.5-122b-a10b
Created May 26, 2026|262K context|$0.46/M input tokens|$3.68/M output tokens
Intel TDXNVIDIA CC
Qwen3.5-122B-A10B is a large Mixture-of-Experts model from Alibaba Cloud with 122B total parameters and 10B active parameters per token. Strong on reasoning, coding, and tool calling with 262K context. Served as a text-only TEE deployment via NEAR AI.
Providers for Qwen: Qwen3.5-122B-A10B
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.5-122b-a10b",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})