Publish time
2025/2/1Model Series
千问Input type
Output type
Context Window
131,072Max Output Length
2,048Input Price
¥3 / 1M tokensOutput Price
¥9 / 1M tokens相比qwen-vl-plus再次提升视觉推理和指令遵循能力,在更多复杂任务中提供最佳性能。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
No data
Throughput
11.79tps
Uptime
36.00%
Provider Model
qwen-vl-max
Supported Parameters
Recent Uptime
Reasoning
-
Supported Response Formats
Request Log Collection
-
Distillable
-
Total Context
131,072
Max Output
2,048
Input Price
¥3 / 1M tokens
Output Price
¥9 / 1M tokens
Compare different providers across Zhinao API
9.54 tok/s
0.77 s
Uptime for alibaba/qwen-vl-max across all providers
Zhinao API normalizes requests and responses across providers for you
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.360.cn/v1",
apiKey: process.env.ZHINAO_API_KEY,
});
const response = await client.chat.completions.create({
model: "alibaba/qwen-vl-max",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);