Alibaba's proprietary flagship model in the Qwen 3.6 family, targeting enterprise AI workflows with stronger agentic coding capability, visual coding support, and end-to-end enterprise engineering features.
131K tokens
1
available
Cheapest
Alibaba Model Studio
$3.20/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.80Out: $2.40 | 300 RPM / 500K 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-plus",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Alibaba Model Studio API • OpenAI-compatible SDK