@lobehub/chat 1.19.28 → 1.19.30
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,56 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.19.30](https://github.com/lobehub/lobe-chat/compare/v1.19.29...v1.19.30)
|
6
|
+
|
7
|
+
<sup>Released on **2024-09-24**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Disable taichu2.0 functioncall & default disable taichu2.0v model.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Disable taichu2.0 functioncall & default disable taichu2.0v model, closes [#4117](https://github.com/lobehub/lobe-chat/issues/4117) ([00da53b](https://github.com/lobehub/lobe-chat/commit/00da53b))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
30
|
+
### [Version 1.19.29](https://github.com/lobehub/lobe-chat/compare/v1.19.28...v1.19.29)
|
31
|
+
|
32
|
+
<sup>Released on **2024-09-24**</sup>
|
33
|
+
|
34
|
+
#### 💄 Styles
|
35
|
+
|
36
|
+
- **misc**: Update taichu provider info & add taichu vision model.
|
37
|
+
|
38
|
+
<br/>
|
39
|
+
|
40
|
+
<details>
|
41
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
42
|
+
|
43
|
+
#### Styles
|
44
|
+
|
45
|
+
- **misc**: Update taichu provider info & add taichu vision model, closes [#4114](https://github.com/lobehub/lobe-chat/issues/4114) ([e5331db](https://github.com/lobehub/lobe-chat/commit/e5331db))
|
46
|
+
|
47
|
+
</details>
|
48
|
+
|
49
|
+
<div align="right">
|
50
|
+
|
51
|
+
[](#readme-top)
|
52
|
+
|
53
|
+
</div>
|
54
|
+
|
5
55
|
### [Version 1.19.28](https://github.com/lobehub/lobe-chat/compare/v1.19.27...v1.19.28)
|
6
56
|
|
7
57
|
<sup>Released on **2024-09-24**</sup>
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.19.
|
3
|
+
"version": "1.19.30",
|
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",
|
@@ -68,8 +68,8 @@ export const useProviderList = (): ProviderItem[] => {
|
|
68
68
|
BaichuanProviderCard,
|
69
69
|
MinimaxProviderCard,
|
70
70
|
Ai360ProviderCard,
|
71
|
-
SiliconCloudProviderCard,
|
72
71
|
TaichuProviderCard,
|
72
|
+
SiliconCloudProviderCard,
|
73
73
|
],
|
74
74
|
[AzureProvider, OllamaProvider, OpenAIProvider, BedrockProvider, GithubProvider],
|
75
75
|
);
|
@@ -5,13 +5,21 @@ const Taichu: ModelProviderCard = {
|
|
5
5
|
chatModels: [
|
6
6
|
{
|
7
7
|
description:
|
8
|
-
'
|
9
|
-
displayName: 'Taichu
|
8
|
+
'Taichu 2.0 基于海量高质数据训练,具有更强的文本理解、内容创作、对话问答等能力',
|
9
|
+
displayName: 'Taichu 2.0',
|
10
10
|
enabled: true,
|
11
11
|
functionCall: false,
|
12
12
|
id: 'taichu_llm',
|
13
13
|
tokens: 32_768,
|
14
14
|
},
|
15
|
+
{
|
16
|
+
description:
|
17
|
+
'Taichu 2.0V 融合了图像理解、知识迁移、逻辑归因等能力,在图文问答领域表现突出',
|
18
|
+
displayName: 'Taichu 2.0V',
|
19
|
+
id: 'taichu_vqa',
|
20
|
+
tokens: 4096,
|
21
|
+
vision: true,
|
22
|
+
},
|
15
23
|
],
|
16
24
|
checkModel: 'taichu_llm',
|
17
25
|
description:
|