@lobehub/chat 1.88.20 → 1.88.21

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.
Files changed (77) hide show
  1. package/.i18nrc.js +1 -1
  2. package/CHANGELOG.md +26 -0
  3. package/changelog/v1.json +9 -0
  4. package/locales/ar/chat.json +3 -0
  5. package/locales/ar/models.json +92 -17
  6. package/locales/ar/setting.json +0 -12
  7. package/locales/bg-BG/chat.json +3 -0
  8. package/locales/bg-BG/models.json +92 -17
  9. package/locales/bg-BG/setting.json +0 -12
  10. package/locales/de-DE/chat.json +3 -0
  11. package/locales/de-DE/models.json +92 -17
  12. package/locales/de-DE/setting.json +0 -12
  13. package/locales/en-US/chat.json +3 -0
  14. package/locales/en-US/models.json +92 -17
  15. package/locales/en-US/setting.json +0 -12
  16. package/locales/es-ES/chat.json +3 -0
  17. package/locales/es-ES/models.json +92 -17
  18. package/locales/es-ES/setting.json +0 -12
  19. package/locales/fa-IR/chat.json +3 -0
  20. package/locales/fa-IR/models.json +92 -17
  21. package/locales/fa-IR/setting.json +0 -12
  22. package/locales/fr-FR/chat.json +3 -0
  23. package/locales/fr-FR/models.json +92 -17
  24. package/locales/fr-FR/setting.json +0 -12
  25. package/locales/it-IT/chat.json +3 -0
  26. package/locales/it-IT/models.json +92 -17
  27. package/locales/it-IT/setting.json +0 -12
  28. package/locales/ja-JP/chat.json +3 -0
  29. package/locales/ja-JP/models.json +92 -17
  30. package/locales/ja-JP/setting.json +0 -12
  31. package/locales/ko-KR/chat.json +3 -0
  32. package/locales/ko-KR/models.json +92 -17
  33. package/locales/ko-KR/setting.json +0 -12
  34. package/locales/nl-NL/chat.json +3 -0
  35. package/locales/nl-NL/models.json +92 -17
  36. package/locales/nl-NL/setting.json +0 -12
  37. package/locales/pl-PL/chat.json +3 -0
  38. package/locales/pl-PL/models.json +92 -17
  39. package/locales/pl-PL/setting.json +0 -12
  40. package/locales/pt-BR/chat.json +3 -0
  41. package/locales/pt-BR/models.json +92 -17
  42. package/locales/pt-BR/setting.json +0 -12
  43. package/locales/ru-RU/chat.json +3 -0
  44. package/locales/ru-RU/models.json +92 -17
  45. package/locales/ru-RU/setting.json +0 -12
  46. package/locales/tr-TR/chat.json +3 -0
  47. package/locales/tr-TR/models.json +92 -17
  48. package/locales/tr-TR/setting.json +0 -12
  49. package/locales/vi-VN/chat.json +3 -0
  50. package/locales/vi-VN/models.json +92 -17
  51. package/locales/vi-VN/setting.json +0 -12
  52. package/locales/zh-CN/chat.json +3 -0
  53. package/locales/zh-CN/models.json +89 -14
  54. package/locales/zh-CN/setting.json +0 -12
  55. package/locales/zh-TW/chat.json +3 -0
  56. package/locales/zh-TW/models.json +92 -17
  57. package/locales/zh-TW/setting.json +0 -12
  58. package/package.json +1 -1
  59. package/src/config/aiModels/deepseek.ts +5 -3
  60. package/src/config/aiModels/groq.ts +16 -29
  61. package/src/config/aiModels/hunyuan.ts +104 -82
  62. package/src/config/aiModels/novita.ts +27 -121
  63. package/src/config/aiModels/openai.ts +19 -2
  64. package/src/config/aiModels/openrouter.ts +59 -47
  65. package/src/config/aiModels/siliconcloud.ts +73 -39
  66. package/src/config/aiModels/volcengine.ts +3 -3
  67. package/src/config/aiModels/xai.ts +2 -0
  68. package/src/features/AgentSetting/AgentModal/index.tsx +1 -26
  69. package/src/features/ChatInput/ActionBar/Model/ControlsForm.tsx +12 -0
  70. package/src/features/ChatInput/ActionBar/Model/ReasoningEffortSlider.tsx +57 -0
  71. package/src/libs/model-runtime/novita/__snapshots__/index.test.ts.snap +1 -1
  72. package/src/locales/default/chat.ts +3 -0
  73. package/src/locales/default/setting.ts +0 -12
  74. package/src/services/chat.ts +5 -1
  75. package/src/store/chat/slices/aiChat/actions/generateAIChat.ts +0 -5
  76. package/src/types/agent/chatConfig.ts +1 -0
  77. package/src/types/aiModel.ts +5 -1
