为什么选它
- 在中等规模开源模型中性价比很强
- 足够支持交互式体验

Alibaba
qwen3.5-27b
面向低成本对话、智能体路由与产品 Copilot 的轻量 Qwen 路线。
参数规模
27B
上下文
256K
最大输出
32K
许可证
Apache 2.0
TTFT
220ms
吞吐
94 tok/s
为什么选它
价格与差价
快速开始
OpenAI 兼容接口,切换 base_url 即可。
from openai import OpenAI
client = OpenAI(
base_url="https://api.luminapath.tech/v1",
api_key="BATCHIN_API_KEY"
)
resp = client.chat.completions.create(
model="qwen3.5-27b",
messages=[{"role": "user", "content": "Summarize why this model is a fit for my workload."}]
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.luminapath.tech/v1",
apiKey: process.env.BATCHIN_API_KEY,
});
const resp = await client.chat.completions.create({
model: "qwen3.5-27b",
messages: [{ role: "user", content: "Summarize why this model is a fit for my workload." }],
});
console.log(resp.choices[0]?.message?.content);curl https://api.luminapath.tech/v1/chat/completions \
-H "Authorization: Bearer $BATCHIN_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3.5-27b",
"messages": [{"role":"user","content":"Summarize why this model is a fit for my workload."}]
}'规格与行为
架构
Dense Transformer
厂商家族
Qwen
上下文
256K
最大输出
32K
适用场景
相关模型
返回模型中心