Qwen-3.5-Plus
Qwen 3.5 Plus
模型代码:qwen3.5-plus
技术规格
| 项目 | 规格 |
|---|---|
| 模型参数 | 3970亿(MoE架构,激活170亿) |
| 训练数据 | 兼容多模态视觉语言训练 |
| 上下文长度 | 1M |
| 最大输出 Token | 65,536 |
| 支持语言 | 中文, 英文, 多语言 |
| 多模态能力 | ✅ 支持文本、图像、视频输入 |
核心能力
- Agentic coding
- 前端编程
- 多模态万物识别
- OCR
- 物体定位
- 逻辑推理
- 多轮对话
- 联网搜索
- Function Calling
API 示例
Python
from openai import OpenAI
client = OpenAI(
base_url="https://openapi.youdao.com/llmgateway/api/v1",
api_key="YOUR_API_KEY"
)
response = client.chat.completions.create(
model="qwen3.5-plus",
messages=[
{"role": "user", "content": "你好,请介绍一下你自己"}
],
stream=False
)
print(response.choices[0].message.content)
JavaScript
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://openapi.youdao.com/llmgateway/api/v1",
apiKey: "YOUR_API_KEY",
});
async function chat() {
const response = await client.chat.completions.create({
model: "qwen3.5-plus",
messages: [
{ role: "user", content: "你好,请介绍一下你自己" }
],
});
console.log(response.choices[0].message.content);
}
chat();
cURL
curl https://openapi.youdao.com/llmgateway/api/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "qwen3.5-plus",
"messages": [
{"role": "system", "content": "你是人工智能助手"},
{"role": "user", "content": "你是谁?"}
],
"stream": false
}'