Qwen: Qwen3 Coder Next
GPU TEE
qwen/qwen3-coder-next
Created Apr 21, 2026|262K context|$0.18/M input tokens|$1.20/M output tokens
Intel TDXNVIDIA CC
Qwen3-Coder-Next is an open-weight causal language model optimized for coding agents and local development workflows. It uses a sparse MoE design with 80B total parameters and only 3B activated per token, delivering competitive performance with efficient inference.
Providers for Qwen: Qwen3 Coder Next
RedPill routes requests to the best providers that are able to handle your prompt size and parameters, with fallbacks to maximize uptime.
chutes
Input Price
$0.18
Output Price
$1.20
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-coder-next",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
})