Alibaba's flagship proprietary model engineered for advanced agentic coding, complex reasoning, and long-horizon task execution. Ranked
131K tokens
1
available
Cheapest
Alibaba Model Studio
$9.10/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: $1.30Out: $7.80 | 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.7-max",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Alibaba Model Studio API • OpenAI-compatible SDK