yingclaw 2.5.5 → 2.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/lib/config.js +22 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,8 +61,8 @@ claw gateway
|
|
|
61
61
|
| Kimi / Moonshot | kimi-k2.5 | kimi-k2.5 |
|
|
62
62
|
| 阿里云百炼 | qwen3-max | qwen3.5-plus |
|
|
63
63
|
| MiniMax | MiniMax-M2.7 | MiniMax-M2.7-Turbo |
|
|
64
|
-
| 智谱 GLM |
|
|
65
|
-
| 小米 MiMo | mimo-
|
|
64
|
+
| 智谱 GLM | GLM-4.7 | GLM-5-Turbo |
|
|
65
|
+
| 小米 MiMo | mimo-v2.5-pro | mimo-v2-flash |
|
|
66
66
|
| 自定义接口 | 自动获取或手动输入 | — |
|
|
67
67
|
|
|
68
68
|
DeepSeek 的 `[1m]` 后缀是真实 API 模型 ID,表示 100 万 token 上下文窗口([官方说明](https://api-docs.deepseek.com/zh-cn/quick_start/agent_integrations/claude_code))。
|
package/lib/config.js
CHANGED
|
@@ -52,6 +52,7 @@ const PROVIDERS = {
|
|
|
52
52
|
name: 'MiniMax',
|
|
53
53
|
baseUrl: 'https://api.minimaxi.com/anthropic',
|
|
54
54
|
modelsUrl: 'https://api.minimaxi.com/v1/models',
|
|
55
|
+
fastModel: 'MiniMax-M2.7-Turbo',
|
|
55
56
|
models: [
|
|
56
57
|
{ name: 'MiniMax M2.7(旗舰)', value: 'MiniMax-M2.7' },
|
|
57
58
|
{ name: 'MiniMax M2.7 Turbo(快速)', value: 'MiniMax-M2.7-Turbo' },
|
|
@@ -62,6 +63,7 @@ const PROVIDERS = {
|
|
|
62
63
|
name: '智谱 GLM',
|
|
63
64
|
baseUrl: 'https://open.bigmodel.cn/api/anthropic',
|
|
64
65
|
modelsUrl: 'https://open.bigmodel.cn/api/paas/v4/models',
|
|
66
|
+
fastModel: 'GLM-5-Turbo',
|
|
65
67
|
models: [
|
|
66
68
|
{ name: 'GLM-4.7(旗舰)', value: 'GLM-4.7' },
|
|
67
69
|
{ name: 'GLM-5.1(强力)', value: 'GLM-5.1' },
|
|
@@ -89,7 +91,27 @@ const PROVIDERS = {
|
|
|
89
91
|
},
|
|
90
92
|
};
|
|
91
93
|
|
|
94
|
+
const PREFERRED_MODEL_IDS = {
|
|
95
|
+
qwen: ['qwen3-max', 'qwen3-plus', 'qwen3.5-plus'],
|
|
96
|
+
minimax: ['MiniMax-M2.7', 'MiniMax-M2.7-Turbo', 'MiniMax-M2.5'],
|
|
97
|
+
glm: ['GLM-4.7', 'GLM-5.1', 'GLM-5-Turbo', 'GLM-4.5-Air'],
|
|
98
|
+
mimo: ['mimo-v2.5-pro', 'mimo-v2.5', 'mimo-v2-flash'],
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
function sortPreferredModelIds(providerKey, ids) {
|
|
102
|
+
const preferred = PREFERRED_MODEL_IDS[providerKey];
|
|
103
|
+
if (!preferred) return ids;
|
|
104
|
+
return [
|
|
105
|
+
...preferred.filter((id) => ids.includes(id)),
|
|
106
|
+
...ids.filter((id) => !preferred.includes(id)),
|
|
107
|
+
];
|
|
108
|
+
}
|
|
109
|
+
|
|
92
110
|
function normalizeModelIds(providerKey, ids) {
|
|
111
|
+
if (PREFERRED_MODEL_IDS[providerKey]) {
|
|
112
|
+
return sortPreferredModelIds(providerKey, ids);
|
|
113
|
+
}
|
|
114
|
+
|
|
93
115
|
if (providerKey !== 'deepseek') return ids;
|
|
94
116
|
|
|
95
117
|
const mapped = ids.map((id) => {
|