qwen3.6-27b
关于 qwen3.6-27b
The Qwen3.6 series 27B is a native vision-language Dense model. Compared to 3.5-27B, it focuses on improving agentic coding and further strengthens STEM and reasoning capabilities. On the vision side, it significantly enhances spatial intelligence, object localization and detection, with steady gains in video understanding, document OCR, and visual Agent capabilities.
各路由分组价格
创建 Key 时可在控制台选择分组,状态实时来自路由。 查看各分组实时状态 →
| 分组 | 分组状态 | 模型状态 | 倍率 | 输入 | 输出 | 缓存读取 | 缓存写入 |
|---|---|---|---|---|---|---|---|
Alibaba-2 | … | ×1.2675 | $0.7605 | $4.563 | — | — | |
Self-Deployed-3 | … | ×1.2675 | $0.7605 | $4.563 | — | — | |
Alibaba-3 | … | ×1.859 | $1.115 | $6.692 | — | — |
USD / 百万 Token
支持的接口
openai
一个请求调用 qwen3.6-27b
兼容 OpenAI SDK 及任何 OpenAI 格式的客户端,把 Key 换成你自己的即可。
curl https://api.nixapi.com/v1/chat/completions \
-H "Authorization: Bearer $NIXAPI_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.6-27b",
"messages": [{"role": "user", "content": "Hello!"}]
}'from openai import OpenAI
client = OpenAI(base_url="https://api.nixapi.com/v1", api_key="sk-…")
resp = client.chat.completions.create(
model="qwen3.6-27b",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)import OpenAI from 'openai';
const client = new OpenAI({ baseURL: 'https://api.nixapi.com/v1', apiKey: process.env.NIXAPI_KEY });
const resp = await client.chat.completions.create({
model: "qwen3.6-27b",
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(resp.choices[0].message.content);关于 qwen3.6-27b 的常见问题
qwen3.6-27b 在 NixAPI 上多少钱?
在 Alibaba-2 分组下,输入低至每百万 Token $0.7605,输出低至每百万 Token $4.563。按量付费,以美元计价,没有月最低消费。
如何调用 qwen3.6-27b?
把任意兼容 OpenAI 格式的客户端指向 https://api.nixapi.com/v1,使用你的 NixAPI Key,并把 model 设为 "qwen3.6-27b" 即可。
哪些路由分组提供 qwen3.6-27b?
qwen3.6-27b 可在 3 个路由分组中使用:Alibaba-2、Self-Deployed-3、Alibaba-3。其中 Alibaba-2 分组价格最低。