@lobehub/chat 1.94.11 → 1.94.13
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 +50 -0
- package/README.md +4 -4
- package/changelog/v1.json +18 -0
- package/package.json +1 -1
- package/src/config/aiModels/google.ts +76 -0
- package/src/config/aiModels/minimax.ts +24 -2
- package/src/config/aiModels/novita.ts +25 -0
- package/src/config/aiModels/siliconcloud.ts +17 -0
- package/src/config/aiModels/vertexai.ts +59 -0
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,56 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.94.13](https://github.com/lobehub/lobe-chat/compare/v1.94.12...v1.94.13)
|
6
|
+
|
7
|
+
<sup>Released on **2025-06-18**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Update Gemini 2.5 Pro, Flash GA models. Add Gemini 2.5 Flash-Lite Preview model.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Update Gemini 2.5 Pro, Flash GA models. Add Gemini 2.5 Flash-Lite Preview model, closes [#8213](https://github.com/lobehub/lobe-chat/issues/8213) ([39ef8be](https://github.com/lobehub/lobe-chat/commit/39ef8be))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
30
|
+
### [Version 1.94.12](https://github.com/lobehub/lobe-chat/compare/v1.94.11...v1.94.12)
|
31
|
+
|
32
|
+
<sup>Released on **2025-06-18**</sup>
|
33
|
+
|
34
|
+
#### 💄 Styles
|
35
|
+
|
36
|
+
- **misc**: Add MiniMax-M1 model.
|
37
|
+
|
38
|
+
<br/>
|
39
|
+
|
40
|
+
<details>
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
42
|
+
|
43
|
+
#### Styles
|
44
|
+
|
45
|
+
- **misc**: Add MiniMax-M1 model, closes [#8209](https://github.com/lobehub/lobe-chat/issues/8209) ([41a0178](https://github.com/lobehub/lobe-chat/commit/41a0178))
|
46
|
+
|
47
|
+
</details>
|
48
|
+
|
49
|
+
<div align="right">
|
50
|
+
|
51
|
+
[](#readme-top)
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
5
55
|
### [Version 1.94.11](https://github.com/lobehub/lobe-chat/compare/v1.94.10...v1.94.11)
|
6
56
|
|
7
57
|
<sup>Released on **2025-06-17**</sup>
|
package/README.md
CHANGED
@@ -4,8 +4,8 @@
|
|
4
4
|
|
5
5
|
# Lobe Chat
|
6
6
|
|
7
|
-
An open-source, modern
|
8
|
-
Supports speech
|
7
|
+
An open-source, modern design ChatGPT/LLMs UI/framework.<br/>
|
8
|
+
Supports speech synthesis, multi-modal, and extensible ([function call][docs-function-call]) plugin system.<br/>
|
9
9
|
One-click **FREE** deployment of your private OpenAI ChatGPT/Claude/Gemini/Groq/Ollama chat application.
|
10
10
|
|
11
11
|
**English** · [简体中文](./README.zh-CN.md) · [Official Site][official-site] · [Changelog][changelog] · [Documents][docs] · [Blog][blog] · [Feedback][github-issues-link]
|
@@ -628,7 +628,7 @@ This project provides some additional configuration items set with environment v
|
|
628
628
|
|
629
629
|
## 🧩 Plugins
|
630
630
|
|
631
|
-
Plugins provide a means to extend the [Function Calling][docs-
|
631
|
+
Plugins provide a means to extend the [Function Calling][docs-function-call] capabilities of LobeChat. They can be used to introduce new function calls and even new ways to render message results. If you are interested in plugin development, please refer to our [📘 Plugin Development Guide][docs-plugin-dev] in the Wiki.
|
632
632
|
|
633
633
|
- [lobe-chat-plugins][lobe-chat-plugins]: This is the plugin index for LobeChat. It accesses index.json from this repository to display a list of available plugins for LobeChat to the user.
|
634
634
|
- [chat-plugin-template][chat-plugin-template]: This is the plugin template for LobeChat plugin development.
|
@@ -822,7 +822,7 @@ This project is [Apache 2.0](./LICENSE) licensed.
|
|
822
822
|
[docs-feat-theme]: https://lobehub.com/docs/usage/features/theme
|
823
823
|
[docs-feat-tts]: https://lobehub.com/docs/usage/features/tts
|
824
824
|
[docs-feat-vision]: https://lobehub.com/docs/usage/features/vision
|
825
|
-
[docs-
|
825
|
+
[docs-function-call]: https://lobehub.com/blog/openai-function-call
|
826
826
|
[docs-lighthouse]: https://github.com/lobehub/lobe-chat/wiki/Lighthouse
|
827
827
|
[docs-plugin-dev]: https://lobehub.com/docs/usage/plugins/development
|
828
828
|
[docs-self-hosting]: https://lobehub.com/docs/self-hosting/start
|
package/changelog/v1.json
CHANGED
@@ -1,4 +1,22 @@
|
|
1
1
|
[
|
2
|
+
{
|
3
|
+
"children": {
|
4
|
+
"improvements": [
|
5
|
+
"Update Gemini 2.5 Pro, Flash GA models. Add Gemini 2.5 Flash-Lite Preview model."
|
6
|
+
]
|
7
|
+
},
|
8
|
+
"date": "2025-06-18",
|
9
|
+
"version": "1.94.13"
|
10
|
+
},
|
11
|
+
{
|
12
|
+
"children": {
|
13
|
+
"improvements": [
|
14
|
+
"Add MiniMax-M1 model."
|
15
|
+
]
|
16
|
+
},
|
17
|
+
"date": "2025-06-18",
|
18
|
+
"version": "1.94.12"
|
19
|
+
},
|
2
20
|
{
|
3
21
|
"children": {
|
4
22
|
"fixes": [
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.94.
|
3
|
+
"version": "1.94.13",
|
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",
|
@@ -1,6 +1,31 @@
|
|
1
1
|
import { AIChatModelCard } from '@/types/aiModel';
|
2
2
|
|
3
3
|
const googleChatModels: AIChatModelCard[] = [
|
4
|
+
{
|
5
|
+
abilities: {
|
6
|
+
functionCall: true,
|
7
|
+
reasoning: true,
|
8
|
+
search: true,
|
9
|
+
vision: true,
|
10
|
+
},
|
11
|
+
contextWindowTokens: 1_048_576 + 65_536,
|
12
|
+
description:
|
13
|
+
'Gemini 2.5 Pro 是 Google 最先进的思维模型,能够对代码、数学和STEM领域的复杂问题进行推理,以及使用长上下文分析大型数据集、代码库和文档。',
|
14
|
+
displayName: 'Gemini 2.5 Pro (Paid)',
|
15
|
+
id: 'gemini-2.5-pro',
|
16
|
+
maxOutput: 65_536,
|
17
|
+
pricing: {
|
18
|
+
input: 1.25, // prompts <= 200k tokens
|
19
|
+
output: 10, // prompts <= 200k tokens
|
20
|
+
},
|
21
|
+
releasedAt: '2025-06-17',
|
22
|
+
settings: {
|
23
|
+
extendParams: ['enableReasoning', 'reasoningBudgetToken'],
|
24
|
+
searchImpl: 'params',
|
25
|
+
searchProvider: 'google',
|
26
|
+
},
|
27
|
+
type: 'chat',
|
28
|
+
},
|
4
29
|
{
|
5
30
|
abilities: {
|
6
31
|
functionCall: true,
|
@@ -74,6 +99,31 @@ const googleChatModels: AIChatModelCard[] = [
|
|
74
99
|
},
|
75
100
|
type: 'chat',
|
76
101
|
},
|
102
|
+
{
|
103
|
+
abilities: {
|
104
|
+
functionCall: true,
|
105
|
+
reasoning: true,
|
106
|
+
search: true,
|
107
|
+
vision: true,
|
108
|
+
},
|
109
|
+
contextWindowTokens: 1_048_576 + 65_536,
|
110
|
+
description: 'Gemini 2.5 Flash 是 Google 性价比最高的模型,提供全面的功能。',
|
111
|
+
displayName: 'Gemini 2.5 Flash',
|
112
|
+
enabled: true,
|
113
|
+
id: 'gemini-2.5-flash',
|
114
|
+
maxOutput: 65_536,
|
115
|
+
pricing: {
|
116
|
+
input: 0.3,
|
117
|
+
output: 2.5,
|
118
|
+
},
|
119
|
+
releasedAt: '2025-06-17',
|
120
|
+
settings: {
|
121
|
+
extendParams: ['enableReasoning', 'reasoningBudgetToken'],
|
122
|
+
searchImpl: 'params',
|
123
|
+
searchProvider: 'google',
|
124
|
+
},
|
125
|
+
type: 'chat',
|
126
|
+
},
|
77
127
|
{
|
78
128
|
abilities: {
|
79
129
|
functionCall: true,
|
@@ -145,6 +195,32 @@ const googleChatModels: AIChatModelCard[] = [
|
|
145
195
|
},
|
146
196
|
type: 'chat',
|
147
197
|
},
|
198
|
+
{
|
199
|
+
abilities: {
|
200
|
+
functionCall: true,
|
201
|
+
reasoning: true,
|
202
|
+
search: true,
|
203
|
+
vision: true,
|
204
|
+
},
|
205
|
+
contextWindowTokens: 1_000_000 + 64_000,
|
206
|
+
description:
|
207
|
+
'Gemini 2.5 Flash-Lite Preview 是 Google 最小、性价比最高的模型,专为大规模使用而设计。',
|
208
|
+
displayName: 'Gemini 2.5 Flash-Lite Preview 06-17',
|
209
|
+
enabled: true,
|
210
|
+
id: 'gemini-2.5-flash-lite-preview-06-17',
|
211
|
+
maxOutput: 64_000,
|
212
|
+
pricing: {
|
213
|
+
input: 0.1,
|
214
|
+
output: 0.4,
|
215
|
+
},
|
216
|
+
releasedAt: '2025-06-17',
|
217
|
+
settings: {
|
218
|
+
extendParams: ['enableReasoning', 'reasoningBudgetToken'],
|
219
|
+
searchImpl: 'params',
|
220
|
+
searchProvider: 'google',
|
221
|
+
},
|
222
|
+
type: 'chat',
|
223
|
+
},
|
148
224
|
{
|
149
225
|
abilities: {
|
150
226
|
functionCall: true,
|
@@ -1,6 +1,29 @@
|
|
1
1
|
import { AIChatModelCard } from '@/types/aiModel';
|
2
2
|
|
3
3
|
const minimaxChatModels: AIChatModelCard[] = [
|
4
|
+
{
|
5
|
+
abilities: {
|
6
|
+
functionCall: true,
|
7
|
+
search: true,
|
8
|
+
},
|
9
|
+
contextWindowTokens: 1_000_192,
|
10
|
+
description:
|
11
|
+
'全新自研推理模型。全球领先:80K思维链 x 1M输入,效果比肩海外顶尖模型。',
|
12
|
+
displayName: 'MiniMax-M1',
|
13
|
+
enabled: true,
|
14
|
+
id: 'MiniMax-M1',
|
15
|
+
maxOutput: 40_000,
|
16
|
+
pricing: {
|
17
|
+
currency: 'CNY',
|
18
|
+
input: 1.2, // 输入长度 32-128k
|
19
|
+
output: 16,
|
20
|
+
},
|
21
|
+
releasedAt: '2025-06-16',
|
22
|
+
settings: {
|
23
|
+
searchImpl: 'params',
|
24
|
+
},
|
25
|
+
type: 'chat',
|
26
|
+
},
|
4
27
|
{
|
5
28
|
abilities: {
|
6
29
|
functionCall: true,
|
@@ -13,7 +36,7 @@ const minimaxChatModels: AIChatModelCard[] = [
|
|
13
36
|
displayName: 'MiniMax-Text-01',
|
14
37
|
enabled: true,
|
15
38
|
id: 'MiniMax-Text-01',
|
16
|
-
maxOutput:
|
39
|
+
maxOutput: 40_000,
|
17
40
|
pricing: {
|
18
41
|
currency: 'CNY',
|
19
42
|
input: 1,
|
@@ -34,7 +57,6 @@ const minimaxChatModels: AIChatModelCard[] = [
|
|
34
57
|
contextWindowTokens: 245_760,
|
35
58
|
description: '适用于广泛的自然语言处理任务,包括文本生成、对话系统等。',
|
36
59
|
displayName: 'abab6.5s',
|
37
|
-
enabled: true,
|
38
60
|
id: 'abab6.5s-chat',
|
39
61
|
maxOutput: 245_760,
|
40
62
|
pricing: {
|
@@ -3,6 +3,22 @@ import { AIChatModelCard } from '@/types/aiModel';
|
|
3
3
|
// https://novita.ai/pricing
|
4
4
|
const novitaChatModels: AIChatModelCard[] = [
|
5
5
|
{
|
6
|
+
abilities: {
|
7
|
+
reasoning: true,
|
8
|
+
},
|
9
|
+
contextWindowTokens: 128_000,
|
10
|
+
displayName: 'MiniMax M1 80K',
|
11
|
+
id: 'minimaxai/minimax-m1-80k',
|
12
|
+
pricing: {
|
13
|
+
input: 0.55,
|
14
|
+
output: 2.2,
|
15
|
+
},
|
16
|
+
type: 'chat',
|
17
|
+
},
|
18
|
+
{
|
19
|
+
abilities: {
|
20
|
+
reasoning: true,
|
21
|
+
},
|
6
22
|
contextWindowTokens: 128_000,
|
7
23
|
displayName: 'Qwen3 4B FP8',
|
8
24
|
id: 'qwen/qwen3-4b-fp8',
|
@@ -13,6 +29,9 @@ const novitaChatModels: AIChatModelCard[] = [
|
|
13
29
|
type: 'chat',
|
14
30
|
},
|
15
31
|
{
|
32
|
+
abilities: {
|
33
|
+
reasoning: true,
|
34
|
+
},
|
16
35
|
contextWindowTokens: 40_960,
|
17
36
|
displayName: 'Qwen3 235B A22B FP8',
|
18
37
|
id: 'qwen/qwen3-235b-a22b-fp8',
|
@@ -23,6 +42,9 @@ const novitaChatModels: AIChatModelCard[] = [
|
|
23
42
|
type: 'chat',
|
24
43
|
},
|
25
44
|
{
|
45
|
+
abilities: {
|
46
|
+
reasoning: true,
|
47
|
+
},
|
26
48
|
contextWindowTokens: 40_960,
|
27
49
|
displayName: 'Qwen3 30B A3B FP8',
|
28
50
|
id: 'qwen/qwen3-30b-a3b-fp8',
|
@@ -33,6 +55,9 @@ const novitaChatModels: AIChatModelCard[] = [
|
|
33
55
|
type: 'chat',
|
34
56
|
},
|
35
57
|
{
|
58
|
+
abilities: {
|
59
|
+
reasoning: true,
|
60
|
+
},
|
36
61
|
contextWindowTokens: 40_960,
|
37
62
|
displayName: 'Qwen3 32B FP8',
|
38
63
|
id: 'qwen/qwen3-32b-fp8',
|
@@ -2,6 +2,23 @@ import { AIChatModelCard } from '@/types/aiModel';
|
|
2
2
|
|
3
3
|
// https://siliconflow.cn/zh-cn/models
|
4
4
|
const siliconcloudChatModels: AIChatModelCard[] = [
|
5
|
+
{
|
6
|
+
abilities: {
|
7
|
+
reasoning: true,
|
8
|
+
},
|
9
|
+
contextWindowTokens: 131_072,
|
10
|
+
description:
|
11
|
+
'MiniMax-M1 是开源权重的大规模混合注意力推理模型,拥有 4560 亿参数,每个 Token 可激活约 459 亿参数。模型原生支持 100 万 Token 的超长上下文,并通过闪电注意力机制,在 10 万 Token 的生成任务中相比 DeepSeek R1 节省 75% 的浮点运算量。同时,MiniMax-M1 采用 MoE(混合专家)架构,结合 CISPO 算法与混合注意力设计的高效强化学习训练,在长输入推理与真实软件工程场景中实现了业界领先的性能。',
|
12
|
+
displayName: 'MiniMax M1 80K',
|
13
|
+
id: 'MiniMaxAI/MiniMax-M1-80k',
|
14
|
+
pricing: {
|
15
|
+
currency: 'CNY',
|
16
|
+
input: 4,
|
17
|
+
output: 16,
|
18
|
+
},
|
19
|
+
releasedAt: '2025-06-16',
|
20
|
+
type: 'chat',
|
21
|
+
},
|
5
22
|
{
|
6
23
|
abilities: {
|
7
24
|
reasoning: true,
|
@@ -2,6 +2,26 @@ import { AIChatModelCard } from '@/types/aiModel';
|
|
2
2
|
|
3
3
|
// ref: https://cloud.google.com/vertex-ai/generative-ai/docs/learn/models
|
4
4
|
const vertexaiChatModels: AIChatModelCard[] = [
|
5
|
+
{
|
6
|
+
abilities: {
|
7
|
+
functionCall: true,
|
8
|
+
reasoning: true,
|
9
|
+
vision: true,
|
10
|
+
},
|
11
|
+
contextWindowTokens: 1_048_576 + 65_536,
|
12
|
+
description:
|
13
|
+
'Gemini 2.5 Pro 是 Google 最先进的思维模型,能够对代码、数学和STEM领域的复杂问题进行推理,以及使用长上下文分析大型数据集、代码库和文档。',
|
14
|
+
displayName: 'Gemini 2.5 Pro',
|
15
|
+
enabled: true,
|
16
|
+
id: 'gemini-2.5-pro',
|
17
|
+
maxOutput: 65_536,
|
18
|
+
pricing: {
|
19
|
+
input: 1.25, // prompts <= 200k tokens
|
20
|
+
output: 10, // prompts <= 200k tokens
|
21
|
+
},
|
22
|
+
releasedAt: '2025-06-17',
|
23
|
+
type: 'chat',
|
24
|
+
},
|
5
25
|
{
|
6
26
|
abilities: {
|
7
27
|
functionCall: true,
|
@@ -41,6 +61,25 @@ const vertexaiChatModels: AIChatModelCard[] = [
|
|
41
61
|
releasedAt: '2025-04-09',
|
42
62
|
type: 'chat',
|
43
63
|
},
|
64
|
+
{
|
65
|
+
abilities: {
|
66
|
+
functionCall: true,
|
67
|
+
reasoning: true,
|
68
|
+
vision: true,
|
69
|
+
},
|
70
|
+
contextWindowTokens: 1_048_576 + 65_536,
|
71
|
+
description: 'Gemini 2.5 Flash 是 Google 性价比最高的模型,提供全面的功能。',
|
72
|
+
displayName: 'Gemini 2.5 Flash',
|
73
|
+
enabled: true,
|
74
|
+
id: 'gemini-2.5-flash',
|
75
|
+
maxOutput: 65_536,
|
76
|
+
pricing: {
|
77
|
+
input: 0.3,
|
78
|
+
output: 2.5,
|
79
|
+
},
|
80
|
+
releasedAt: '2025-06-17',
|
81
|
+
type: 'chat',
|
82
|
+
},
|
44
83
|
{
|
45
84
|
abilities: {
|
46
85
|
functionCall: true,
|
@@ -60,6 +99,26 @@ const vertexaiChatModels: AIChatModelCard[] = [
|
|
60
99
|
releasedAt: '2025-04-17',
|
61
100
|
type: 'chat',
|
62
101
|
},
|
102
|
+
{
|
103
|
+
abilities: {
|
104
|
+
functionCall: true,
|
105
|
+
reasoning: true,
|
106
|
+
vision: true,
|
107
|
+
},
|
108
|
+
contextWindowTokens: 1_000_000 + 64_000,
|
109
|
+
description:
|
110
|
+
'Gemini 2.5 Flash-Lite Preview 是 Google 最小、性价比最高的模型,专为大规模使用而设计。',
|
111
|
+
displayName: 'Gemini 2.5 Flash-Lite Preview 06-17',
|
112
|
+
enabled: true,
|
113
|
+
id: 'gemini-2.5-flash-lite-preview-06-17',
|
114
|
+
maxOutput: 64_000,
|
115
|
+
pricing: {
|
116
|
+
input: 0.1,
|
117
|
+
output: 0.4,
|
118
|
+
},
|
119
|
+
releasedAt: '2025-06-17',
|
120
|
+
type: 'chat',
|
121
|
+
},
|
63
122
|
{
|
64
123
|
abilities: {
|
65
124
|
functionCall: true,
|