@lobehub/chat 1.79.1 → 1.79.2
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.79.2](https://github.com/lobehub/lobe-chat/compare/v1.79.1...v1.79.2)
|
6
|
+
|
7
|
+
<sup>Released on **2025-04-09**</sup>
|
8
|
+
|
9
|
+
#### 🐛 Bug Fixes
|
10
|
+
|
11
|
+
- **misc**: Fix env for Tencent Cloud & remove `deepseek-v3` series fc tag.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### What's fixed
|
19
|
+
|
20
|
+
- **misc**: Fix env for Tencent Cloud & remove `deepseek-v3` series fc tag, closes [#7354](https://github.com/lobehub/lobe-chat/issues/7354) ([fe26d76](https://github.com/lobehub/lobe-chat/commit/fe26d76))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.79.1](https://github.com/lobehub/lobe-chat/compare/v1.79.0...v1.79.1)
|
6
31
|
|
7
32
|
<sup>Released on **2025-04-09**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.79.
|
3
|
+
"version": "1.79.2",
|
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",
|
@@ -20,9 +20,6 @@ const tencentCloudChatModels: AIChatModelCard[] = [
|
|
20
20
|
type: 'chat',
|
21
21
|
},
|
22
22
|
{
|
23
|
-
abilities: {
|
24
|
-
functionCall: true,
|
25
|
-
},
|
26
23
|
contextWindowTokens: 65_536,
|
27
24
|
description:
|
28
25
|
'DeepSeek-V3-0324 为671B 参数 MoE 模型,在编程与技术能力、上下文理解与长文本处理等方面优势突出。',
|
@@ -37,9 +34,6 @@ const tencentCloudChatModels: AIChatModelCard[] = [
|
|
37
34
|
type: 'chat',
|
38
35
|
},
|
39
36
|
{
|
40
|
-
abilities: {
|
41
|
-
functionCall: true,
|
42
|
-
},
|
43
37
|
contextWindowTokens: 65_536,
|
44
38
|
description:
|
45
39
|
'DeepSeek-V3 是一款拥有 6710 亿参数的混合专家(MoE)语言模型,采用多头潜在注意力(MLA)和 DeepSeekMoE 架构,结合无辅助损失的负载平衡策略,优化推理和训练效率。通过在 14.8 万亿高质量tokens上预训练,并进行监督微调和强化学习,DeepSeek-V3 在性能上超越其他开源模型,接近领先闭源模型。',
|
@@ -15,10 +15,6 @@ export const LobeTencentCloudAI = LobeOpenAICompatibleFactory({
|
|
15
15
|
models: async ({ client }) => {
|
16
16
|
const { LOBE_DEFAULT_MODEL_LIST } = await import('@/config/aiModels');
|
17
17
|
|
18
|
-
const functionCallKeywords = [
|
19
|
-
'deepseek-v3',
|
20
|
-
];
|
21
|
-
|
22
18
|
const reasoningKeywords = [
|
23
19
|
'deepseek-r1',
|
24
20
|
];
|
@@ -35,8 +31,7 @@ export const LobeTencentCloudAI = LobeOpenAICompatibleFactory({
|
|
35
31
|
displayName: knownModel?.displayName ?? undefined,
|
36
32
|
enabled: knownModel?.enabled || false,
|
37
33
|
functionCall:
|
38
|
-
|
39
|
-
|| knownModel?.abilities?.functionCall
|
34
|
+
knownModel?.abilities?.functionCall
|
40
35
|
|| false,
|
41
36
|
id: model.id,
|
42
37
|
reasoning:
|
@@ -43,6 +43,10 @@ export const getServerGlobalConfig = async () => {
|
|
43
43
|
openai: {
|
44
44
|
enabled: isDesktop ? false : undefined,
|
45
45
|
},
|
46
|
+
tencentcloud: {
|
47
|
+
enabledKey: 'ENABLED_TENCENT_CLOUD',
|
48
|
+
modelListKey: 'TENCENT_CLOUD_MODEL_LIST',
|
49
|
+
},
|
46
50
|
volcengine: {
|
47
51
|
withDeploymentName: true,
|
48
52
|
},
|