Alibaba's efficient Mixture-of-Experts model with 35B total parameters and 3B active per token. Frontier-level agentic coding performance with 73.4% on SWE-bench Verified and 92.7 on AIME 2026. Released under Apache 2.0.
131K tokens
1
available
Cheapest
Alibaba Model Studio
$0.56/1M tokens
Alibaba Model Studio
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $0.14Out: $0.42 | 600 RPM / 1.0M TPM | ap-east-1 | Healthy | 0ms |
Use this model via Alibaba Model Studio with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.alibaba-model-studio.com/v1",
apiKey: process.env.ALIBABA_MODEL_STUDIO_API_KEY,
});
const response = await client.chat.completions.create({
model: "qwen3.6-35b-a3b",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Alibaba Model Studio API • OpenAI-compatible SDK