@lobehub/chat 1.96.0 → 1.96.1
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/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/package.json +1 -1
- package/src/config/aiModels/minimax.ts +1 -38
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.96.1](https://github.com/lobehub/lobe-chat/compare/v1.96.0...v1.96.1)
|
6
|
+
|
7
|
+
<sup>Released on **2025-06-21**</sup>
|
8
|
+
|
9
|
+
#### 🐛 Bug Fixes
|
10
|
+
|
11
|
+
- **misc**: Fix `MiniMax-M1` reasoning tag missing.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's fixed
|
19
|
+
|
20
|
+
- **misc**: Fix `MiniMax-M1` reasoning tag missing, closes [#8240](https://github.com/lobehub/lobe-chat/issues/8240) ([ea76c11](https://github.com/lobehub/lobe-chat/commit/ea76c11))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
## [Version 1.96.0](https://github.com/lobehub/lobe-chat/compare/v1.95.0...v1.96.0)
|
6
31
|
|
7
32
|
<sup>Released on **2025-06-20**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.96.
|
3
|
+
"version": "1.96.1",
|
4
4
|
"description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
5
5
|
"keywords": [
|
6
6
|
"framework",
|
@@ -4,6 +4,7 @@ const minimaxChatModels: AIChatModelCard[] = [
|
|
4
4
|
{
|
5
5
|
abilities: {
|
6
6
|
functionCall: true,
|
7
|
+
reasoning: true,
|
7
8
|
search: true,
|
8
9
|
},
|
9
10
|
contextWindowTokens: 1_000_192,
|
@@ -48,44 +49,6 @@ const minimaxChatModels: AIChatModelCard[] = [
|
|
48
49
|
},
|
49
50
|
type: 'chat',
|
50
51
|
},
|
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
|
-
},
|
89
52
|
];
|
90
53
|
|
91
54
|
export const allModels = [...minimaxChatModels];
|