Alibaba's dense 27B parameter model that outperforms its own 397B MoE predecessor on agentic coding benchmarks. Strong multilingual and reasoning capabilities released under Apache 2.0.
131K tokens
1
available
Cheapest
Alibaba Model Studio
$0.80/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.20Out: $0.60 | 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-27b",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Alibaba Model Studio API • OpenAI-compatible SDK