imtoagent 0.3.15 → 0.3.16
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/modules/cli/setup.ts
CHANGED
|
@@ -187,7 +187,7 @@ const PROVIDER_PRESETS: ProviderPreset[] = [
|
|
|
187
187
|
name: 'DashScope (Alibaba Bailian)',
|
|
188
188
|
baseUrl: 'https://dashscope.aliyuncs.com/compatible-mode/v1',
|
|
189
189
|
format: 'openai',
|
|
190
|
-
models: ['qwen3.7-max', 'qwen3.6-plus', 'qwen3.6-flash'],
|
|
190
|
+
models: ['qwen3.7-max', 'qwen3.6-plus', 'qwen3.6-flash', 'qwen3.5-omni-plus'],
|
|
191
191
|
},
|
|
192
192
|
{
|
|
193
193
|
name: 'DeepSeek',
|
|
@@ -199,7 +199,7 @@ const PROVIDER_PRESETS: ProviderPreset[] = [
|
|
|
199
199
|
name: 'Zhipu AI (Zhipu)',
|
|
200
200
|
baseUrl: 'https://open.bigmodel.cn/api/paas/v4',
|
|
201
201
|
format: 'openai',
|
|
202
|
-
models: ['glm-5.1', 'glm-5', 'glm-5-turbo', 'glm-4.7'],
|
|
202
|
+
models: ['glm-5.1', 'glm-5', 'glm-5-turbo', 'glm-4.7', 'glm-4.7-flashx', 'glm-4.6', 'glm-4.5-air', 'glm-4.5-airx', 'glm-4-long'],
|
|
203
203
|
},
|
|
204
204
|
{
|
|
205
205
|
name: 'MiniMax',
|
|
@@ -217,7 +217,7 @@ const PROVIDER_PRESETS: ProviderPreset[] = [
|
|
|
217
217
|
name: 'Moonshot (Moonshot AI)',
|
|
218
218
|
baseUrl: 'https://api.moonshot.cn/v1',
|
|
219
219
|
format: 'openai',
|
|
220
|
-
models: ['kimi-k2', '
|
|
220
|
+
models: ['kimi-k2.6', 'kimi-k2.5', 'kimi-k2-thinking'],
|
|
221
221
|
},
|
|
222
222
|
{
|
|
223
223
|
name: 'OpenAI',
|
package/package.json
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
"models": [
|
|
7
7
|
"qwen3.7-max",
|
|
8
8
|
"qwen3.6-plus",
|
|
9
|
-
"qwen3.6-flash"
|
|
9
|
+
"qwen3.6-flash",
|
|
10
|
+
"qwen3.5-omni-plus"
|
|
10
11
|
],
|
|
11
12
|
"format": "openai",
|
|
12
13
|
"pricing": {
|
|
@@ -36,7 +37,12 @@
|
|
|
36
37
|
"glm-5.1",
|
|
37
38
|
"glm-5",
|
|
38
39
|
"glm-5-turbo",
|
|
39
|
-
"glm-4.7"
|
|
40
|
+
"glm-4.7",
|
|
41
|
+
"glm-4.7-flashx",
|
|
42
|
+
"glm-4.6",
|
|
43
|
+
"glm-4.5-air",
|
|
44
|
+
"glm-4.5-airx",
|
|
45
|
+
"glm-4-long"
|
|
40
46
|
],
|
|
41
47
|
"format": "openai",
|
|
42
48
|
"pricing": {
|
|
@@ -63,10 +69,9 @@
|
|
|
63
69
|
"baseUrl": "https://api.moonshot.cn/v1",
|
|
64
70
|
"apiKey": "YOUR_MOONSHOT_API_KEY",
|
|
65
71
|
"models": [
|
|
66
|
-
"kimi-k2",
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"moonshot-v1-128k"
|
|
72
|
+
"kimi-k2.6",
|
|
73
|
+
"kimi-k2.5",
|
|
74
|
+
"kimi-k2-thinking"
|
|
70
75
|
],
|
|
71
76
|
"format": "openai",
|
|
72
77
|
"pricing": {
|