Qwen-3.7-Max
Qwen 3.7 Max
模型代码:qwen3.7-max
技术规格
| 项目 | 规格 |
|---|---|
| 模型参数 | 超1万亿,优化版 MoE 混合专家架构 |
| 上下文长度 | 1M |
| 最大输出 Token | 64K |
| 支持语言 | 中文, 英文, 多语言 |
| 多模态能力 | ✗ 不支持 |
核心能力
- Agentic coding
- 前端编程
- 逻辑推理
- 多轮对话
- 联网搜索
- 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.7-max",
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.7-max",
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.7-max",
"messages": [
{"role": "system", "content": "你是人工智能助手"},
{"role": "user", "content": "你是谁?"}
],
"stream": false
}'