1
0
forked from agents/opencode

refactor: 调整百炼模型配置顺序,移动 Qwen 系列至末尾

This commit is contained in:
2026-02-28 16:37:33 +08:00
parent ff6d5f89be
commit e7aeec46f2

View File

@@ -82,32 +82,6 @@
"apiKey": "{env:BAILIAN_API_KEY}" "apiKey": "{env:BAILIAN_API_KEY}"
}, },
"models": { "models": {
// Qwen
"qwen3.5-plus": {
"name": "Qwen3.5 Plus",
"reasoning": true,
"modalities": { "input": ["text", "image", "video"], "output": ["text"] },
"limit": { "context": 1000000, "output": 65536 }
},
"qwen3-max-2026-01-23": {
"name": "Qwen3 Max 2026-01-23",
"reasoning": false,
"modalities": { "input": ["text"], "output": ["text"] },
"limit": { "context": 262144, "output": 65536 }
},
"qwen3-coder-next": {
"name": "Qwen3 Coder Next",
"reasoning": false,
"modalities": { "input": ["text"], "output": ["text"] },
"limit": { "context": 262144, "output": 65536 }
},
"qwen3-coder-plus": {
"name": "Qwen3 Coder Plus",
"reasoning": false,
"modalities": { "input": ["text"], "output": ["text"] },
"limit": { "context": 1000000, "output": 65536 }
},
// GLM // GLM
"glm-5": { "glm-5": {
"name": "GLM-5", "name": "GLM-5",
@@ -136,6 +110,32 @@
"reasoning": true, "reasoning": true,
"modalities": { "input": ["text"], "output": ["text"] }, "modalities": { "input": ["text"], "output": ["text"] },
"limit": { "context": 204800, "output": 131072 } "limit": { "context": 204800, "output": 131072 }
},
// Qwen
"qwen3.5-plus": {
"name": "Qwen3.5 Plus",
"reasoning": true,
"modalities": { "input": ["text", "image", "video"], "output": ["text"] },
"limit": { "context": 1000000, "output": 65536 }
},
"qwen3-max-2026-01-23": {
"name": "Qwen3 Max 2026-01-23",
"reasoning": false,
"modalities": { "input": ["text"], "output": ["text"] },
"limit": { "context": 262144, "output": 65536 }
},
"qwen3-coder-next": {
"name": "Qwen3 Coder Next",
"reasoning": false,
"modalities": { "input": ["text"], "output": ["text"] },
"limit": { "context": 262144, "output": 65536 }
},
"qwen3-coder-plus": {
"name": "Qwen3 Coder Plus",
"reasoning": false,
"modalities": { "input": ["text"], "output": ["text"] },
"limit": { "context": 1000000, "output": 65536 }
} }
} }
} }