Skip to content

Commit 2eb198c

Browse files
authored
💄 style: Update Hunyuan models & deepseek-r1-0528 (#7993)
* Update hunyuan.ts * Update novita.ts * Update siliconcloud.ts * Update deepseek.ts * Update deepseek.ts * Update novita.ts * Update openrouter.ts * Update novita.ts * Update siliconcloud.ts * Update volcengine.ts * Update volcengine.ts * Update novita.ts * Update siliconcloud.ts * update snap * Update novita.ts * Update siliconcloud.ts * Update siliconcloud.ts * Update groq.ts
1 parent 750b26a commit 2eb198c

File tree

8 files changed

+288
-325
lines changed

8 files changed

+288
-325
lines changed

src/config/aiModels/deepseek.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { AIChatModelCard } from '@/types/aiModel';
2-
2+
// https://api-docs.deepseek.com/zh-cn/quick_start/pricing
33
const deepseekChatModels: AIChatModelCard[] = [
44
{
55
abilities: {
@@ -11,13 +11,14 @@ const deepseekChatModels: AIChatModelCard[] = [
1111
displayName: 'DeepSeek V3',
1212
enabled: true,
1313
id: 'deepseek-chat',
14+
maxOutput: 8192,
1415
pricing: {
1516
cachedInput: 0.5,
1617
currency: 'CNY',
1718
input: 2,
1819
output: 8,
1920
},
20-
releasedAt: '2024-12-26',
21+
releasedAt: '2025-03-24',
2122
type: 'chat',
2223
},
2324
{
@@ -31,13 +32,14 @@ const deepseekChatModels: AIChatModelCard[] = [
3132
displayName: 'DeepSeek R1',
3233
enabled: true,
3334
id: 'deepseek-reasoner',
35+
maxOutput: 8192,
3436
pricing: {
3537
cachedInput: 1,
3638
currency: 'CNY',
3739
input: 4,
3840
output: 16,
3941
},
40-
releasedAt: '2025-01-20',
42+
releasedAt: '2025-05-28',
4143
type: 'chat',
4244
},
4345
];

src/config/aiModels/groq.ts

Lines changed: 16 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ const groqChatModels: AIChatModelCard[] = [
4242
id: 'meta-llama/llama-4-maverick-17b-128e-instruct',
4343
maxOutput: 8192,
4444
pricing: {
45-
input: 0.5,
46-
output: 0.77,
45+
input: 0.2,
46+
output: 0.6,
4747
},
4848
type: 'chat',
4949
},
@@ -76,17 +76,6 @@ const groqChatModels: AIChatModelCard[] = [
7676
},
7777
type: 'chat',
7878
},
79-
{
80-
contextWindowTokens: 131_072,
81-
displayName: 'DeepSeek R1 Distill Llama 70B SpecDec',
82-
id: 'deepseek-r1-distill-llama-70b-specdec',
83-
maxOutput: 16_384,
84-
pricing: {
85-
input: 0.75,
86-
output: 0.99,
87-
},
88-
type: 'chat',
89-
},
9079
{
9180
abilities: {
9281
functionCall: true,
@@ -157,32 +146,18 @@ const groqChatModels: AIChatModelCard[] = [
157146
},
158147
{
159148
contextWindowTokens: 32_768,
160-
displayName: 'Mixtral Saba 24B',
149+
displayName: 'Mistral Saba 24B',
161150
id: 'mistral-saba-24b',
162151
pricing: {
163152
input: 0.79,
164153
output: 0.79,
165154
},
166155
type: 'chat',
167156
},
168-
{
169-
abilities: {
170-
functionCall: true,
171-
},
172-
contextWindowTokens: 32_768,
173-
description: 'Mixtral 8x7B 提供高容错的并行计算能力,适合复杂任务。',
174-
displayName: 'Mixtral 8x7B Instruct',
175-
id: 'mixtral-8x7b-32768',
176-
pricing: {
177-
input: 0.24,
178-
output: 0.24,
179-
},
180-
type: 'chat',
181-
},
182157
{
183158
contextWindowTokens: 131_072,
184159
displayName: 'Llama Guard 4 12B',
185-
id: 'meta-llama/Llama-Guard-4-12B',
160+
id: 'meta-llama/llama-guard-4-12b',
186161
maxOutput: 128,
187162
pricing: {
188163
input: 0.2,
@@ -206,6 +181,18 @@ const groqChatModels: AIChatModelCard[] = [
206181
id: 'allam-2-7b',
207182
type: 'chat',
208183
},
184+
{
185+
contextWindowTokens: 512,
186+
displayName: 'Llama Prompt Guard 2 22M',
187+
id: 'meta-llama/llama-prompt-guard-2-22m',
188+
type: 'chat',
189+
},
190+
{
191+
contextWindowTokens: 512,
192+
displayName: 'Llama Prompt Guard 2 86M',
193+
id: 'meta-llama/llama-prompt-guard-2-86m',
194+
type: 'chat',
195+
},
209196
];
210197

211198
export const allModels = [...groqChatModels];

src/config/aiModels/hunyuan.ts

Lines changed: 104 additions & 82 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { AIChatModelCard } from '@/types/aiModel';
2-
32
// https://cloud.tencent.com/document/product/1729/104753
4-
53
const hunyuanChatModels: AIChatModelCard[] = [
64
{
75
abilities: {
@@ -20,6 +18,28 @@ const hunyuanChatModels: AIChatModelCard[] = [
2018
input: 1,
2119
output: 4,
2220
},
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+
},
2343
releasedAt: '2025-04-03',
2444
settings: {
2545
searchImpl: 'params',
@@ -220,12 +240,12 @@ const hunyuanChatModels: AIChatModelCard[] = [
220240
functionCall: true,
221241
search: true,
222242
},
223-
contextWindowTokens: 32_000,
243+
contextWindowTokens: 44_000,
224244
description: 'hunyuan-TurboS 混元旗舰大模型最新版本,具备更强的思考能力,更优的体验效果。',
225245
displayName: 'Hunyuan TurboS',
226246
enabled: true,
227247
id: 'hunyuan-turbos-latest',
228-
maxOutput: 8000,
248+
maxOutput: 16_000,
229249
pricing: {
230250
currency: 'CNY',
231251
input: 0.8,
@@ -237,46 +257,45 @@ const hunyuanChatModels: AIChatModelCard[] = [
237257
},
238258
type: 'chat',
239259
},
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-
// },
263260
{
264261
abilities: {
265262
functionCall: true,
266263
search: true,
267264
},
268265
contextWindowTokens: 32_000,
269266
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',
273270
maxOutput: 8000,
274271
pricing: {
275272
currency: 'CNY',
276273
input: 0.8,
277274
output: 2,
278275
},
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',
280299
settings: {
281300
searchImpl: 'params',
282301
},
@@ -302,6 +321,7 @@ const hunyuanChatModels: AIChatModelCard[] = [
302321
contextWindowTokens: 8000,
303322
description: '混元最新多模态模型,支持多语种作答,中英文能力均衡。',
304323
displayName: 'Hunyuan Standard Vision',
324+
enabled: true,
305325
id: 'hunyuan-standard-vision',
306326
maxOutput: 2000,
307327
releasedAt: '2024-12-31',
@@ -329,19 +349,27 @@ const hunyuanChatModels: AIChatModelCard[] = [
329349
abilities: {
330350
vision: true,
331351
},
332-
contextWindowTokens: 8000,
352+
contextWindowTokens: 16_000,
333353
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,
343365
},
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',
345373
type: 'chat',
346374
},
347375
{
@@ -351,7 +379,6 @@ const hunyuanChatModels: AIChatModelCard[] = [
351379
contextWindowTokens: 32_000,
352380
description: '混元最新多模态模型,支持图片+文本输入生成文本内容。',
353381
displayName: 'Hunyuan Vision',
354-
enabled: true,
355382
id: 'hunyuan-vision',
356383
maxOutput: 16_000,
357384
pricing: {
@@ -362,20 +389,6 @@ const hunyuanChatModels: AIChatModelCard[] = [
362389
releasedAt: '2025-01-03',
363390
type: 'chat',
364391
},
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-
},
379392
{
380393
contextWindowTokens: 8000,
381394
description:
@@ -425,35 +438,44 @@ const hunyuanChatModels: AIChatModelCard[] = [
425438
type: 'chat',
426439
},
427440
{
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,
444442
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',
448446
maxOutput: 4000,
449-
pricing: {
450-
currency: 'CNY',
451-
input: 15,
452-
output: 45,
453-
},
454-
releasedAt: '2024-10-25',
455447
type: 'chat',
456448
},
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+
// },
457479
];
458480

459481
export const allModels = [...hunyuanChatModels];

0 commit comments

Comments
 (0)