@lobehub/chat 0.154.5 → 0.154.6
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 +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,31 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 0.154.6](https://github.com/lobehub/lobe-chat/compare/v0.154.5...v0.154.6)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2024-05-07**</sup>
|
|
8
|
+
|
|
9
|
+
#### 💄 Styles
|
|
10
|
+
|
|
11
|
+
- **misc**: Add gemini-1.0-pro-002.
|
|
12
|
+
|
|
13
|
+
<br/>
|
|
14
|
+
|
|
15
|
+
<details>
|
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
17
|
+
|
|
18
|
+
#### Styles
|
|
19
|
+
|
|
20
|
+
- **misc**: Add gemini-1.0-pro-002, closes [#2406](https://github.com/lobehub/lobe-chat/issues/2406) ([44b29a9](https://github.com/lobehub/lobe-chat/commit/44b29a9))
|
|
21
|
+
|
|
22
|
+
</details>
|
|
23
|
+
|
|
24
|
+
<div align="right">
|
|
25
|
+
|
|
26
|
+
[](#readme-top)
|
|
27
|
+
|
|
28
|
+
</div>
|
|
29
|
+
|
|
5
30
|
### [Version 0.154.5](https://github.com/lobehub/lobe-chat/compare/v0.154.4...v0.154.5)
|
|
6
31
|
|
|
7
32
|
<sup>Released on **2024-05-06**</sup>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "0.154.
|
|
3
|
+
"version": "0.154.6",
|
|
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",
|
|
@@ -51,6 +51,14 @@ const Google: ModelProviderCard = {
|
|
|
51
51
|
maxOutput: 2048,
|
|
52
52
|
tokens: 30_720 + 2048,
|
|
53
53
|
},
|
|
54
|
+
{
|
|
55
|
+
description:
|
|
56
|
+
'The best model for scaling across a wide range of tasks. Released April 9, 2024.',
|
|
57
|
+
displayName: 'Gemini 1.0 Pro 002 (Tuning)',
|
|
58
|
+
id: 'gemini-1.0-pro-002',
|
|
59
|
+
maxOutput: 2048,
|
|
60
|
+
tokens: 30_720 + 2048,
|
|
61
|
+
},
|
|
54
62
|
{
|
|
55
63
|
description:
|
|
56
64
|
'The best model for scaling across a wide range of tasks. This is the latest model.',
|