@lobehub/chat 1.60.6 → 1.60.7
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 +26 -0
- package/changelog/v1.json +9 -0
- package/package.json +1 -1
- package/src/config/aiModels/google.ts +1 -108
- package/src/config/aiModels/minimax.ts +10 -73
- package/src/config/modelProviders/google.ts +72 -151
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,32 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.60.7](https://github.com/lobehub/lobe-chat/compare/v1.60.6...v1.60.7)
|
6
|
+
|
7
|
+
<sup>Released on **2025-02-17**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Remove deprecated gemini models, update MiniMax models.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Remove deprecated gemini models, closes [#6269](https://github.com/lobehub/lobe-chat/issues/6269) ([45977c3](https://github.com/lobehub/lobe-chat/commit/45977c3))
|
21
|
+
- **misc**: Update MiniMax models, closes [#6270](https://github.com/lobehub/lobe-chat/issues/6270) ([2d7803a](https://github.com/lobehub/lobe-chat/commit/2d7803a))
|
22
|
+
|
23
|
+
</details>
|
24
|
+
|
25
|
+
<div align="right">
|
26
|
+
|
27
|
+
[](#readme-top)
|
28
|
+
|
29
|
+
</div>
|
30
|
+
|
5
31
|
### [Version 1.60.6](https://github.com/lobehub/lobe-chat/compare/v1.60.5...v1.60.6)
|
6
32
|
|
7
33
|
<sup>Released on **2025-02-17**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.60.
|
3
|
+
"version": "1.60.7",
|
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",
|
@@ -65,8 +65,7 @@ const googleChatModels: AIChatModelCard[] = [
|
|
65
65
|
vision: true,
|
66
66
|
},
|
67
67
|
contextWindowTokens: 1_048_576 + 8192,
|
68
|
-
description:
|
69
|
-
'一个 Gemini 2.0 Flash 模型,针对成本效益和低延迟等目标进行了优化。',
|
68
|
+
description: '一个 Gemini 2.0 Flash 模型,针对成本效益和低延迟等目标进行了优化。',
|
70
69
|
displayName: 'Gemini 2.0 Flash-Lite Preview 02-05',
|
71
70
|
id: 'gemini-2.0-flash-lite-preview-02-05',
|
72
71
|
maxOutput: 8192,
|
@@ -78,25 +77,6 @@ const googleChatModels: AIChatModelCard[] = [
|
|
78
77
|
releasedAt: '2025-02-05',
|
79
78
|
type: 'chat',
|
80
79
|
},
|
81
|
-
{
|
82
|
-
abilities: {
|
83
|
-
functionCall: true,
|
84
|
-
vision: true,
|
85
|
-
},
|
86
|
-
contextWindowTokens: 2_097_152 + 8192,
|
87
|
-
description:
|
88
|
-
'Gemini Exp 1206 是 Google 的实验性多模态AI模型,与历史版本相比有一定的质量提升。',
|
89
|
-
displayName: 'Gemini Experimental 1206',
|
90
|
-
id: 'gemini-exp-1206',
|
91
|
-
maxOutput: 8192,
|
92
|
-
pricing: {
|
93
|
-
cachedInput: 0,
|
94
|
-
input: 0,
|
95
|
-
output: 0,
|
96
|
-
},
|
97
|
-
releasedAt: '2024-12-06',
|
98
|
-
type: 'chat',
|
99
|
-
},
|
100
80
|
{
|
101
81
|
abilities: {
|
102
82
|
reasoning: true,
|
@@ -117,44 +97,6 @@ const googleChatModels: AIChatModelCard[] = [
|
|
117
97
|
releasedAt: '2025-01-21',
|
118
98
|
type: 'chat',
|
119
99
|
},
|
120
|
-
{
|
121
|
-
abilities: {
|
122
|
-
reasoning: true,
|
123
|
-
vision: true,
|
124
|
-
},
|
125
|
-
contextWindowTokens: 40_959,
|
126
|
-
description:
|
127
|
-
'Gemini 2.0 Flash Thinking Exp 是 Google 的实验性多模态推理AI模型,能对复杂问题进行推理,拥有新的思维能力。',
|
128
|
-
displayName: 'Gemini 2.0 Flash Thinking Experimental 12-19',
|
129
|
-
id: 'gemini-2.0-flash-thinking-exp-1219', // be replaced
|
130
|
-
maxOutput: 8192,
|
131
|
-
pricing: {
|
132
|
-
cachedInput: 0,
|
133
|
-
input: 0,
|
134
|
-
output: 0,
|
135
|
-
},
|
136
|
-
releasedAt: '2024-12-19',
|
137
|
-
type: 'chat',
|
138
|
-
},
|
139
|
-
{
|
140
|
-
abilities: {
|
141
|
-
functionCall: true,
|
142
|
-
vision: true,
|
143
|
-
},
|
144
|
-
contextWindowTokens: 1_056_768,
|
145
|
-
description:
|
146
|
-
'Gemini 2.0 Flash Exp 是 Google 的实验性多模态AI模型,拥有下一代特性,卓越的速度,原生工具调用以及多模态生成。',
|
147
|
-
displayName: 'Gemini 2.0 Flash Experimental',
|
148
|
-
id: 'gemini-2.0-flash-exp',
|
149
|
-
maxOutput: 8192,
|
150
|
-
pricing: {
|
151
|
-
cachedInput: 0,
|
152
|
-
input: 0,
|
153
|
-
output: 0,
|
154
|
-
},
|
155
|
-
releasedAt: '2024-12-11',
|
156
|
-
type: 'chat',
|
157
|
-
},
|
158
100
|
{
|
159
101
|
abilities: {
|
160
102
|
functionCall: true,
|
@@ -264,55 +206,6 @@ const googleChatModels: AIChatModelCard[] = [
|
|
264
206
|
releasedAt: '2024-10-03',
|
265
207
|
type: 'chat',
|
266
208
|
},
|
267
|
-
{
|
268
|
-
abilities: {
|
269
|
-
functionCall: true,
|
270
|
-
vision: true,
|
271
|
-
},
|
272
|
-
contextWindowTokens: 1_008_192,
|
273
|
-
description:
|
274
|
-
'Gemini 1.5 Flash 8B 0924 是最新的实验性模型,在文本和多模态用例中都有显著的性能提升。',
|
275
|
-
displayName: 'Gemini 1.5 Flash 8B 0924',
|
276
|
-
id: 'gemini-1.5-flash-8b-exp-0924',
|
277
|
-
maxOutput: 8192,
|
278
|
-
pricing: {
|
279
|
-
cachedInput: 0.018_75,
|
280
|
-
input: 0.075,
|
281
|
-
output: 0.3,
|
282
|
-
},
|
283
|
-
releasedAt: '2024-09-24',
|
284
|
-
type: 'chat',
|
285
|
-
},
|
286
|
-
{
|
287
|
-
abilities: {
|
288
|
-
functionCall: true,
|
289
|
-
},
|
290
|
-
contextWindowTokens: 32_768,
|
291
|
-
description:
|
292
|
-
'Gemini 1.0 Pro 001 (Tuning) 提供稳定并可调优的性能,是复杂任务解决方案的理想选择。',
|
293
|
-
displayName: 'Gemini 1.0 Pro 001 (Tuning)',
|
294
|
-
id: 'gemini-1.0-pro-001', // Deprecated on 2/15/2025
|
295
|
-
maxOutput: 2048,
|
296
|
-
pricing: {
|
297
|
-
input: 0.5,
|
298
|
-
output: 1.5,
|
299
|
-
},
|
300
|
-
releasedAt: '2023-12-06',
|
301
|
-
type: 'chat',
|
302
|
-
},
|
303
|
-
{
|
304
|
-
contextWindowTokens: 32_768,
|
305
|
-
description: 'Gemini 1.0 Pro 002 (Tuning) 提供出色的多模态支持,专注于复杂任务的有效解决。',
|
306
|
-
displayName: 'Gemini 1.0 Pro 002 (Tuning)',
|
307
|
-
id: 'gemini-1.0-pro-002', // Deprecated on 2/15/2025
|
308
|
-
maxOutput: 2048,
|
309
|
-
pricing: {
|
310
|
-
input: 0.5,
|
311
|
-
output: 1.5,
|
312
|
-
},
|
313
|
-
releasedAt: '2023-12-06',
|
314
|
-
type: 'chat',
|
315
|
-
},
|
316
209
|
];
|
317
210
|
|
318
211
|
export const allModels = [...googleChatModels];
|
@@ -14,31 +14,12 @@ const minimaxChatModels: AIChatModelCard[] = [
|
|
14
14
|
maxOutput: 1_000_192,
|
15
15
|
pricing: {
|
16
16
|
currency: 'CNY',
|
17
|
-
input:
|
18
|
-
output:
|
17
|
+
input: 1,
|
18
|
+
output: 8,
|
19
19
|
},
|
20
20
|
releasedAt: '2025-01-15',
|
21
21
|
type: 'chat',
|
22
22
|
},
|
23
|
-
{
|
24
|
-
abilities: {
|
25
|
-
functionCall: true,
|
26
|
-
vision: true,
|
27
|
-
},
|
28
|
-
contextWindowTokens: 245_760,
|
29
|
-
description: '相对于abab6.5系列模型在长文、数学、写作等能力有大幅度提升。',
|
30
|
-
displayName: 'abab7-chat-preview',
|
31
|
-
enabled: true,
|
32
|
-
id: 'abab7-chat-preview',
|
33
|
-
maxOutput: 245_760,
|
34
|
-
pricing: {
|
35
|
-
currency: 'CNY',
|
36
|
-
input: 10,
|
37
|
-
output: 10,
|
38
|
-
},
|
39
|
-
releasedAt: '2024-11-06',
|
40
|
-
type: 'chat',
|
41
|
-
},
|
42
23
|
{
|
43
24
|
abilities: {
|
44
25
|
functionCall: true,
|
@@ -59,61 +40,17 @@ const minimaxChatModels: AIChatModelCard[] = [
|
|
59
40
|
},
|
60
41
|
{
|
61
42
|
abilities: {
|
62
|
-
|
63
|
-
},
|
64
|
-
contextWindowTokens: 8192,
|
65
|
-
description: '专为多语种人设对话设计,支持英文及其他多种语言的高质量对话生成。',
|
66
|
-
displayName: 'abab6.5g',
|
67
|
-
enabled: true,
|
68
|
-
id: 'abab6.5g-chat',
|
69
|
-
maxOutput: 8192,
|
70
|
-
pricing: {
|
71
|
-
currency: 'CNY',
|
72
|
-
input: 5,
|
73
|
-
output: 5,
|
74
|
-
},
|
75
|
-
type: 'chat',
|
76
|
-
},
|
77
|
-
{
|
78
|
-
abilities: {
|
79
|
-
functionCall: true,
|
80
|
-
},
|
81
|
-
contextWindowTokens: 8192,
|
82
|
-
description: '针对中文人设对话场景优化,提供流畅且符合中文表达习惯的对话生成能力。',
|
83
|
-
displayName: 'abab6.5t',
|
84
|
-
enabled: true,
|
85
|
-
id: 'abab6.5t-chat',
|
86
|
-
maxOutput: 8192,
|
87
|
-
pricing: {
|
88
|
-
currency: 'CNY',
|
89
|
-
input: 5,
|
90
|
-
output: 5,
|
43
|
+
reasoning: true,
|
91
44
|
},
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
displayName: 'abab5.5',
|
98
|
-
id: 'abab5.5-chat',
|
99
|
-
maxOutput: 16_384,
|
100
|
-
pricing: {
|
101
|
-
currency: 'CNY',
|
102
|
-
input: 5,
|
103
|
-
output: 5,
|
104
|
-
},
|
105
|
-
type: 'chat',
|
106
|
-
},
|
107
|
-
{
|
108
|
-
contextWindowTokens: 8192,
|
109
|
-
description: '专为中文人设对话场景设计,提供高质量的中文对话生成能力,适用于多种应用场景。',
|
110
|
-
displayName: 'abab5.5s',
|
111
|
-
id: 'abab5.5s-chat',
|
112
|
-
maxOutput: 8192,
|
45
|
+
contextWindowTokens: 64_000,
|
46
|
+
description: 'DeepSeek 推出的推理模型。在输出最终回答之前,模型会先输出一段思维链内容,以提升最终答案的准确性。',
|
47
|
+
displayName: 'DeepSeek R1',
|
48
|
+
id: 'DeepSeek-R1',
|
49
|
+
maxOutput: 64_000,
|
113
50
|
pricing: {
|
114
51
|
currency: 'CNY',
|
115
|
-
input:
|
116
|
-
output:
|
52
|
+
input: 4,
|
53
|
+
output: 16,
|
117
54
|
},
|
118
55
|
type: 'chat',
|
119
56
|
},
|
@@ -5,256 +5,177 @@ const Google: ModelProviderCard = {
|
|
5
5
|
chatModels: [
|
6
6
|
{
|
7
7
|
contextWindowTokens: 2_097_152 + 8192,
|
8
|
-
description:
|
9
|
-
|
8
|
+
description:
|
9
|
+
'Gemini 2.0 Pro Experimental 是 Google 最新的实验性多模态AI模型,与历史版本相比有一定的质量提升,特别是对于世界知识、代码和长上下文。',
|
10
|
+
displayName: 'Gemini 2.0 Pro Experimental 02-05',
|
10
11
|
enabled: true,
|
11
12
|
functionCall: true,
|
12
|
-
id:
|
13
|
+
id: 'gemini-2.0-pro-exp-02-05',
|
13
14
|
maxOutput: 8192,
|
14
15
|
pricing: {
|
15
16
|
cachedInput: 0,
|
16
17
|
input: 0,
|
17
|
-
output: 0
|
18
|
+
output: 0,
|
18
19
|
},
|
19
|
-
releasedAt:
|
20
|
-
vision: true
|
20
|
+
releasedAt: '2025-02-05',
|
21
|
+
vision: true,
|
21
22
|
},
|
22
23
|
{
|
23
24
|
contextWindowTokens: 1_048_576 + 8192,
|
24
|
-
description:
|
25
|
-
|
25
|
+
description:
|
26
|
+
'Gemini 2.0 Flash 提供下一代功能和改进,包括卓越的速度、原生工具使用、多模态生成和1M令牌上下文窗口。',
|
27
|
+
displayName: 'Gemini 2.0 Flash',
|
26
28
|
enabled: true,
|
27
29
|
functionCall: true,
|
28
|
-
id:
|
30
|
+
id: 'gemini-2.0-flash',
|
29
31
|
maxOutput: 8192,
|
30
32
|
pricing: {
|
31
33
|
cachedInput: 0.025,
|
32
34
|
input: 0.1,
|
33
|
-
output: 0.4
|
35
|
+
output: 0.4,
|
34
36
|
},
|
35
|
-
releasedAt:
|
36
|
-
vision: true
|
37
|
+
releasedAt: '2025-02-05',
|
38
|
+
vision: true,
|
37
39
|
},
|
38
40
|
{
|
39
41
|
contextWindowTokens: 1_048_576 + 8192,
|
40
|
-
description:
|
41
|
-
|
42
|
+
description:
|
43
|
+
'Gemini 2.0 Flash 提供下一代功能和改进,包括卓越的速度、原生工具使用、多模态生成和1M令牌上下文窗口。',
|
44
|
+
displayName: 'Gemini 2.0 Flash 001',
|
42
45
|
functionCall: true,
|
43
|
-
id:
|
46
|
+
id: 'gemini-2.0-flash-001',
|
44
47
|
maxOutput: 8192,
|
45
48
|
pricing: {
|
46
49
|
cachedInput: 0.025,
|
47
50
|
input: 0.1,
|
48
|
-
output: 0.4
|
51
|
+
output: 0.4,
|
49
52
|
},
|
50
|
-
releasedAt:
|
51
|
-
vision: true
|
53
|
+
releasedAt: '2025-02-05',
|
54
|
+
vision: true,
|
52
55
|
},
|
53
56
|
{
|
54
57
|
contextWindowTokens: 1_048_576 + 8192,
|
55
|
-
description:
|
56
|
-
displayName:
|
57
|
-
id:
|
58
|
+
description: '一个 Gemini 2.0 Flash 模型,针对成本效益和低延迟等目标进行了优化。',
|
59
|
+
displayName: 'Gemini 2.0 Flash-Lite Preview 02-05',
|
60
|
+
id: 'gemini-2.0-flash-lite-preview-02-05',
|
58
61
|
maxOutput: 8192,
|
59
62
|
pricing: {
|
60
63
|
cachedInput: 0.018_75,
|
61
64
|
input: 0.075,
|
62
|
-
output: 0.3
|
65
|
+
output: 0.3,
|
63
66
|
},
|
64
|
-
releasedAt:
|
65
|
-
vision: true
|
66
|
-
},
|
67
|
-
{
|
68
|
-
contextWindowTokens: 2_097_152 + 8192,
|
69
|
-
description: "Gemini Exp 1206 是 Google 的实验性多模态AI模型,与历史版本相比有一定的质量提升。",
|
70
|
-
displayName: "Gemini Experimental 1206",
|
71
|
-
functionCall: true,
|
72
|
-
id: "gemini-exp-1206",
|
73
|
-
maxOutput: 8192,
|
74
|
-
pricing: {
|
75
|
-
cachedInput: 0,
|
76
|
-
input: 0,
|
77
|
-
output: 0
|
78
|
-
},
|
79
|
-
releasedAt: "2024-12-06",
|
80
|
-
vision: true
|
67
|
+
releasedAt: '2025-02-05',
|
68
|
+
vision: true,
|
81
69
|
},
|
82
70
|
{
|
83
71
|
contextWindowTokens: 1_048_576 + 65_536,
|
84
|
-
description:
|
85
|
-
|
72
|
+
description:
|
73
|
+
'Gemini 2.0 Flash Thinking Exp 是 Google 的实验性多模态推理AI模型,能对复杂问题进行推理,拥有新的思维能力。',
|
74
|
+
displayName: 'Gemini 2.0 Flash Thinking Experimental 01-21',
|
86
75
|
enabled: true,
|
87
|
-
id:
|
76
|
+
id: 'gemini-2.0-flash-thinking-exp-01-21',
|
88
77
|
maxOutput: 65_536,
|
89
78
|
pricing: {
|
90
79
|
cachedInput: 0,
|
91
80
|
input: 0,
|
92
|
-
output: 0
|
81
|
+
output: 0,
|
93
82
|
},
|
94
|
-
releasedAt:
|
95
|
-
vision: true
|
83
|
+
releasedAt: '2025-01-21',
|
84
|
+
vision: true,
|
96
85
|
},
|
97
86
|
{
|
98
87
|
contextWindowTokens: 40_959,
|
99
|
-
description:
|
100
|
-
|
101
|
-
|
102
|
-
maxOutput: 8192,
|
103
|
-
pricing: {
|
104
|
-
cachedInput: 0,
|
105
|
-
input: 0,
|
106
|
-
output: 0
|
107
|
-
},
|
108
|
-
releasedAt: "2024-12-19",
|
109
|
-
vision: true
|
110
|
-
},
|
111
|
-
{
|
112
|
-
contextWindowTokens: 1_056_768,
|
113
|
-
description: "Gemini 2.0 Flash Exp 是 Google 的实验性多模态AI模型,拥有下一代特性,卓越的速度,原生工具调用以及多模态生成。",
|
114
|
-
displayName: "Gemini 2.0 Flash Experimental",
|
88
|
+
description:
|
89
|
+
'LearnLM 是一个实验性的、特定于任务的语言模型,经过训练以符合学习科学原则,可在教学和学习场景中遵循系统指令,充当专家导师等。',
|
90
|
+
displayName: 'LearnLM 1.5 Pro Experimental',
|
115
91
|
functionCall: true,
|
116
|
-
id:
|
92
|
+
id: 'learnlm-1.5-pro-experimental',
|
117
93
|
maxOutput: 8192,
|
118
94
|
pricing: {
|
119
95
|
cachedInput: 0,
|
120
96
|
input: 0,
|
121
|
-
output: 0
|
97
|
+
output: 0,
|
122
98
|
},
|
123
|
-
releasedAt:
|
124
|
-
vision: true
|
125
|
-
},
|
126
|
-
{
|
127
|
-
contextWindowTokens: 40_959,
|
128
|
-
description: "LearnLM 是一个实验性的、特定于任务的语言模型,经过训练以符合学习科学原则,可在教学和学习场景中遵循系统指令,充当专家导师等。",
|
129
|
-
displayName: "LearnLM 1.5 Pro Experimental",
|
130
|
-
functionCall: true,
|
131
|
-
id: "learnlm-1.5-pro-experimental",
|
132
|
-
maxOutput: 8192,
|
133
|
-
pricing: {
|
134
|
-
cachedInput: 0,
|
135
|
-
input: 0,
|
136
|
-
output: 0
|
137
|
-
},
|
138
|
-
releasedAt: "2024-11-19",
|
139
|
-
vision: true
|
99
|
+
releasedAt: '2024-11-19',
|
100
|
+
vision: true,
|
140
101
|
},
|
141
102
|
{
|
142
103
|
contextWindowTokens: 1_008_192,
|
143
|
-
description:
|
144
|
-
displayName:
|
104
|
+
description: 'Gemini 1.5 Flash 002 是一款高效的多模态模型,支持广泛应用的扩展。',
|
105
|
+
displayName: 'Gemini 1.5 Flash 002',
|
145
106
|
functionCall: true,
|
146
|
-
id:
|
107
|
+
id: 'gemini-1.5-flash-002',
|
147
108
|
maxOutput: 8192,
|
148
109
|
pricing: {
|
149
110
|
cachedInput: 0.018_75,
|
150
111
|
input: 0.075,
|
151
|
-
output: 0.3
|
112
|
+
output: 0.3,
|
152
113
|
},
|
153
|
-
releasedAt:
|
154
|
-
vision: true
|
114
|
+
releasedAt: '2024-09-25',
|
115
|
+
vision: true,
|
155
116
|
},
|
156
117
|
{
|
157
118
|
contextWindowTokens: 1_008_192,
|
158
|
-
description:
|
159
|
-
displayName:
|
119
|
+
description: 'Gemini 1.5 Flash 001 是一款高效的多模态模型,支持广泛应用的扩展。',
|
120
|
+
displayName: 'Gemini 1.5 Flash 001',
|
160
121
|
functionCall: true,
|
161
|
-
id:
|
122
|
+
id: 'gemini-1.5-flash-001',
|
162
123
|
maxOutput: 8192,
|
163
124
|
pricing: {
|
164
125
|
cachedInput: 0.018_75,
|
165
126
|
input: 0.075,
|
166
|
-
output: 0.3
|
127
|
+
output: 0.3,
|
167
128
|
},
|
168
|
-
vision: true
|
129
|
+
vision: true,
|
169
130
|
},
|
170
131
|
{
|
171
132
|
contextWindowTokens: 2_008_192,
|
172
|
-
description:
|
173
|
-
|
133
|
+
description:
|
134
|
+
'Gemini 1.5 Pro 002 是最新的生产就绪模型,提供更高质量的输出,特别在数学、长上下文和视觉任务方面有显著提升。',
|
135
|
+
displayName: 'Gemini 1.5 Pro 002',
|
174
136
|
functionCall: true,
|
175
|
-
id:
|
137
|
+
id: 'gemini-1.5-pro-002',
|
176
138
|
maxOutput: 8192,
|
177
139
|
pricing: {
|
178
140
|
cachedInput: 0.315,
|
179
141
|
input: 1.25,
|
180
|
-
output: 2.5
|
142
|
+
output: 2.5,
|
181
143
|
},
|
182
|
-
releasedAt:
|
183
|
-
vision: true
|
144
|
+
releasedAt: '2024-09-24',
|
145
|
+
vision: true,
|
184
146
|
},
|
185
147
|
{
|
186
148
|
contextWindowTokens: 2_008_192,
|
187
|
-
description:
|
188
|
-
displayName:
|
149
|
+
description: 'Gemini 1.5 Pro 001 是可扩展的多模态AI解决方案,支持广泛的复杂任务。',
|
150
|
+
displayName: 'Gemini 1.5 Pro 001',
|
189
151
|
functionCall: true,
|
190
|
-
id:
|
152
|
+
id: 'gemini-1.5-pro-001',
|
191
153
|
maxOutput: 8192,
|
192
154
|
pricing: {
|
193
155
|
cachedInput: 0.875,
|
194
156
|
input: 3.5,
|
195
|
-
output: 10.5
|
157
|
+
output: 10.5,
|
196
158
|
},
|
197
|
-
releasedAt:
|
198
|
-
vision: true
|
159
|
+
releasedAt: '2024-02-15',
|
160
|
+
vision: true,
|
199
161
|
},
|
200
162
|
{
|
201
163
|
contextWindowTokens: 1_008_192,
|
202
|
-
description:
|
203
|
-
displayName:
|
164
|
+
description: 'Gemini 1.5 Flash 8B 是一款高效的多模态模型,支持广泛应用的扩展。',
|
165
|
+
displayName: 'Gemini 1.5 Flash 8B',
|
204
166
|
functionCall: true,
|
205
|
-
id:
|
167
|
+
id: 'gemini-1.5-flash-8b',
|
206
168
|
maxOutput: 8192,
|
207
169
|
pricing: {
|
208
170
|
cachedInput: 0.02,
|
209
171
|
input: 0.075,
|
210
|
-
output: 0.3
|
172
|
+
output: 0.3,
|
211
173
|
},
|
212
|
-
releasedAt:
|
213
|
-
vision: true
|
174
|
+
releasedAt: '2024-10-03',
|
175
|
+
vision: true,
|
214
176
|
},
|
215
|
-
{
|
216
|
-
contextWindowTokens: 1_008_192,
|
217
|
-
description: "Gemini 1.5 Flash 8B 0924 是最新的实验性模型,在文本和多模态用例中都有显著的性能提升。",
|
218
|
-
displayName: "Gemini 1.5 Flash 8B 0924",
|
219
|
-
functionCall: true,
|
220
|
-
id: "gemini-1.5-flash-8b-exp-0924",
|
221
|
-
maxOutput: 8192,
|
222
|
-
pricing: {
|
223
|
-
cachedInput: 0.018_75,
|
224
|
-
input: 0.075,
|
225
|
-
output: 0.3
|
226
|
-
},
|
227
|
-
releasedAt: "2024-09-24",
|
228
|
-
vision: true
|
229
|
-
},
|
230
|
-
{
|
231
|
-
contextWindowTokens: 32_768,
|
232
|
-
description: "Gemini 1.0 Pro 001 (Tuning) 提供稳定并可调优的性能,是复杂任务解决方案的理想选择。",
|
233
|
-
displayName: "Gemini 1.0 Pro 001 (Tuning)",
|
234
|
-
functionCall: true,
|
235
|
-
id: "gemini-1.0-pro-001",
|
236
|
-
maxOutput: 2048,
|
237
|
-
pricing: {
|
238
|
-
input: 0.5,
|
239
|
-
output: 1.5
|
240
|
-
},
|
241
|
-
releasedAt: "2023-12-06"
|
242
|
-
},
|
243
|
-
{
|
244
|
-
contextWindowTokens: 32_768,
|
245
|
-
description: "Gemini 1.0 Pro 002 (Tuning) 提供出色的多模态支持,专注于复杂任务的有效解决。",
|
246
|
-
displayName: "Gemini 1.0 Pro 002 (Tuning)",
|
247
|
-
functionCall: true,
|
248
|
-
id: "gemini-1.0-pro-002",
|
249
|
-
maxOutput: 2048,
|
250
|
-
pricing: {
|
251
|
-
input: 0.5,
|
252
|
-
output: 1.5
|
253
|
-
},
|
254
|
-
releasedAt: "2023-12-06"
|
255
|
-
}
|
256
177
|
],
|
257
|
-
checkModel: 'gemini-
|
178
|
+
checkModel: 'gemini-2.0-flash',
|
258
179
|
description:
|
259
180
|
'Google 的 Gemini 系列是其最先进、通用的 AI模型,由 Google DeepMind 打造,专为多模态设计,支持文本、代码、图像、音频和视频的无缝理解与处理。适用于从数据中心到移动设备的多种环境,极大提升了AI模型的效率与应用广泛性。',
|
260
181
|
enabled: true,
|