@lobehub/chat 1.7.9 → 1.7.10
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/package.json +1 -1
- package/src/config/modelProviders/google.ts +12 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 1.7.10](https://github.com/lobehub/lobe-chat/compare/v1.7.9...v1.7.10)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-08-02**</sup>
|
|
8
|
+
|
|
9
|
+
#### 💄 Styles
|
|
10
|
+
|
|
11
|
+
- **misc**: Add Gemini 1.5 Pro Exp model.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Styles
|
|
19
|
+
|
|
20
|
+
- **misc**: Add Gemini 1.5 Pro Exp model, closes [#3384](https://github.com/lobehub/lobe-chat/issues/3384) ([0de8b7b](https://github.com/lobehub/lobe-chat/commit/0de8b7b))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
### [Version 1.7.9](https://github.com/lobehub/lobe-chat/compare/v1.7.8...v1.7.9)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2024-08-01**</sup>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.10",
|
|
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",
|
|
@@ -24,7 +24,7 @@ const Google: ModelProviderCard = {
|
|
|
24
24
|
vision: true,
|
|
25
25
|
},
|
|
26
26
|
{
|
|
27
|
-
description: 'Mid-size multimodal model that supports up to
|
|
27
|
+
description: 'Mid-size multimodal model that supports up to 2 million tokens',
|
|
28
28
|
displayName: 'Gemini 1.5 Pro',
|
|
29
29
|
enabled: true,
|
|
30
30
|
functionCall: true,
|
|
@@ -34,7 +34,7 @@ const Google: ModelProviderCard = {
|
|
|
34
34
|
vision: true,
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
|
-
description: 'Mid-size multimodal model that supports up to
|
|
37
|
+
description: 'Mid-size multimodal model that supports up to 2 million tokens',
|
|
38
38
|
displayName: 'Gemini 1.5 Pro 001',
|
|
39
39
|
functionCall: true,
|
|
40
40
|
id: 'gemini-1.5-pro-001',
|
|
@@ -42,6 +42,16 @@ const Google: ModelProviderCard = {
|
|
|
42
42
|
tokens: 2_097_152 + 8192,
|
|
43
43
|
vision: true,
|
|
44
44
|
},
|
|
45
|
+
{
|
|
46
|
+
description: 'Mid-size multimodal model that supports up to 2 million tokens',
|
|
47
|
+
displayName: 'Gemini 1.5 Pro Experimental 0801',
|
|
48
|
+
enabled: true,
|
|
49
|
+
functionCall: true,
|
|
50
|
+
id: 'gemini-1.5-pro-exp-0801',
|
|
51
|
+
maxOutput: 8192,
|
|
52
|
+
tokens: 2_097_152 + 8192,
|
|
53
|
+
vision: true,
|
|
54
|
+
},
|
|
45
55
|
{
|
|
46
56
|
description:
|
|
47
57
|
'The best model for scaling across a wide range of tasks. This is the latest model.',
|