@lobehub/chat 1.94.11 → 1.94.12

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 CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.94.12](https://github.com/lobehub/lobe-chat/compare/v1.94.11...v1.94.12)
6
+
7
+ <sup>Released on **2025-06-18**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Add MiniMax-M1 model.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Add MiniMax-M1 model, closes [#8209](https://github.com/lobehub/lobe-chat/issues/8209) ([41a0178](https://github.com/lobehub/lobe-chat/commit/41a0178))
21
+
22
+ </details>
23
+
24
+ <div align="right">
25
+
26
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
27
+
28
+ </div>
29
+
5
30
  ### [Version 1.94.11](https://github.com/lobehub/lobe-chat/compare/v1.94.10...v1.94.11)
6
31
 
7
32
  <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-design ChatGPT/LLMs UI/Framework.<br/>
8
- Supports speech-synthesis, multi-modal, and extensible ([function call][docs-functionc-call]) plugin system.<br/>
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-functionc-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.
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-functionc-call]: https://lobehub.com/blog/openai-function-call
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,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Add MiniMax-M1 model."
6
+ ]
7
+ },
8
+ "date": "2025-06-18",
9
+ "version": "1.94.12"
10
+ },
2
11
  {
3
12
  "children": {
4
13
  "fixes": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.94.11",
3
+ "version": "1.94.12",
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,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: 1_000_192,
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,