@lobehub/chat 1.34.4 → 1.34.5
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 +1 -1
- package/src/config/modelProviders/google.ts +19 -4
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.34.5](https://github.com/lobehub/lobe-chat/compare/v1.34.4...v1.34.5)
|
6
|
+
|
7
|
+
<sup>Released on **2024-11-28**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Add Google LearnLM model.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Add Google LearnLM model, closes [#4821](https://github.com/lobehub/lobe-chat/issues/4821) ([f900c0a](https://github.com/lobehub/lobe-chat/commit/f900c0a))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.34.4](https://github.com/lobehub/lobe-chat/compare/v1.34.3...v1.34.4)
|
6
31
|
|
7
32
|
<sup>Released on **2024-11-27**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.34.
|
3
|
+
"version": "1.34.5",
|
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,7 @@ const Google: ModelProviderCard = {
|
|
5
5
|
chatModels: [
|
6
6
|
{
|
7
7
|
description:
|
8
|
-
'Gemini Exp 1121 是Google最新的实验性多模态AI
|
8
|
+
'Gemini Exp 1121 是 Google 最新的实验性多模态AI模型,拥有改进的编码、推理和视觉能力。',
|
9
9
|
displayName: 'Gemini Experimental 1121',
|
10
10
|
enabled: true,
|
11
11
|
functionCall: true,
|
@@ -22,9 +22,8 @@ const Google: ModelProviderCard = {
|
|
22
22
|
},
|
23
23
|
{
|
24
24
|
description:
|
25
|
-
'Gemini Exp 1114 是Google
|
25
|
+
'Gemini Exp 1114 是 Google 的实验性多模态AI模型,对输出质量有一定改进。',
|
26
26
|
displayName: 'Gemini Experimental 1114',
|
27
|
-
enabled: true,
|
28
27
|
functionCall: true,
|
29
28
|
id: 'gemini-exp-1114',
|
30
29
|
maxOutput: 8192,
|
@@ -39,7 +38,23 @@ const Google: ModelProviderCard = {
|
|
39
38
|
},
|
40
39
|
{
|
41
40
|
description:
|
42
|
-
'
|
41
|
+
'LearnLM 是一个实验性的、特定于任务的语言模型,经过训练以符合学习科学原则,可在教学和学习场景中遵循系统指令,充当专家导师等。',
|
42
|
+
displayName: 'LearnLM 1.5 Pro Experimental',
|
43
|
+
functionCall: true,
|
44
|
+
id: 'learnlm-1.5-pro-experimental',
|
45
|
+
maxOutput: 8192,
|
46
|
+
pricing: {
|
47
|
+
cachedInput: 0,
|
48
|
+
input: 0,
|
49
|
+
output: 0,
|
50
|
+
},
|
51
|
+
releasedAt: '2024-11-19',
|
52
|
+
tokens: 32_767 + 8192,
|
53
|
+
vision: true,
|
54
|
+
},
|
55
|
+
{
|
56
|
+
description:
|
57
|
+
'Gemini 1.5 Flash 是 Google 最新的多模态AI模型,具备快速处理能力,支持文本、图像和视频输入,适用于多种任务的高效扩展。',
|
43
58
|
displayName: 'Gemini 1.5 Flash',
|
44
59
|
enabled: true,
|
45
60
|
functionCall: true,
|