@lobehub/chat 1.40.3 → 1.40.4
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 +2 -2
- package/src/config/modelProviders/deepseek.ts +7 -7
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.40.4](https://github.com/lobehub/lobe-chat/compare/v1.40.3...v1.40.4)
|
6
|
+
|
7
|
+
<sup>Released on **2024-12-28**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Update deepseek V3 model.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Update deepseek V3 model, closes [#5199](https://github.com/lobehub/lobe-chat/issues/5199) ([868f556](https://github.com/lobehub/lobe-chat/commit/868f556))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.40.3](https://github.com/lobehub/lobe-chat/compare/v1.40.2...v1.40.3)
|
6
31
|
|
7
32
|
<sup>Released on **2024-12-26**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.40.
|
3
|
+
"version": "1.40.4",
|
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",
|
@@ -149,7 +149,7 @@
|
|
149
149
|
"antd": "^5.22.6",
|
150
150
|
"antd-style": "^3.7.1",
|
151
151
|
"brotli-wasm": "^3.0.1",
|
152
|
-
"chroma-js": "^
|
152
|
+
"chroma-js": "^3.1.2",
|
153
153
|
"dayjs": "^1.11.13",
|
154
154
|
"debug": "^4.3.7",
|
155
155
|
"dexie": "^3.2.7",
|
@@ -6,23 +6,23 @@ const DeepSeek: ModelProviderCard = {
|
|
6
6
|
{
|
7
7
|
contextWindowTokens: 65_536,
|
8
8
|
description:
|
9
|
-
'
|
10
|
-
displayName: 'DeepSeek
|
9
|
+
'最新模型 DeepSeek-V3 多项评测成绩超越 Qwen2.5-72B 和 Llama-3.1-405B 等开源模型,性能对齐领军闭源模型 GPT-4o 与 Claude-3.5-Sonnet。',
|
10
|
+
displayName: 'DeepSeek V3',
|
11
11
|
enabled: true,
|
12
12
|
functionCall: true,
|
13
13
|
id: 'deepseek-chat',
|
14
14
|
pricing: {
|
15
|
-
cachedInput: 0.
|
15
|
+
cachedInput: 0.5,
|
16
16
|
currency: 'CNY',
|
17
|
-
input:
|
18
|
-
output:
|
17
|
+
input: 2,
|
18
|
+
output: 8,
|
19
19
|
},
|
20
|
-
releasedAt: '2024-
|
20
|
+
releasedAt: '2024-12-26',
|
21
21
|
},
|
22
22
|
],
|
23
23
|
checkModel: 'deepseek-chat',
|
24
24
|
description:
|
25
|
-
'DeepSeek 是一家专注于人工智能技术研究和应用的公司,其最新模型 DeepSeek-
|
25
|
+
'DeepSeek 是一家专注于人工智能技术研究和应用的公司,其最新模型 DeepSeek-V3 多项评测成绩超越 Qwen2.5-72B 和 Llama-3.1-405B 等开源模型,性能对齐领军闭源模型 GPT-4o 与 Claude-3.5-Sonnet。',
|
26
26
|
id: 'deepseek',
|
27
27
|
modelList: { showModelFetcher: true },
|
28
28
|
modelsUrl: 'https://platform.deepseek.com/api-docs/zh-cn/quick_start/pricing',
|