Skip to content

Commit 7b396cf

Browse files
authored
🐛 fix: fix MiniMax-M1 reasoning tag missing (#8240)
1 parent d6d1858 commit 7b396cf

File tree

1 file changed

+1
-38
lines changed

1 file changed

+1
-38
lines changed

src/config/aiModels/minimax.ts

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ const minimaxChatModels: AIChatModelCard[] = [
44
{
55
abilities: {
66
functionCall: true,
7+
reasoning: true,
78
search: true,
89
},
910
contextWindowTokens: 1_000_192,
@@ -48,44 +49,6 @@ const minimaxChatModels: AIChatModelCard[] = [
4849
},
4950
type: 'chat',
5051
},
51-
{
52-
abilities: {
53-
functionCall: true,
54-
search: true,
55-
vision: true,
56-
},
57-
contextWindowTokens: 245_760,
58-
description: '适用于广泛的自然语言处理任务,包括文本生成、对话系统等。',
59-
displayName: 'abab6.5s',
60-
id: 'abab6.5s-chat',
61-
maxOutput: 245_760,
62-
pricing: {
63-
currency: 'CNY',
64-
input: 1,
65-
output: 1,
66-
},
67-
settings: {
68-
searchImpl: 'params',
69-
},
70-
type: 'chat',
71-
},
72-
{
73-
abilities: {
74-
reasoning: true,
75-
},
76-
contextWindowTokens: 64_000,
77-
description:
78-
'DeepSeek 推出的推理模型。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
79-
displayName: 'DeepSeek R1',
80-
id: 'DeepSeek-R1',
81-
maxOutput: 64_000,
82-
pricing: {
83-
currency: 'CNY',
84-
input: 4,
85-
output: 16,
86-
},
87-
type: 'chat',
88-
},
8952
];
9053

9154
export const allModels = [...minimaxChatModels];

0 commit comments

Comments
 (0)