@lobehub/chat 1.53.6 → 1.53.7

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.
@@ -18,7 +18,7 @@ on:
18
18
  jobs:
19
19
  lighthouse-badger-advanced:
20
20
  name: ${{ matrix.NAME }}
21
- runs-on: ubuntu-22.04
21
+ runs-on: ubuntu-24.04
22
22
  timeout-minutes: 8
23
23
  strategy:
24
24
  fail-fast: false
package/CHANGELOG.md CHANGED
@@ -2,6 +2,31 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.53.7](https://github.com/lobehub/lobe-chat/compare/v1.53.6...v1.53.7)
6
+
7
+ <sup>Released on **2025-02-13**</sup>
8
+
9
+ #### 💄 Styles
10
+
11
+ - **misc**: Update model list.
12
+
13
+ <br/>
14
+
15
+ <details>
16
+ <summary><kbd>Improvements and Fixes</kbd></summary>
17
+
18
+ #### Styles
19
+
20
+ - **misc**: Update model list, closes [#6056](https://github.com/lobehub/lobe-chat/issues/6056) ([be0d7f6](https://github.com/lobehub/lobe-chat/commit/be0d7f6))
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.53.6](https://github.com/lobehub/lobe-chat/compare/v1.53.5...v1.53.6)
6
31
 
7
32
  <sup>Released on **2025-02-13**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,13 @@
1
1
  [
2
+ {
3
+ "children": {
4
+ "improvements": [
5
+ "Update model list."
6
+ ]
7
+ },
8
+ "date": "2025-02-13",
9
+ "version": "1.53.7"
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.53.6",
3
+ "version": "1.53.7",
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",
@@ -3,7 +3,7 @@ import { AIChatModelCard } from '@/types/aiModel';
3
3
  const cloudflareChatModels: AIChatModelCard[] = [
4
4
  {
5
5
  contextWindowTokens: 16_384,
6
- displayName: 'DeepSeek R1 Distill Qwen 32B',
6
+ displayName: 'DeepSeek R1 (Distill Qwen 32B)',
7
7
  enabled: true,
8
8
  id: '@cf/deepseek-ai/deepseek-r1-distill-qwen-32b',
9
9
  type: 'chat',
@@ -57,9 +57,18 @@ const huggingfaceChatModels: AIChatModelCard[] = [
57
57
  reasoning: true,
58
58
  },
59
59
  contextWindowTokens: 16_384,
60
+ displayName: 'DeepSeek R1 (Distill Qwen 32B)',
61
+ id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
62
+ type: 'chat',
63
+ },
64
+ {
65
+ abilities: {
66
+ reasoning: true,
67
+ },
68
+ contextWindowTokens: 128_000,
60
69
  displayName: 'DeepSeek R1',
61
70
  enabled: true,
62
- id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
71
+ id: 'deepseek-ai/DeepSeek-R1',
63
72
  type: 'chat',
64
73
  },
65
74
  ];
@@ -6,7 +6,7 @@ const Cloudflare: ModelProviderCard = {
6
6
  chatModels: [
7
7
  {
8
8
  contextWindowTokens: 16_384,
9
- displayName: 'DeepSeek R1 Distill Qwen 32B',
9
+ displayName: 'DeepSeek R1 (Distill Qwen 32B)',
10
10
  enabled: true,
11
11
  id: '@cf/deepseek-ai/deepseek-r1-distill-qwen-32b',
12
12
  },
@@ -45,9 +45,14 @@ const HuggingFace: ModelProviderCard = {
45
45
  },
46
46
  {
47
47
  contextWindowTokens: 16_384,
48
+ displayName: 'DeepSeek R1 (Distill Qwen 32B)',
49
+ id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
50
+ },
51
+ {
52
+ contextWindowTokens: 128_000,
48
53
  displayName: 'DeepSeek R1',
49
54
  enabled: true,
50
- id: 'deepseek-ai/DeepSeek-R1-Distill-Qwen-32B',
55
+ id: 'deepseek-ai/DeepSeek-R1',
51
56
  },
52
57
  ],
53
58
  checkModel: 'mistralai/Mistral-7B-Instruct-v0.2',