@lobehub/chat 1.19.35 → 1.19.36
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.19.36](https://github.com/lobehub/lobe-chat/compare/v1.19.35...v1.19.36)
|
6
|
+
|
7
|
+
<sup>Released on **2024-09-27**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Add llama3.2 model for openrouter provider.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Add llama3.2 model for openrouter provider, closes [#4151](https://github.com/lobehub/lobe-chat/issues/4151) ([6f1a966](https://github.com/lobehub/lobe-chat/commit/6f1a966))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.19.35](https://github.com/lobehub/lobe-chat/compare/v1.19.34...v1.19.35)
|
6
31
|
|
7
32
|
<sup>Released on **2024-09-27**</sup>
|
package/README.md
CHANGED
@@ -253,7 +253,7 @@ In addition, these plugins are not limited to news aggregation, but can also ext
|
|
253
253
|
| [Savvy Trader AI](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **savvytrader** on **2024-06-27**</sup> | Realtime stock, crypto and other investment data.<br/>`stock` `analyze` |
|
254
254
|
| [Search1API](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **fatwang2** on **2024-05-06**</sup> | Search aggregation service, specifically designed for LLMs<br/>`web` `search` |
|
255
255
|
|
256
|
-
> 📊 Total plugins: [<kbd>**
|
256
|
+
> 📊 Total plugins: [<kbd>**49**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
|
257
257
|
|
258
258
|
<!-- PLUGIN LIST -->
|
259
259
|
|
package/README.zh-CN.md
CHANGED
@@ -245,7 +245,7 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
245
245
|
| [Savvy Trader AI](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **savvytrader** on **2024-06-27**</sup> | 实时股票、加密货币和其他投资数据。<br/>`股票` `分析` |
|
246
246
|
| [Search1API](https://chat-preview.lobehub.com/settings/agent)<br/><sup>By **fatwang2** on **2024-05-06**</sup> | 搜索聚合服务,专为 LLMs 设计<br/>`web` `search` |
|
247
247
|
|
248
|
-
> 📊 Total plugins: [<kbd>**
|
248
|
+
> 📊 Total plugins: [<kbd>**49**</kbd>](https://github.com/lobehub/lobe-chat-plugins)
|
249
249
|
|
250
250
|
<!-- PLUGIN LIST -->
|
251
251
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.19.
|
3
|
+
"version": "1.19.36",
|
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",
|
@@ -79,8 +79,10 @@ const OpenRouter: ModelProviderCard = {
|
|
79
79
|
id: 'anthropic/claude-3-haiku',
|
80
80
|
maxOutput: 4096,
|
81
81
|
pricing: {
|
82
|
+
cachedInput: 0.025,
|
82
83
|
input: 0.25,
|
83
84
|
output: 1.25,
|
85
|
+
writeCacheInput: 0.3125,
|
84
86
|
},
|
85
87
|
releasedAt: '2024-03-07',
|
86
88
|
tokens: 200_000,
|
@@ -113,43 +115,41 @@ const OpenRouter: ModelProviderCard = {
|
|
113
115
|
id: 'anthropic/claude-3-opus',
|
114
116
|
maxOutput: 4096,
|
115
117
|
pricing: {
|
118
|
+
cachedInput: 1.5,
|
116
119
|
input: 15,
|
117
120
|
output: 75,
|
121
|
+
writeCacheInput: 18.75,
|
118
122
|
},
|
119
123
|
releasedAt: '2024-02-29',
|
120
124
|
tokens: 200_000,
|
121
125
|
vision: true,
|
122
126
|
},
|
123
127
|
{
|
124
|
-
description: 'Gemini 1.5 Flash
|
125
|
-
displayName: 'Gemini 1.5 Flash
|
128
|
+
description: 'Gemini 1.5 Flash 提供了优化后的多模态处理能力,适用多种复杂任务场景。',
|
129
|
+
displayName: 'Gemini 1.5 Flash',
|
126
130
|
enabled: true,
|
127
131
|
functionCall: true,
|
128
|
-
id: 'google/gemini-flash-1.5
|
132
|
+
id: 'google/gemini-flash-1.5',
|
129
133
|
maxOutput: 8192,
|
130
134
|
pricing: {
|
131
|
-
cachedInput: 0.018_75,
|
132
135
|
input: 0.075,
|
133
136
|
output: 0.3,
|
134
137
|
},
|
135
|
-
|
136
|
-
tokens: 1_048_576 + 8192,
|
138
|
+
tokens: 1_000_000 + 8192,
|
137
139
|
vision: true,
|
138
140
|
},
|
139
141
|
{
|
140
|
-
description: 'Gemini 1.5 Pro
|
141
|
-
displayName: 'Gemini 1.5 Pro
|
142
|
+
description: 'Gemini 1.5 Pro 结合最新优化技术,带来更高效的多模态数据处理能力。',
|
143
|
+
displayName: 'Gemini 1.5 Pro',
|
142
144
|
enabled: true,
|
143
145
|
functionCall: true,
|
144
|
-
id: 'google/gemini-pro-1.5
|
146
|
+
id: 'google/gemini-pro-1.5',
|
145
147
|
maxOutput: 8192,
|
146
148
|
pricing: {
|
147
|
-
cachedInput: 0.875,
|
148
149
|
input: 3.5,
|
149
150
|
output: 10.5,
|
150
151
|
},
|
151
|
-
|
152
|
-
tokens: 2_097_152 + 8192,
|
152
|
+
tokens: 2_000_000 + 8192,
|
153
153
|
vision: true,
|
154
154
|
},
|
155
155
|
{
|
@@ -160,13 +160,36 @@ const OpenRouter: ModelProviderCard = {
|
|
160
160
|
functionCall: true,
|
161
161
|
id: 'deepseek/deepseek-chat',
|
162
162
|
pricing: {
|
163
|
-
cachedInput: 0.014,
|
164
163
|
input: 0.14,
|
165
164
|
output: 0.28,
|
166
165
|
},
|
167
166
|
releasedAt: '2024-09-05',
|
168
167
|
tokens: 128_000,
|
169
168
|
},
|
169
|
+
{
|
170
|
+
description: 'LLaMA 3.2 旨在处理结合视觉和文本数据的任务。它在图像描述和视觉问答等任务中表现出色,跨越了语言生成和视觉推理之间的鸿沟。',
|
171
|
+
displayName: 'Llama 3.2 11B Vision',
|
172
|
+
enabled: true,
|
173
|
+
id: 'meta-llama/llama-3.2-11b-vision-instruct',
|
174
|
+
pricing: {
|
175
|
+
input: 0.162,
|
176
|
+
output: 0.162,
|
177
|
+
},
|
178
|
+
tokens: 131_072,
|
179
|
+
vision: true,
|
180
|
+
},
|
181
|
+
{
|
182
|
+
description: 'LLaMA 3.2 旨在处理结合视觉和文本数据的任务。它在图像描述和视觉问答等任务中表现出色,跨越了语言生成和视觉推理之间的鸿沟。',
|
183
|
+
displayName: 'Llama 3.2 90B Vision',
|
184
|
+
enabled: true,
|
185
|
+
id: 'meta-llama/llama-3.2-90b-vision-instruct',
|
186
|
+
pricing: {
|
187
|
+
input: 0.4,
|
188
|
+
output: 0.4,
|
189
|
+
},
|
190
|
+
tokens: 131_072,
|
191
|
+
vision: true,
|
192
|
+
},
|
170
193
|
{
|
171
194
|
description: 'Qwen2 是全新的大型语言模型系列,具有更强的理解和生成能力。',
|
172
195
|
displayName: 'Qwen2 7B (Free)',
|
@@ -83,7 +83,7 @@ Usage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.d
|
|
83
83
|
|
84
84
|
Note: This model is experimental and not suited for production use-cases. It may be removed or redirected to another model in the future.",
|
85
85
|
"displayName": "Google: Gemini Flash 1.5 Experimental",
|
86
|
-
"enabled":
|
86
|
+
"enabled": false,
|
87
87
|
"functionCall": false,
|
88
88
|
"id": "google/gemini-flash-1.5-exp",
|
89
89
|
"maxTokens": 32768,
|
@@ -291,7 +291,7 @@ Usage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.d
|
|
291
291
|
|
292
292
|
Note: This model is experimental and not suited for production use-cases. It may be removed or redirected to another model in the future.",
|
293
293
|
"displayName": "Google: Gemini Pro 1.5 Experimental",
|
294
|
-
"enabled":
|
294
|
+
"enabled": false,
|
295
295
|
"functionCall": false,
|
296
296
|
"id": "google/gemini-pro-1.5-exp",
|
297
297
|
"maxTokens": 32768,
|
@@ -878,7 +878,7 @@ Usage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.d
|
|
878
878
|
|
879
879
|
#multimodal",
|
880
880
|
"displayName": "Google: Gemini Flash 1.5",
|
881
|
-
"enabled":
|
881
|
+
"enabled": true,
|
882
882
|
"functionCall": false,
|
883
883
|
"id": "google/gemini-flash-1.5",
|
884
884
|
"maxTokens": 32768,
|
@@ -1249,7 +1249,7 @@ Usage of Gemini is subject to Google's [Gemini Terms of Use](https://ai.google.d
|
|
1249
1249
|
|
1250
1250
|
#multimodal",
|
1251
1251
|
"displayName": "Google: Gemini Pro 1.5",
|
1252
|
-
"enabled":
|
1252
|
+
"enabled": true,
|
1253
1253
|
"functionCall": false,
|
1254
1254
|
"id": "google/gemini-pro-1.5",
|
1255
1255
|
"maxTokens": 32768,
|