@@ -1,7 +1,5 @@
1
1
  import { AIChatModelCard } from '@/types/aiModel';
2
-
3
2
  // https://cloud.tencent.com/document/product/1729/104753
4
-
5
3
  const hunyuanChatModels: AIChatModelCard[] = [
6
4
  {
7
5
  abilities: {
@@ -20,6 +18,28 @@ const hunyuanChatModels: AIChatModelCard[] = [
20
18
  input: 1,
21
19
  output: 4,
22
20
  },
21
+ releasedAt: '2025-05-21',
22
+ settings: {
23
+ searchImpl: 'params',
24
+ },
25
+ type: 'chat',
26
+ },
27
+ {
28
+ abilities: {
29
+ reasoning: true,
30
+ search: true,
31
+ },
32
+ contextWindowTokens: 92_000,
33
+ description:
34
+ '提升项目级别代码生成能力;提升文本生成写作质量;提升文本理解 topic 的多轮、tob 指令遵循和字词理解能力;优化繁简混杂和中英混杂输出问题。',
35
+ displayName: 'Hunyuan T1 20250403',
36
+ id: 'hunyuan-t1-20250403',
37
+ maxOutput: 64_000,
38
+ pricing: {
39
+ currency: 'CNY',
40
+ input: 1,
41
+ output: 4,
42
+ },
23
43
  releasedAt: '2025-04-03',
24
44
  settings: {
25
45
  searchImpl: 'params',
@@ -220,12 +240,12 @@ const hunyuanChatModels: AIChatModelCard[] = [
220
240
  functionCall: true,
221
241
  search: true,
222
242
  },
223
- contextWindowTokens: 32_000,
243
+ contextWindowTokens: 44_000,
224
244
  description: 'hunyuan-TurboS 混元旗舰大模型最新版本,具备更强的思考能力,更优的体验效果。',
225
245
  displayName: 'Hunyuan TurboS',
226
246
  enabled: true,
227
247
  id: 'hunyuan-turbos-latest',
228
- maxOutput: 8000,
248
+ maxOutput: 16_000,
229
249
  pricing: {
230
250
  currency: 'CNY',
231
251
  input: 0.8,
@@ -237,29 +257,6 @@ const hunyuanChatModels: AIChatModelCard[] = [
237
257
  },
238
258
  type: 'chat',
239
259
  },
240
- // 重定向模型先行注释,待 latest 更新后再显示
241
- // {
242
- // abilities: {
243
- // functionCall: true,
244
- // search: true,
245
- // },
246
- // contextWindowTokens: 32_000,
247
- // description:
248
- // '统一数学解题步骤的风格,加强数学多轮问答。文本创作优化回答风格,去除AI味,增加文采。',
249
- // displayName: 'Hunyuan TurboS 20250313',
250
- // id: 'hunyuan-turbos-20250313',
251
- // maxOutput: 8000,
252
- // pricing: {
253
- // currency: 'CNY',
254
- // input: 0.8,
255
- // output: 2,
256
- // },
257
- // releasedAt: '2025-03-13',
258
- // settings: {
259
- // searchImpl: 'params',
260
- // },
261
- // type: 'chat',
262
- // },
263
260
  {
264
261
  abilities: {
265
262
  functionCall: true,
@@ -267,16 +264,38 @@ const hunyuanChatModels: AIChatModelCard[] = [
267
264
  },
268
265
  contextWindowTokens: 32_000,
269
266
  description:
270
- 'hunyuan-TurboS pv2.1.2 固定版本预训练底座训练token 数升级;数学/逻辑/代码等思考能力提升;中英文通用体验效果提升,包括文本创作、文本理解、知识问答、闲聊等。',
271
- displayName: 'Hunyuan TurboS 20250226',
272
- id: 'hunyuan-turbos-20250226',
267
+ '预训练底座升级,增强底座的指令理解及遵循能力;对齐阶段增强数学、代码、逻辑、科学等理科能力;提升文创写作质量、文本理解、翻译准确率、知识问答等文科能力;增强各领域 Agent 能力,重点加强多轮对话理解能力等。',
268
+ displayName: 'Hunyuan TurboS 20250416',
269
+ id: 'hunyuan-turbos-20250416',
273
270
  maxOutput: 8000,
274
271
  pricing: {
275
272
  currency: 'CNY',
276
273
  input: 0.8,
277
274
  output: 2,
278
275
  },
279
- releasedAt: '2025-02-25',
276
+ releasedAt: '2025-04-16',
277
+ settings: {
278
+ searchImpl: 'params',
279
+ },
280
+ type: 'chat',
281
+ },
282
+ {
283
+ abilities: {
284
+ functionCall: true,
285
+ search: true,
286
+ },
287
+ contextWindowTokens: 32_000,
288
+ description:
289
+ '统一数学解题步骤的风格,加强数学多轮问答。文本创作优化回答风格,去除AI味,增加文采。',
290
+ displayName: 'Hunyuan TurboS 20250313',
291
+ id: 'hunyuan-turbos-20250313',
292
+ maxOutput: 8000,
293
+ pricing: {
294
+ currency: 'CNY',
295
+ input: 0.8,
296
+ output: 2,
297
+ },
298
+ releasedAt: '2025-03-13',
280
299
  settings: {
281
300
  searchImpl: 'params',
282
301
  },
@@ -302,6 +321,7 @@ const hunyuanChatModels: AIChatModelCard[] = [
302
321
  contextWindowTokens: 8000,
303
322
  description: '混元最新多模态模型,支持多语种作答,中英文能力均衡。',
304
323
  displayName: 'Hunyuan Standard Vision',
324
+ enabled: true,
305
325
  id: 'hunyuan-standard-vision',
306
326
  maxOutput: 2000,
307
327
  releasedAt: '2024-12-31',
@@ -329,19 +349,27 @@ const hunyuanChatModels: AIChatModelCard[] = [
329
349
  abilities: {
330
350
  vision: true,
331
351
  },
332
- contextWindowTokens: 8000,
352
+ contextWindowTokens: 16_000,
333
353
  description:
334
- '此模型适用于图文理解场景,是基于混元最新 turbos 的新一代视觉语言旗舰大模型,聚焦图文理解相关任务,包括基于图片的实体识别、知识问答、文案创作、拍照解题等方面,相比前一代模型全面提升。',
335
- displayName: 'Hunyuan TurboS Vision',
336
- enabled: true,
337
- id: 'hunyuan-turbos-vision',
338
- maxOutput: 2000,
339
- pricing: {
340
- currency: 'CNY',
341
- input: 3,
342
- output: 9,
354
+ '此模型适用于图文理解场景,是基于混元Large训练的视觉语言大模型,支持任意分辨率多张图片+文本输入,生成文本内容,聚焦图文理解相关任务,在多语言图文理解能力上有显著提升。',
355
+ displayName: 'Hunyuan Large Vision',
356
+ id: 'hunyuan-large-vision',
357
+ maxOutput: 8000,
358
+ releasedAt: '2025-05-26',
359
+ type: 'chat',
360
+ },
361
+ {
362
+ abilities: {
363
+ reasoning: true,
364
+ vision: true,
343
365
  },
344
- releasedAt: '2025-04-07',
366
+ contextWindowTokens: 32_000,
367
+ description:
368
+ '混元多模态理解深度思考模型,支持多模态原生长思维链,擅长处理各种图片推理场景,在理科难题上相比快思考模型全面提升。',
369
+ displayName: 'Hunyuan T1 Vision',
370
+ id: 'hunyuan-t1-vision',
371
+ maxOutput: 24_000,
372
+ releasedAt: '2025-05-16',
345
373
  type: 'chat',
346
374
  },
347
375
  {
@@ -351,7 +379,6 @@ const hunyuanChatModels: AIChatModelCard[] = [
351
379
  contextWindowTokens: 32_000,
352
380
  description: '混元最新多模态模型,支持图片+文本输入生成文本内容。',
353
381
  displayName: 'Hunyuan Vision',
354
- enabled: true,
355
382
  id: 'hunyuan-vision',
356
383
  maxOutput: 16_000,
357
384
  pricing: {
@@ -362,20 +389,6 @@ const hunyuanChatModels: AIChatModelCard[] = [
362
389
  releasedAt: '2025-01-03',
363
390
  type: 'chat',
364
391
  },
365
- {
366
- abilities: {
367
- reasoning: true,
368
- vision: true,
369
- },
370
- contextWindowTokens: 8192 + 24_576,
371
- description: '混元多模态理解深度思考模型,支持多模态原生长思维链,擅长处理各种图片推理场景,在理科难题上相比快思考模型全面提升。',
372
- displayName: 'Hunyuan T1 Vision',
373
- enabled: true,
374
- id: 'hunyuan-t1-vision',
375
- maxOutput: 8192,
376
- releasedAt: '2025-05-16',
377
- type: 'chat',
378
- },
379
392
  {
380
393
  contextWindowTokens: 8000,
381
394
  description:
@@ -425,35 +438,44 @@ const hunyuanChatModels: AIChatModelCard[] = [
425
438
  type: 'chat',
426
439
  },
427
440
  {
428
- contextWindowTokens: 8000,
429
- description:
430
- '混元翻译模型支持自然语言对话式翻译;支持中文和英语、日语、法语、葡萄牙语、西班牙语、土耳其语、俄语、阿拉伯语、韩语、意大利语、德语、越南语、马来语、印尼语15种语言互译。',
431
- displayName: 'Hunyuan Translation Lite',
432
- id: 'hunyuan-translation-lite',
433
- maxOutput: 4000,
434
- pricing: {
435
- currency: 'CNY',
436
- input: 1,
437
- output: 3,
438
- },
439
- releasedAt: '2024-11-25',
440
- type: 'chat',
441
- },
442
- {
443
- contextWindowTokens: 8000,
441
+ contextWindowTokens: 32_000,
444
442
  description:
445
- '支持中文和英语、日语、法语、葡萄牙语、西班牙语、土耳其语、俄语、阿拉伯语、韩语、意大利语、德语、越南语、马来语、印尼语15种语言互译,基于多场景翻译评测集自动化评估COMET评分,在十余种常用语种中外互译能力上整体优于市场同规模模型。',
446
- displayName: 'Hunyuan Translation',
447
- id: 'hunyuan-translation',
443
+ '混元最新版角色扮演模型,混元官方精调训练推出的角色扮演模型,基于混元模型结合角色扮演场景数据集进行增训,在角色扮演场景具有更好的基础效果。',
444
+ displayName: 'Hunyuan TurboS Role Plus',
445
+ id: 'hunyuan-turbos-role-plus',
448
446
  maxOutput: 4000,
449
- pricing: {
450
- currency: 'CNY',
451
- input: 15,
452
- output: 45,
453
- },
454
- releasedAt: '2024-10-25',
455
447
  type: 'chat',
456
448
  },
449
+ // {
450
+ // contextWindowTokens: 8000,
451
+ // description:
452
+ // '混元翻译模型支持自然语言对话式翻译;支持中文和英语、日语、法语、葡萄牙语、西班牙语、土耳其语、俄语、阿拉伯语、韩语、意大利语、德语、越南语、马来语、印尼语15种语言互译。',
453
+ // displayName: 'Hunyuan Translation Lite',
454
+ // id: 'hunyuan-translation-lite',
455
+ // maxOutput: 4000,
456
+ // pricing: {
457
+ // currency: 'CNY',
458
+ // input: 1,
459
+ // output: 3,
460
+ // },
461
+ // releasedAt: '2024-11-25',
462
+ // type: 'chat',
463
+ // },
464
+ // {
465
+ // contextWindowTokens: 8000,
466
+ // description:
467
+ // '支持中文和英语、日语、法语、葡萄牙语、西班牙语、土耳其语、俄语、阿拉伯语、韩语、意大利语、德语、越南语、马来语、印尼语15种语言互译,基于多场景翻译评测集自动化评估COMET评分,在十余种常用语种中外互译能力上整体优于市场同规模模型。',
468
+ // displayName: 'Hunyuan Translation',
469
+ // id: 'hunyuan-translation',
470
+ // maxOutput: 4000,
471
+ // pricing: {
472
+ // currency: 'CNY',
473
+ // input: 15,
474
+ // output: 45,
475
+ // },
476
+ // releasedAt: '2024-10-25',
477
+ // type: 'chat',
478
+ // },
457
479
  ];
458
480
 
459
481
  export const allModels = [...hunyuanChatModels];
@@ -1,36 +1,6 @@
1
1
  import { AIChatModelCard } from '@/types/aiModel';
2
2
  // https://novita.ai/pricing
3
3
  const novitaChatModels: AIChatModelCard[] = [
4
- {
5
- contextWindowTokens: 200_000,
6
- displayName: 'Claude Opus 4',
7
- id: 'pa/cd-op-4-20250514',
8
- pricing: {
9
- input: 15,
10
- output: 75
11
- },
12
- type: 'chat',
13
- },
14
- {
15
- contextWindowTokens: 32_000,
16
- displayName: 'Qwen3 0.6B FP8',
17
- id: 'qwen/qwen3-0.6b-fp8',
18
- pricing: {
19
- input: 0,
20
- output: 0
21
- },
22
- type: 'chat',
23
- },
24
- {
25
- contextWindowTokens: 32_000,
26
- displayName: 'Qwen3 1.7B FP8',
27
- id: 'qwen/qwen3-1.7b-fp8',
28
- pricing: {
29
- input: 0,
30
- output: 0
31
- },
32
- type: 'chat',
33
- },
34
4
  {
35
5
  contextWindowTokens: 128_000,
36
6
  displayName: 'Qwen3 4B FP8',
@@ -41,16 +11,6 @@ const novitaChatModels: AIChatModelCard[] = [
41
11
  },
42
12
  type: 'chat',
43
13
  },
44
- {
45
- contextWindowTokens: 160_000,
46
- displayName: 'Deepseek Prover V2 671B',
47
- id: 'deepseek/deepseek-prover-v2-671b',
48
- pricing: {
49
- input: 0.7,
50
- output: 2.5
51
- },
52
- type: 'chat',
53
- },
54
14
  {
55
15
  contextWindowTokens: 40_960,
56
16
  displayName: 'Qwen3 235B A22B FP8',
@@ -101,16 +61,6 @@ const novitaChatModels: AIChatModelCard[] = [
101
61
  },
102
62
  type: 'chat',
103
63
  },
104
- {
105
- contextWindowTokens: 40_960,
106
- displayName: 'Qwen3 14B FP8',
107
- id: 'qwen/qwen3-14b-fp8',
108
- pricing: {
109
- input: 0.07,
110
- output: 0.275
111
- },
112
- type: 'chat',
113
- },
114
64
  {
115
65
  contextWindowTokens: 131_072,
116
66
  displayName: 'Llama 4 Scout 17B Instruct',
@@ -144,18 +94,6 @@ const novitaChatModels: AIChatModelCard[] = [
144
94
  },
145
95
  type: 'chat',
146
96
  },
147
- {
148
- contextWindowTokens: 32_768,
149
- description:
150
- 'Llama 3.1 70B Instruct 专为高质量对话而设计,在人类评估中表现突出,特别适合高交互场景。',
151
- displayName: 'Llama 3.1 70B Instruct',
152
- id: 'meta-llama/llama-3.1-70b-instruct',
153
- pricing: {
154
- input: 0.34,
155
- output: 0.39,
156
- },
157
- type: 'chat',
158
- },
159
97
  {
160
98
  contextWindowTokens: 8192,
161
99
  description: 'Llama 3 8B Instruct 优化了高质量对话场景,性能优于许多闭源模型。',
@@ -178,17 +116,6 @@ const novitaChatModels: AIChatModelCard[] = [
178
116
  },
179
117
  type: 'chat',
180
118
  },
181
- {
182
- contextWindowTokens: 8192,
183
- description: 'Gemma 2 9B 是谷歌的一款开源语言模型,以其在效率和性能方面设立了新的标准。',
184
- displayName: 'Gemma 2 9B',
185
- id: 'google/gemma-2-9b-it',
186
- pricing: {
187
- input: 0.08,
188
- output: 0.08,
189
- },
190
- type: 'chat',
191
- },
192
119
  {
193
120
  contextWindowTokens: 32_000,
194
121
  description: 'Gemma 3 27B 是谷歌的一款开源语言模型,以其在效率和性能方面设立了新的标准。',
@@ -217,7 +144,7 @@ const novitaChatModels: AIChatModelCard[] = [
217
144
  displayName: 'Mistral 7B Instruct',
218
145
  id: 'mistralai/mistral-7b-instruct',
219
146
  pricing: {
220
- input: 0.059,
147
+ input: 0.029,
221
148
  output: 0.059,
222
149
  },
223
150
  type: 'chat',
@@ -287,16 +214,13 @@ const novitaChatModels: AIChatModelCard[] = [
287
214
  type: 'chat',
288
215
  },
289
216
  {
290
- abilities: {
291
- reasoning: true,
292
- },
293
- contextWindowTokens: 64_000,
294
- displayName: 'Deepseek R1 Turbo',
217
+ contextWindowTokens: 128_000,
218
+ displayName: 'Deepseek V3 0324',
295
219
  enabled: true,
296
- id: 'deepseek/deepseek-r1-turbo',
220
+ id: 'deepseek/deepseek-v3-0324',
297
221
  pricing: {
298
- input: 0.7,
299
- output: 2.5,
222
+ input: 0.33,
223
+ output: 1.3,
300
224
  },
301
225
  type: 'chat',
302
226
  },
@@ -304,33 +228,39 @@ const novitaChatModels: AIChatModelCard[] = [
304
228
  abilities: {
305
229
  reasoning: true,
306
230
  },
307
- contextWindowTokens: 64_000,
308
- displayName: 'Deepseek R1',
309
- id: 'deepseek/deepseek-r1',
231
+ contextWindowTokens: 128_000,
232
+ displayName: 'Deepseek R1 0528',
233
+ enabled: true,
234
+ id: 'deepseek/deepseek-r1-0528',
310
235
  pricing: {
311
- input: 4,
312
- output: 4,
236
+ input: 0.7,
237
+ output: 2.5,
313
238
  },
314
239
  type: 'chat',
315
240
  },
316
241
  {
242
+ abilities: {
243
+ reasoning: true,
244
+ },
317
245
  contextWindowTokens: 128_000,
318
- displayName: 'Deepseek V3 0324',
319
- enabled: true,
320
- id: 'deepseek/deepseek-v3-0324',
246
+ displayName: 'DeepSeek R1 0528 Qwen3 8B',
247
+ id: 'deepseek/deepseek-r1-0528-qwen3-8b',
321
248
  pricing: {
322
- input: 0.33,
323
- output: 1.3,
249
+ input: 0.06,
250
+ output: 0.09,
324
251
  },
325
252
  type: 'chat',
326
253
  },
327
254
  {
255
+ abilities: {
256
+ reasoning: true,
257
+ },
328
258
  contextWindowTokens: 64_000,
329
- displayName: 'Deepseek V3',
330
- id: 'deepseek/deepseek_v3',
259
+ displayName: 'Deepseek R1 Turbo',
260
+ id: 'deepseek/deepseek-r1-turbo',
331
261
  pricing: {
332
- input: 0.89,
333
- output: 0.89,
262
+ input: 0.7,
263
+ output: 2.5,
334
264
  },
335
265
  type: 'chat',
336
266
  },
@@ -407,7 +337,7 @@ const novitaChatModels: AIChatModelCard[] = [
407
337
  type: 'chat',
408
338
  },
409
339
  {
410
- contextWindowTokens: 16_000,
340
+ contextWindowTokens: 8192,
411
341
  displayName: 'L3 70B Euryale v2.1',
412
342
  id: 'sao10k/l3-70b-euryale-v2.1',
413
343
  pricing: {
@@ -460,16 +390,6 @@ const novitaChatModels: AIChatModelCard[] = [
460
390
  },
461
391
  type: 'chat',
462
392
  },
463
- {
464
- contextWindowTokens: 32_768,
465
- displayName: 'Llama 3.2 11B Vision Instruct',
466
- id: 'meta-llama/llama-3.2-11b-vision-instruct',
467
- pricing: {
468
- input: 0.06,
469
- output: 0.06,
470
- },
471
- type: 'chat',
472
- },
473
393
  {
474
394
  contextWindowTokens: 32_768,
475
395
  displayName: 'Llama 3.2 3B Instruct',
@@ -500,20 +420,6 @@ const novitaChatModels: AIChatModelCard[] = [
500
420
  },
501
421
  type: 'chat',
502
422
  },
503
- {
504
- abilities: {
505
- reasoning: true,
506
- },
507
- contextWindowTokens: 32_768,
508
- displayName: 'QwQ 32B',
509
- enabled: true,
510
- id: 'qwen/qwq-32b',
511
- pricing: {
512
- input: 0.18,
513
- output: 0.2,
514
- },
515
- type: 'chat',
516
- },
517
423
  {
518
424
  contextWindowTokens: 32_000,
519
425
  displayName: 'Qwen2.5 7B Instruct',
@@ -27,6 +27,9 @@ export const openaiChatModels: AIChatModelCard[] = [
27
27
  output: 40,
28
28
  },
29
29
  releasedAt: '2025-04-17',
30
+ settings: {
31
+ extendParams: ['reasoningEffort'],
32
+ },
30
33
  type: 'chat',
31
34
  },
32
35
  {
@@ -48,6 +51,9 @@ export const openaiChatModels: AIChatModelCard[] = [
48
51
  output: 4.4,
49
52
  },
50
53
  releasedAt: '2025-04-17',
54
+ settings: {
55
+ extendParams: ['reasoningEffort'],
56
+ },
51
57
  type: 'chat',
52
58
  },
53
59
  {
@@ -124,6 +130,9 @@ export const openaiChatModels: AIChatModelCard[] = [
124
130
  output: 4.4,
125
131
  },
126
132
  releasedAt: '2025-01-31',
133
+ settings: {
134
+ extendParams: ['reasoningEffort'],
135
+ },
127
136
  type: 'chat',
128
137
  },
129
138
  {
@@ -142,6 +151,9 @@ export const openaiChatModels: AIChatModelCard[] = [
142
151
  output: 4.4,
143
152
  },
144
153
  releasedAt: '2024-09-12',
154
+ settings: {
155
+ extendParams: ['reasoningEffort'],
156
+ },
145
157
  type: 'chat',
146
158
  },
147
159
  {
@@ -161,6 +173,9 @@ export const openaiChatModels: AIChatModelCard[] = [
161
173
  output: 60,
162
174
  },
163
175
  releasedAt: '2024-12-17',
176
+ settings: {
177
+ extendParams: ['reasoningEffort'],
178
+ },
164
179
  type: 'chat',
165
180
  },
166
181
  {
@@ -178,6 +193,9 @@ export const openaiChatModels: AIChatModelCard[] = [
178
193
  output: 60,
179
194
  },
180
195
  releasedAt: '2024-09-12',
196
+ settings: {
197
+ extendParams: ['reasoningEffort'],
198
+ },
181
199
  type: 'chat',
182
200
  },
183
201
  {
@@ -478,8 +496,7 @@ export const openaiChatModels: AIChatModelCard[] = [
478
496
  },
479
497
  {
480
498
  contextWindowTokens: 4096,
481
- description:
482
- 'GPT 3.5 Turbo,适用于各种文本生成和理解任务,对指令遵循的优化',
499
+ description: 'GPT 3.5 Turbo,适用于各种文本生成和理解任务,对指令遵循的优化',
483
500
  displayName: 'GPT-3.5 Turbo Instruct',
484
501
  id: 'gpt-3.5-turbo-instruct',
485
502
  pricing: {
@@ -499,11 +499,59 @@ const openrouterChatModels: AIChatModelCard[] = [
499
499
  type: 'chat',
500
500
  },
501
501
  {
502
+ abilities: {
503
+ reasoning: true,
504
+ },
502
505
  contextWindowTokens: 163_840,
503
506
  description:
504
- 'DeepSeek V3 是一个 685B 参数的专家混合模型,是 DeepSeek 团队旗舰聊天模型系列的最新迭代。\n\n它继承了 [DeepSeek V3](/deepseek/deepseek-chat-v3) 模型,并在各种任务上表现出色。',
505
- displayName: 'DeepSeek V3 0324 (Free)',
506
- id: 'deepseek/deepseek-chat-v3-0324:free',
507
+ 'DeepSeek-R1 在仅有极少标注数据的情况下,极大提升了模型推理能力。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
508
+ displayName: 'DeepSeek R1 0528',
509
+ id: 'deepseek/deepseek-r1-0528',
510
+ pricing: {
511
+ input: 0.5,
512
+ output: 2.18,
513
+ },
514
+ releasedAt: '2025-05-28',
515
+ type: 'chat',
516
+ },
517
+ {
518
+ abilities: {
519
+ reasoning: true,
520
+ },
521
+ contextWindowTokens: 163_840,
522
+ description:
523
+ 'DeepSeek-R1 在仅有极少标注数据的情况下,极大提升了模型推理能力。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
524
+ displayName: 'DeepSeek R1 0528 (Free)',
525
+ id: 'deepseek/deepseek-r1-0528:free',
526
+ releasedAt: '2025-05-28',
527
+ type: 'chat',
528
+ },
529
+ {
530
+ abilities: {
531
+ reasoning: true,
532
+ },
533
+ contextWindowTokens: 163_840,
534
+ description:
535
+ 'DeepSeek-R1 在仅有极少标注数据的情况下,极大提升了模型推理能力。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
536
+ displayName: 'DeepSeek R1',
537
+ id: 'deepseek/deepseek-r1',
538
+ pricing: {
539
+ input: 3,
540
+ output: 8,
541
+ },
542
+ releasedAt: '2025-01-20',
543
+ type: 'chat',
544
+ },
545
+ {
546
+ abilities: {
547
+ reasoning: true,
548
+ },
549
+ contextWindowTokens: 163_840,
550
+ description:
551
+ 'DeepSeek-R1 在仅有极少标注数据的情况下,极大提升了模型推理能力。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
552
+ displayName: 'DeepSeek R1 (Free)',
553
+ id: 'deepseek/deepseek-r1:free',
554
+ releasedAt: '2025-01-20',
507
555
  type: 'chat',
508
556
  },
509
557
  {
@@ -519,6 +567,14 @@ const openrouterChatModels: AIChatModelCard[] = [
519
567
  },
520
568
  type: 'chat',
521
569
  },
570
+ {
571
+ contextWindowTokens: 163_840,
572
+ description:
573
+ 'DeepSeek V3 是一个 685B 参数的专家混合模型,是 DeepSeek 团队旗舰聊天模型系列的最新迭代。\n\n它继承了 [DeepSeek V3](/deepseek/deepseek-chat-v3) 模型,并在各种任务上表现出色。',
574
+ displayName: 'DeepSeek V3 0324 (Free)',
575
+ id: 'deepseek/deepseek-chat-v3-0324:free',
576
+ type: 'chat',
577
+ },
522
578
  {
523
579
  abilities: {
524
580
  functionCall: true,
@@ -673,50 +729,6 @@ const openrouterChatModels: AIChatModelCard[] = [
673
729
  },
674
730
  type: 'chat',
675
731
  },
676
- {
677
- abilities: {
678
- functionCall: true,
679
- },
680
- contextWindowTokens: 128_000,
681
- description:
682
- '融合通用与代码能力的全新开源模型, 不仅保留了原有 Chat 模型的通用对话能力和 Coder 模型的强大代码处理能力,还更好地对齐了人类偏好。此外,DeepSeek-V2.5 在写作任务、指令跟随等多个方面也实现了大幅提升。',
683
- displayName: 'DeepSeek V2.5',
684
- id: 'deepseek/deepseek-chat',
685
- pricing: {
686
- input: 0.14,
687
- output: 0.28,
688
- },
689
- releasedAt: '2024-09-05',
690
- type: 'chat',
691
- },
692
- {
693
- abilities: {
694
- reasoning: true,
695
- },
696
- contextWindowTokens: 163_840,
697
- description:
698
- 'DeepSeek-R1 在仅有极少标注数据的情况下,极大提升了模型推理能力。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
699
- displayName: 'DeepSeek R1',
700
- id: 'deepseek/deepseek-r1',
701
- pricing: {
702
- input: 3,
703
- output: 8,
704
- },
705
- releasedAt: '2025-01-20',
706
- type: 'chat',
707
- },
708
- {
709
- abilities: {
710
- reasoning: true,
711
- },
712
- contextWindowTokens: 163_840,
713
- description:
714
- 'DeepSeek-R1 在仅有极少标注数据的情况下,极大提升了模型推理能力。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
715
- displayName: 'DeepSeek R1 (Free)',
716
- id: 'deepseek/deepseek-r1:free',
717
- releasedAt: '2025-01-20',
718
- type: 'chat',
719
- },
720
732
  {
721
733
  abilities: {
722
734
  vision: true,