@lobehub/chat 1.47.20 → 1.47.21

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.47.21](https://github.com/lobehub/lobe-chat/compare/v1.47.20...v1.47.21)
6
+
7
+ <sup>Released on **2025-01-23**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Add HuggingFace Model: DeepSeek R1.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Add HuggingFace Model: DeepSeek R1, closes [#5564](https://github.com/lobehub/lobe-chat/issues/5564) ([66d4edd](https://github.com/lobehub/lobe-chat/commit/66d4edd))
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.47.20](https://github.com/lobehub/lobe-chat/compare/v1.47.19...v1.47.20)
6
31
 
7
32
  <sup>Released on **2025-01-23**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Add HuggingFace Model: DeepSeek R1."
6
+ ]
7
+ },
8
+ "date": "2025-01-23",
9
+ "version": "1.47.21"
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.47.20",
3
+ "version": "1.47.21",
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",
@@ -5,7 +5,6 @@ const huggingfaceChatModels: AIChatModelCard[] = [
5
5
  contextWindowTokens: 32_768,
6
6
  description: 'Mistral AI的指令调优模型',
7
7
  displayName: 'Mistral 7B Instruct v0.3',
8
- enabled: true,
9
8
  id: 'mistralai/Mistral-7B-Instruct-v0.3',
10
9
  type: 'chat',
11
10
  },
@@ -34,6 +33,7 @@ const huggingfaceChatModels: AIChatModelCard[] = [
34
33
  contextWindowTokens: 32_768,
35
34
  description: 'Qwen QwQ 是由 Qwen 团队开发的实验研究模型,专注于提升AI推理能力。',
36
35
  displayName: 'QwQ 32B Preview',
36
+ enabled: true,
37
37
  id: 'Qwen/QwQ-32B-Preview',
38
38
  type: 'chat',
39
39
  },
@@ -49,6 +49,13 @@ const huggingfaceChatModels: AIChatModelCard[] = [
49
49
  id: 'NousResearch/Hermes-3-Llama-3.1-8B',
50
50
  type: 'chat',
51
51
  },
52
+ {
53
+ contextWindowTokens: 16_384,
54
+ displayName: 'DeepSeek R1',
55
+ enabled: true,
56
+ id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
57
+ type: 'chat',
58
+ },
52
59
  ];
53
60
 
54
61
  export const allModels = [...huggingfaceChatModels];
@@ -6,7 +6,6 @@ const HuggingFace: ModelProviderCard = {
6
6
  contextWindowTokens: 32_768,
7
7
  description: 'Mistral AI的指令调优模型',
8
8
  displayName: 'Mistral 7B Instruct v0.3',
9
- enabled: true,
10
9
  id: 'mistralai/Mistral-7B-Instruct-v0.3',
11
10
  },
12
11
  {
@@ -31,6 +30,7 @@ const HuggingFace: ModelProviderCard = {
31
30
  contextWindowTokens: 32_768,
32
31
  description: 'Qwen QwQ 是由 Qwen 团队开发的实验研究模型,专注于提升AI推理能力。',
33
32
  displayName: 'QwQ 32B Preview',
33
+ enabled: true,
34
34
  id: 'Qwen/QwQ-32B-Preview',
35
35
  },
36
36
  {
@@ -43,6 +43,12 @@ const HuggingFace: ModelProviderCard = {
43
43
  displayName: 'Hermes 3 Llama 3.1 8B',
44
44
  id: 'NousResearch/Hermes-3-Llama-3.1-8B',
45
45
  },
46
+ {
47
+ contextWindowTokens: 16_384,
48
+ displayName: 'DeepSeek R1',
49
+ enabled: true,
50
+ id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
51
+ },
46
52
  ],
47
53
  checkModel: 'mistralai/Mistral-7B-Instruct-v0.2',
48
54
  description: