@llmgateway/models 1.79.0 → 1.82.0
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/dist/models/alibaba.d.ts +469 -469
- package/dist/models/alibaba.js +469 -469
- package/dist/models/alibaba.js.map +1 -1
- package/dist/models/anthropic.d.ts +266 -266
- package/dist/models/anthropic.js +266 -266
- package/dist/models/anthropic.js.map +1 -1
- package/dist/models/bytedance.d.ts +24 -24
- package/dist/models/bytedance.js +24 -24
- package/dist/models/bytedance.js.map +1 -1
- package/dist/models/deepseek.d.ts +62 -62
- package/dist/models/deepseek.js +62 -62
- package/dist/models/deepseek.js.map +1 -1
- package/dist/models/google.d.ts +402 -336
- package/dist/models/google.js +402 -336
- package/dist/models/google.js.map +1 -1
- package/dist/models/meta.d.ts +66 -66
- package/dist/models/meta.js +66 -66
- package/dist/models/meta.js.map +1 -1
- package/dist/models/minimax.d.ts +55 -55
- package/dist/models/minimax.js +55 -55
- package/dist/models/minimax.js.map +1 -1
- package/dist/models/mistral.d.ts +30 -30
- package/dist/models/mistral.js +30 -30
- package/dist/models/mistral.js.map +1 -1
- package/dist/models/moonshot.d.ts +70 -70
- package/dist/models/moonshot.js +70 -70
- package/dist/models/moonshot.js.map +1 -1
- package/dist/models/nousresearch.d.ts +6 -6
- package/dist/models/nousresearch.js +6 -6
- package/dist/models/nousresearch.js.map +1 -1
- package/dist/models/openai.d.ts +335 -327
- package/dist/models/openai.js +335 -327
- package/dist/models/openai.js.map +1 -1
- package/dist/models/perplexity.d.ts +12 -12
- package/dist/models/perplexity.js +12 -12
- package/dist/models/perplexity.js.map +1 -1
- package/dist/models/xai.d.ts +211 -188
- package/dist/models/xai.js +211 -188
- package/dist/models/xai.js.map +1 -1
- package/dist/models/xiaomi.d.ts +38 -38
- package/dist/models/xiaomi.js +38 -38
- package/dist/models/xiaomi.js.map +1 -1
- package/dist/models/zai.d.ts +177 -177
- package/dist/models/zai.js +177 -177
- package/dist/models/zai.js.map +1 -1
- package/dist/models.d.ts +2253 -2151
- package/dist/models.js.map +1 -1
- package/dist/providers.d.ts +62 -0
- package/dist/providers.js +60 -0
- package/dist/providers.js.map +1 -1
- package/dist/types.d.ts +13 -5
- package/dist/types.js +3 -0
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
package/dist/models/google.d.ts
CHANGED
|
@@ -7,63 +7,65 @@ export declare const googleModels: [{
|
|
|
7
7
|
readonly providers: [{
|
|
8
8
|
readonly providerId: "google-ai-studio";
|
|
9
9
|
readonly modelName: "gemini-2.5-pro";
|
|
10
|
-
readonly inputPrice:
|
|
11
|
-
readonly outputPrice:
|
|
12
|
-
readonly cachedInputPrice:
|
|
10
|
+
readonly inputPrice: "1.25e-6";
|
|
11
|
+
readonly outputPrice: "10.0e-6";
|
|
12
|
+
readonly cachedInputPrice: "0.125e-6";
|
|
13
13
|
readonly pricingTiers: [{
|
|
14
14
|
readonly name: "Up to 200K";
|
|
15
15
|
readonly upToTokens: 200000;
|
|
16
|
-
readonly inputPrice:
|
|
17
|
-
readonly outputPrice:
|
|
18
|
-
readonly cachedInputPrice:
|
|
16
|
+
readonly inputPrice: "1.25e-6";
|
|
17
|
+
readonly outputPrice: "10.0e-6";
|
|
18
|
+
readonly cachedInputPrice: "0.125e-6";
|
|
19
19
|
}, {
|
|
20
20
|
readonly name: "Over 200K";
|
|
21
21
|
readonly upToTokens: number;
|
|
22
|
-
readonly inputPrice:
|
|
23
|
-
readonly outputPrice:
|
|
24
|
-
readonly cachedInputPrice:
|
|
22
|
+
readonly inputPrice: "2.5e-6";
|
|
23
|
+
readonly outputPrice: "15.0e-6";
|
|
24
|
+
readonly cachedInputPrice: "0.25e-6";
|
|
25
25
|
}];
|
|
26
|
-
readonly requestPrice: 0;
|
|
26
|
+
readonly requestPrice: "0";
|
|
27
27
|
readonly contextSize: 1048576;
|
|
28
28
|
readonly maxOutput: 65536;
|
|
29
29
|
readonly reasoning: true;
|
|
30
30
|
readonly reasoningMaxTokens: true;
|
|
31
31
|
readonly streaming: true;
|
|
32
32
|
readonly vision: true;
|
|
33
|
+
readonly audio: true;
|
|
33
34
|
readonly tools: true;
|
|
34
35
|
readonly webSearch: true;
|
|
35
|
-
readonly webSearchPrice: 0.035;
|
|
36
|
+
readonly webSearchPrice: "0.035";
|
|
36
37
|
readonly jsonOutput: true;
|
|
37
38
|
readonly jsonOutputSchema: true;
|
|
38
39
|
}, {
|
|
39
40
|
readonly providerId: "google-vertex";
|
|
40
41
|
readonly modelName: "gemini-2.5-pro";
|
|
41
|
-
readonly inputPrice:
|
|
42
|
-
readonly outputPrice:
|
|
43
|
-
readonly cachedInputPrice:
|
|
42
|
+
readonly inputPrice: "1.25e-6";
|
|
43
|
+
readonly outputPrice: "10.0e-6";
|
|
44
|
+
readonly cachedInputPrice: "0.125e-6";
|
|
44
45
|
readonly pricingTiers: [{
|
|
45
46
|
readonly name: "Up to 200K";
|
|
46
47
|
readonly upToTokens: 200000;
|
|
47
|
-
readonly inputPrice:
|
|
48
|
-
readonly outputPrice:
|
|
49
|
-
readonly cachedInputPrice:
|
|
48
|
+
readonly inputPrice: "1.25e-6";
|
|
49
|
+
readonly outputPrice: "10.0e-6";
|
|
50
|
+
readonly cachedInputPrice: "0.125e-6";
|
|
50
51
|
}, {
|
|
51
52
|
readonly name: "Over 200K";
|
|
52
53
|
readonly upToTokens: number;
|
|
53
|
-
readonly inputPrice:
|
|
54
|
-
readonly outputPrice:
|
|
55
|
-
readonly cachedInputPrice:
|
|
54
|
+
readonly inputPrice: "2.5e-6";
|
|
55
|
+
readonly outputPrice: "15.0e-6";
|
|
56
|
+
readonly cachedInputPrice: "0.25e-6";
|
|
56
57
|
}];
|
|
57
|
-
readonly requestPrice: 0;
|
|
58
|
+
readonly requestPrice: "0";
|
|
58
59
|
readonly contextSize: 1048576;
|
|
59
60
|
readonly maxOutput: 65536;
|
|
60
61
|
readonly reasoning: true;
|
|
61
62
|
readonly reasoningMaxTokens: true;
|
|
62
63
|
readonly streaming: true;
|
|
63
64
|
readonly vision: true;
|
|
65
|
+
readonly audio: true;
|
|
64
66
|
readonly tools: true;
|
|
65
67
|
readonly webSearch: true;
|
|
66
|
-
readonly webSearchPrice: 0.035;
|
|
68
|
+
readonly webSearchPrice: "0.035";
|
|
67
69
|
readonly jsonOutput: true;
|
|
68
70
|
readonly jsonOutputSchema: true;
|
|
69
71
|
}];
|
|
@@ -77,26 +79,27 @@ export declare const googleModels: [{
|
|
|
77
79
|
readonly test: "skip";
|
|
78
80
|
readonly providerId: "google-ai-studio";
|
|
79
81
|
readonly modelName: "gemini-2.5-pro-preview-05-06";
|
|
80
|
-
readonly inputPrice:
|
|
81
|
-
readonly outputPrice:
|
|
82
|
+
readonly inputPrice: "1.25e-6";
|
|
83
|
+
readonly outputPrice: "10.0e-6";
|
|
82
84
|
readonly pricingTiers: [{
|
|
83
85
|
readonly name: "Up to 200K";
|
|
84
86
|
readonly upToTokens: 200000;
|
|
85
|
-
readonly inputPrice:
|
|
86
|
-
readonly outputPrice:
|
|
87
|
+
readonly inputPrice: "1.25e-6";
|
|
88
|
+
readonly outputPrice: "10.0e-6";
|
|
87
89
|
}, {
|
|
88
90
|
readonly name: "Over 200K";
|
|
89
91
|
readonly upToTokens: number;
|
|
90
|
-
readonly inputPrice:
|
|
91
|
-
readonly outputPrice:
|
|
92
|
+
readonly inputPrice: "2.5e-6";
|
|
93
|
+
readonly outputPrice: "15.0e-6";
|
|
92
94
|
}];
|
|
93
|
-
readonly requestPrice: 0;
|
|
95
|
+
readonly requestPrice: "0";
|
|
94
96
|
readonly contextSize: 1000000;
|
|
95
97
|
readonly maxOutput: undefined;
|
|
96
98
|
readonly reasoning: true;
|
|
97
99
|
readonly reasoningMaxTokens: true;
|
|
98
100
|
readonly streaming: true;
|
|
99
101
|
readonly vision: true;
|
|
102
|
+
readonly audio: true;
|
|
100
103
|
readonly tools: true;
|
|
101
104
|
readonly jsonOutput: true;
|
|
102
105
|
readonly jsonOutputSchema: true;
|
|
@@ -105,26 +108,27 @@ export declare const googleModels: [{
|
|
|
105
108
|
readonly test: "skip";
|
|
106
109
|
readonly providerId: "google-vertex";
|
|
107
110
|
readonly modelName: "gemini-2.5-pro-preview-05-06";
|
|
108
|
-
readonly inputPrice:
|
|
109
|
-
readonly outputPrice:
|
|
111
|
+
readonly inputPrice: "1.25e-6";
|
|
112
|
+
readonly outputPrice: "10.0e-6";
|
|
110
113
|
readonly pricingTiers: [{
|
|
111
114
|
readonly name: "Up to 200K";
|
|
112
115
|
readonly upToTokens: 200000;
|
|
113
|
-
readonly inputPrice:
|
|
114
|
-
readonly outputPrice:
|
|
116
|
+
readonly inputPrice: "1.25e-6";
|
|
117
|
+
readonly outputPrice: "10.0e-6";
|
|
115
118
|
}, {
|
|
116
119
|
readonly name: "Over 200K";
|
|
117
120
|
readonly upToTokens: number;
|
|
118
|
-
readonly inputPrice:
|
|
119
|
-
readonly outputPrice:
|
|
121
|
+
readonly inputPrice: "2.5e-6";
|
|
122
|
+
readonly outputPrice: "15.0e-6";
|
|
120
123
|
}];
|
|
121
|
-
readonly requestPrice: 0;
|
|
124
|
+
readonly requestPrice: "0";
|
|
122
125
|
readonly contextSize: 1000000;
|
|
123
126
|
readonly maxOutput: undefined;
|
|
124
127
|
readonly reasoning: true;
|
|
125
128
|
readonly reasoningMaxTokens: true;
|
|
126
129
|
readonly streaming: true;
|
|
127
130
|
readonly vision: true;
|
|
131
|
+
readonly audio: true;
|
|
128
132
|
readonly tools: true;
|
|
129
133
|
readonly jsonOutput: true;
|
|
130
134
|
readonly jsonOutputSchema: true;
|
|
@@ -140,26 +144,27 @@ export declare const googleModels: [{
|
|
|
140
144
|
readonly test: "skip";
|
|
141
145
|
readonly providerId: "google-ai-studio";
|
|
142
146
|
readonly modelName: "gemini-2.5-pro-preview-06-05";
|
|
143
|
-
readonly inputPrice:
|
|
144
|
-
readonly outputPrice:
|
|
147
|
+
readonly inputPrice: "1.25e-6";
|
|
148
|
+
readonly outputPrice: "10.0e-6";
|
|
145
149
|
readonly pricingTiers: [{
|
|
146
150
|
readonly name: "Up to 200K";
|
|
147
151
|
readonly upToTokens: 200000;
|
|
148
|
-
readonly inputPrice:
|
|
149
|
-
readonly outputPrice:
|
|
152
|
+
readonly inputPrice: "1.25e-6";
|
|
153
|
+
readonly outputPrice: "10.0e-6";
|
|
150
154
|
}, {
|
|
151
155
|
readonly name: "Over 200K";
|
|
152
156
|
readonly upToTokens: number;
|
|
153
|
-
readonly inputPrice:
|
|
154
|
-
readonly outputPrice:
|
|
157
|
+
readonly inputPrice: "2.5e-6";
|
|
158
|
+
readonly outputPrice: "15.0e-6";
|
|
155
159
|
}];
|
|
156
|
-
readonly requestPrice: 0;
|
|
160
|
+
readonly requestPrice: "0";
|
|
157
161
|
readonly contextSize: 1000000;
|
|
158
162
|
readonly maxOutput: undefined;
|
|
159
163
|
readonly reasoning: true;
|
|
160
164
|
readonly reasoningMaxTokens: true;
|
|
161
165
|
readonly streaming: true;
|
|
162
166
|
readonly vision: true;
|
|
167
|
+
readonly audio: true;
|
|
163
168
|
readonly tools: true;
|
|
164
169
|
readonly jsonOutput: true;
|
|
165
170
|
readonly jsonOutputSchema: true;
|
|
@@ -168,26 +173,27 @@ export declare const googleModels: [{
|
|
|
168
173
|
readonly test: "skip";
|
|
169
174
|
readonly providerId: "google-vertex";
|
|
170
175
|
readonly modelName: "gemini-2.5-pro-preview-06-05";
|
|
171
|
-
readonly inputPrice:
|
|
172
|
-
readonly outputPrice:
|
|
176
|
+
readonly inputPrice: "1.25e-6";
|
|
177
|
+
readonly outputPrice: "10.0e-6";
|
|
173
178
|
readonly pricingTiers: [{
|
|
174
179
|
readonly name: "Up to 200K";
|
|
175
180
|
readonly upToTokens: 200000;
|
|
176
|
-
readonly inputPrice:
|
|
177
|
-
readonly outputPrice:
|
|
181
|
+
readonly inputPrice: "1.25e-6";
|
|
182
|
+
readonly outputPrice: "10.0e-6";
|
|
178
183
|
}, {
|
|
179
184
|
readonly name: "Over 200K";
|
|
180
185
|
readonly upToTokens: number;
|
|
181
|
-
readonly inputPrice:
|
|
182
|
-
readonly outputPrice:
|
|
186
|
+
readonly inputPrice: "2.5e-6";
|
|
187
|
+
readonly outputPrice: "15.0e-6";
|
|
183
188
|
}];
|
|
184
|
-
readonly requestPrice: 0;
|
|
189
|
+
readonly requestPrice: "0";
|
|
185
190
|
readonly contextSize: 1000000;
|
|
186
191
|
readonly maxOutput: undefined;
|
|
187
192
|
readonly reasoning: true;
|
|
188
193
|
readonly reasoningMaxTokens: true;
|
|
189
194
|
readonly streaming: true;
|
|
190
195
|
readonly vision: true;
|
|
196
|
+
readonly audio: true;
|
|
191
197
|
readonly tools: true;
|
|
192
198
|
readonly jsonOutput: true;
|
|
193
199
|
readonly jsonOutputSchema: true;
|
|
@@ -202,15 +208,16 @@ export declare const googleModels: [{
|
|
|
202
208
|
readonly providers: [{
|
|
203
209
|
readonly providerId: "google-ai-studio";
|
|
204
210
|
readonly modelName: "gemini-2.5-flash-preview-04-17";
|
|
205
|
-
readonly inputPrice:
|
|
206
|
-
readonly outputPrice:
|
|
207
|
-
readonly requestPrice: 0;
|
|
211
|
+
readonly inputPrice: "0.15e-6";
|
|
212
|
+
readonly outputPrice: "0.6e-6";
|
|
213
|
+
readonly requestPrice: "0";
|
|
208
214
|
readonly contextSize: 1000000;
|
|
209
215
|
readonly maxOutput: undefined;
|
|
210
216
|
readonly reasoning: true;
|
|
211
217
|
readonly reasoningMaxTokens: true;
|
|
212
218
|
readonly streaming: true;
|
|
213
219
|
readonly vision: true;
|
|
220
|
+
readonly audio: true;
|
|
214
221
|
readonly tools: true;
|
|
215
222
|
readonly jsonOutput: true;
|
|
216
223
|
readonly jsonOutputSchema: true;
|
|
@@ -218,15 +225,16 @@ export declare const googleModels: [{
|
|
|
218
225
|
}, {
|
|
219
226
|
readonly providerId: "google-vertex";
|
|
220
227
|
readonly modelName: "gemini-2.5-flash-preview-04-17";
|
|
221
|
-
readonly inputPrice:
|
|
222
|
-
readonly outputPrice:
|
|
223
|
-
readonly requestPrice: 0;
|
|
228
|
+
readonly inputPrice: "0.15e-6";
|
|
229
|
+
readonly outputPrice: "0.6e-6";
|
|
230
|
+
readonly requestPrice: "0";
|
|
224
231
|
readonly contextSize: 1000000;
|
|
225
232
|
readonly maxOutput: undefined;
|
|
226
233
|
readonly reasoning: true;
|
|
227
234
|
readonly reasoningMaxTokens: true;
|
|
228
235
|
readonly streaming: true;
|
|
229
236
|
readonly vision: true;
|
|
237
|
+
readonly audio: true;
|
|
230
238
|
readonly tools: true;
|
|
231
239
|
readonly jsonOutput: true;
|
|
232
240
|
readonly jsonOutputSchema: true;
|
|
@@ -241,15 +249,16 @@ export declare const googleModels: [{
|
|
|
241
249
|
readonly providers: [{
|
|
242
250
|
readonly providerId: "google-ai-studio";
|
|
243
251
|
readonly modelName: "gemini-2.5-flash-preview-05-20";
|
|
244
|
-
readonly inputPrice:
|
|
245
|
-
readonly outputPrice:
|
|
246
|
-
readonly requestPrice: 0;
|
|
252
|
+
readonly inputPrice: "0.15e-6";
|
|
253
|
+
readonly outputPrice: "0.6e-6";
|
|
254
|
+
readonly requestPrice: "0";
|
|
247
255
|
readonly contextSize: 1000000;
|
|
248
256
|
readonly maxOutput: undefined;
|
|
249
257
|
readonly reasoning: true;
|
|
250
258
|
readonly reasoningMaxTokens: true;
|
|
251
259
|
readonly streaming: true;
|
|
252
260
|
readonly vision: true;
|
|
261
|
+
readonly audio: true;
|
|
253
262
|
readonly tools: true;
|
|
254
263
|
readonly jsonOutput: true;
|
|
255
264
|
readonly jsonOutputSchema: true;
|
|
@@ -257,15 +266,16 @@ export declare const googleModels: [{
|
|
|
257
266
|
}, {
|
|
258
267
|
readonly providerId: "google-vertex";
|
|
259
268
|
readonly modelName: "gemini-2.5-flash-preview-05-20";
|
|
260
|
-
readonly inputPrice:
|
|
261
|
-
readonly outputPrice:
|
|
262
|
-
readonly requestPrice: 0;
|
|
269
|
+
readonly inputPrice: "0.15e-6";
|
|
270
|
+
readonly outputPrice: "0.6e-6";
|
|
271
|
+
readonly requestPrice: "0";
|
|
263
272
|
readonly contextSize: 1000000;
|
|
264
273
|
readonly maxOutput: undefined;
|
|
265
274
|
readonly reasoning: true;
|
|
266
275
|
readonly reasoningMaxTokens: true;
|
|
267
276
|
readonly streaming: true;
|
|
268
277
|
readonly vision: true;
|
|
278
|
+
readonly audio: true;
|
|
269
279
|
readonly tools: true;
|
|
270
280
|
readonly jsonOutput: true;
|
|
271
281
|
readonly jsonOutputSchema: true;
|
|
@@ -281,16 +291,17 @@ export declare const googleModels: [{
|
|
|
281
291
|
readonly providerId: "google-ai-studio";
|
|
282
292
|
readonly modelName: "gemini-2.5-flash-preview-09-2025";
|
|
283
293
|
readonly deactivatedAt: Date;
|
|
284
|
-
readonly inputPrice:
|
|
285
|
-
readonly outputPrice:
|
|
286
|
-
readonly cachedInputPrice:
|
|
287
|
-
readonly requestPrice: 0;
|
|
294
|
+
readonly inputPrice: "0.3e-6";
|
|
295
|
+
readonly outputPrice: "2.5e-6";
|
|
296
|
+
readonly cachedInputPrice: "0.03e-6";
|
|
297
|
+
readonly requestPrice: "0";
|
|
288
298
|
readonly contextSize: 1048576;
|
|
289
299
|
readonly maxOutput: 65536;
|
|
290
300
|
readonly reasoning: true;
|
|
291
301
|
readonly reasoningMaxTokens: true;
|
|
292
302
|
readonly streaming: true;
|
|
293
303
|
readonly vision: true;
|
|
304
|
+
readonly audio: true;
|
|
294
305
|
readonly tools: true;
|
|
295
306
|
readonly jsonOutput: true;
|
|
296
307
|
readonly jsonOutputSchema: true;
|
|
@@ -298,16 +309,17 @@ export declare const googleModels: [{
|
|
|
298
309
|
readonly providerId: "google-vertex";
|
|
299
310
|
readonly deactivatedAt: Date;
|
|
300
311
|
readonly modelName: "gemini-2.5-flash-preview-09-2025";
|
|
301
|
-
readonly inputPrice:
|
|
302
|
-
readonly outputPrice:
|
|
303
|
-
readonly cachedInputPrice:
|
|
304
|
-
readonly requestPrice: 0;
|
|
312
|
+
readonly inputPrice: "0.3e-6";
|
|
313
|
+
readonly outputPrice: "2.5e-6";
|
|
314
|
+
readonly cachedInputPrice: "0.03e-6";
|
|
315
|
+
readonly requestPrice: "0";
|
|
305
316
|
readonly contextSize: 1048576;
|
|
306
317
|
readonly maxOutput: 65536;
|
|
307
318
|
readonly reasoning: true;
|
|
308
319
|
readonly reasoningMaxTokens: true;
|
|
309
320
|
readonly streaming: true;
|
|
310
321
|
readonly vision: true;
|
|
322
|
+
readonly audio: true;
|
|
311
323
|
readonly tools: true;
|
|
312
324
|
readonly jsonOutput: true;
|
|
313
325
|
readonly jsonOutputSchema: true;
|
|
@@ -321,37 +333,43 @@ export declare const googleModels: [{
|
|
|
321
333
|
readonly providers: [{
|
|
322
334
|
readonly providerId: "google-ai-studio";
|
|
323
335
|
readonly modelName: "gemini-2.5-flash";
|
|
324
|
-
readonly inputPrice:
|
|
325
|
-
readonly outputPrice:
|
|
326
|
-
readonly cachedInputPrice:
|
|
327
|
-
readonly
|
|
336
|
+
readonly inputPrice: "0.3e-6";
|
|
337
|
+
readonly outputPrice: "2.5e-6";
|
|
338
|
+
readonly cachedInputPrice: "0.03e-6";
|
|
339
|
+
readonly inputAudioPrice: "1.0e-6";
|
|
340
|
+
readonly cachedInputAudioPrice: "0.1e-6";
|
|
341
|
+
readonly requestPrice: "0";
|
|
328
342
|
readonly contextSize: 1048576;
|
|
329
343
|
readonly maxOutput: 65535;
|
|
330
344
|
readonly reasoning: true;
|
|
331
345
|
readonly reasoningMaxTokens: true;
|
|
332
346
|
readonly streaming: true;
|
|
333
347
|
readonly vision: true;
|
|
348
|
+
readonly audio: true;
|
|
334
349
|
readonly tools: true;
|
|
335
350
|
readonly webSearch: true;
|
|
336
|
-
readonly webSearchPrice: 0.035;
|
|
351
|
+
readonly webSearchPrice: "0.035";
|
|
337
352
|
readonly jsonOutput: true;
|
|
338
353
|
readonly jsonOutputSchema: true;
|
|
339
354
|
}, {
|
|
340
355
|
readonly providerId: "google-vertex";
|
|
341
356
|
readonly modelName: "gemini-2.5-flash";
|
|
342
|
-
readonly inputPrice:
|
|
343
|
-
readonly outputPrice:
|
|
344
|
-
readonly cachedInputPrice:
|
|
345
|
-
readonly
|
|
357
|
+
readonly inputPrice: "0.3e-6";
|
|
358
|
+
readonly outputPrice: "2.5e-6";
|
|
359
|
+
readonly cachedInputPrice: "0.03e-6";
|
|
360
|
+
readonly inputAudioPrice: "1.0e-6";
|
|
361
|
+
readonly cachedInputAudioPrice: "0.1e-6";
|
|
362
|
+
readonly requestPrice: "0";
|
|
346
363
|
readonly contextSize: 1048576;
|
|
347
364
|
readonly maxOutput: 65535;
|
|
348
365
|
readonly reasoning: true;
|
|
349
366
|
readonly reasoningMaxTokens: true;
|
|
350
367
|
readonly streaming: true;
|
|
351
368
|
readonly vision: true;
|
|
369
|
+
readonly audio: true;
|
|
352
370
|
readonly tools: true;
|
|
353
371
|
readonly webSearch: true;
|
|
354
|
-
readonly webSearchPrice: 0.035;
|
|
372
|
+
readonly webSearchPrice: "0.035";
|
|
355
373
|
readonly jsonOutput: true;
|
|
356
374
|
readonly jsonOutputSchema: true;
|
|
357
375
|
}];
|
|
@@ -364,28 +382,34 @@ export declare const googleModels: [{
|
|
|
364
382
|
readonly providers: [{
|
|
365
383
|
readonly providerId: "google-ai-studio";
|
|
366
384
|
readonly modelName: "gemini-2.5-flash-lite";
|
|
367
|
-
readonly inputPrice:
|
|
368
|
-
readonly outputPrice:
|
|
369
|
-
readonly cachedInputPrice:
|
|
370
|
-
readonly
|
|
385
|
+
readonly inputPrice: "0.1e-6";
|
|
386
|
+
readonly outputPrice: "0.4e-6";
|
|
387
|
+
readonly cachedInputPrice: "0.01e-6";
|
|
388
|
+
readonly inputAudioPrice: "0.3e-6";
|
|
389
|
+
readonly cachedInputAudioPrice: "0.03e-6";
|
|
390
|
+
readonly requestPrice: "0";
|
|
371
391
|
readonly contextSize: 1048576;
|
|
372
392
|
readonly maxOutput: 65535;
|
|
373
393
|
readonly streaming: true;
|
|
374
394
|
readonly vision: true;
|
|
395
|
+
readonly audio: true;
|
|
375
396
|
readonly tools: true;
|
|
376
397
|
readonly jsonOutput: true;
|
|
377
398
|
readonly jsonOutputSchema: true;
|
|
378
399
|
}, {
|
|
379
400
|
readonly providerId: "google-vertex";
|
|
380
401
|
readonly modelName: "gemini-2.5-flash-lite";
|
|
381
|
-
readonly inputPrice:
|
|
382
|
-
readonly outputPrice:
|
|
383
|
-
readonly cachedInputPrice:
|
|
384
|
-
readonly
|
|
402
|
+
readonly inputPrice: "0.1e-6";
|
|
403
|
+
readonly outputPrice: "0.4e-6";
|
|
404
|
+
readonly cachedInputPrice: "0.01e-6";
|
|
405
|
+
readonly inputAudioPrice: "0.3e-6";
|
|
406
|
+
readonly cachedInputAudioPrice: "0.03e-6";
|
|
407
|
+
readonly requestPrice: "0";
|
|
385
408
|
readonly contextSize: 1048576;
|
|
386
409
|
readonly maxOutput: 65535;
|
|
387
410
|
readonly streaming: true;
|
|
388
411
|
readonly vision: true;
|
|
412
|
+
readonly audio: true;
|
|
389
413
|
readonly tools: true;
|
|
390
414
|
readonly jsonOutput: true;
|
|
391
415
|
readonly jsonOutputSchema: true;
|
|
@@ -400,28 +424,30 @@ export declare const googleModels: [{
|
|
|
400
424
|
readonly providerId: "google-ai-studio";
|
|
401
425
|
readonly deactivatedAt: Date;
|
|
402
426
|
readonly modelName: "gemini-2.5-flash-lite-preview-09-2025";
|
|
403
|
-
readonly inputPrice:
|
|
404
|
-
readonly outputPrice:
|
|
405
|
-
readonly cachedInputPrice:
|
|
406
|
-
readonly requestPrice: 0;
|
|
427
|
+
readonly inputPrice: "0.1e-6";
|
|
428
|
+
readonly outputPrice: "0.4e-6";
|
|
429
|
+
readonly cachedInputPrice: "0.01e-6";
|
|
430
|
+
readonly requestPrice: "0";
|
|
407
431
|
readonly contextSize: 1048576;
|
|
408
432
|
readonly maxOutput: 65535;
|
|
409
433
|
readonly streaming: true;
|
|
410
434
|
readonly vision: true;
|
|
435
|
+
readonly audio: true;
|
|
411
436
|
readonly tools: true;
|
|
412
437
|
readonly jsonOutput: true;
|
|
413
438
|
readonly jsonOutputSchema: true;
|
|
414
439
|
}, {
|
|
415
440
|
readonly providerId: "google-vertex";
|
|
416
441
|
readonly modelName: "gemini-2.5-flash-lite-preview-09-2025";
|
|
417
|
-
readonly inputPrice:
|
|
418
|
-
readonly outputPrice:
|
|
419
|
-
readonly cachedInputPrice:
|
|
420
|
-
readonly requestPrice: 0;
|
|
442
|
+
readonly inputPrice: "0.1e-6";
|
|
443
|
+
readonly outputPrice: "0.4e-6";
|
|
444
|
+
readonly cachedInputPrice: "0.01e-6";
|
|
445
|
+
readonly requestPrice: "0";
|
|
421
446
|
readonly contextSize: 1048576;
|
|
422
447
|
readonly maxOutput: 65535;
|
|
423
448
|
readonly streaming: true;
|
|
424
449
|
readonly vision: true;
|
|
450
|
+
readonly audio: true;
|
|
425
451
|
readonly tools: true;
|
|
426
452
|
readonly jsonOutput: true;
|
|
427
453
|
readonly jsonOutputSchema: true;
|
|
@@ -436,32 +462,33 @@ export declare const googleModels: [{
|
|
|
436
462
|
readonly test: "skip";
|
|
437
463
|
readonly providerId: "google-ai-studio";
|
|
438
464
|
readonly modelName: "gemini-pro-latest";
|
|
439
|
-
readonly inputPrice:
|
|
440
|
-
readonly outputPrice:
|
|
441
|
-
readonly cachedInputPrice:
|
|
465
|
+
readonly inputPrice: "2e-6";
|
|
466
|
+
readonly outputPrice: "12e-6";
|
|
467
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
442
468
|
readonly pricingTiers: [{
|
|
443
469
|
readonly name: "Up to 200K";
|
|
444
470
|
readonly upToTokens: 200000;
|
|
445
|
-
readonly inputPrice:
|
|
446
|
-
readonly outputPrice:
|
|
447
|
-
readonly cachedInputPrice:
|
|
471
|
+
readonly inputPrice: "2e-6";
|
|
472
|
+
readonly outputPrice: "12e-6";
|
|
473
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
448
474
|
}, {
|
|
449
475
|
readonly name: "Over 200K";
|
|
450
476
|
readonly upToTokens: number;
|
|
451
|
-
readonly inputPrice:
|
|
452
|
-
readonly outputPrice:
|
|
453
|
-
readonly cachedInputPrice:
|
|
477
|
+
readonly inputPrice: "4e-6";
|
|
478
|
+
readonly outputPrice: "18e-6";
|
|
479
|
+
readonly cachedInputPrice: "0.4e-6";
|
|
454
480
|
}];
|
|
455
|
-
readonly requestPrice: 0;
|
|
481
|
+
readonly requestPrice: "0";
|
|
456
482
|
readonly contextSize: 1048576;
|
|
457
483
|
readonly maxOutput: 65536;
|
|
458
484
|
readonly reasoning: true;
|
|
459
485
|
readonly reasoningMaxTokens: true;
|
|
460
486
|
readonly streaming: true;
|
|
461
487
|
readonly vision: true;
|
|
488
|
+
readonly audio: true;
|
|
462
489
|
readonly tools: true;
|
|
463
490
|
readonly webSearch: true;
|
|
464
|
-
readonly webSearchPrice: 0.014;
|
|
491
|
+
readonly webSearchPrice: "0.014";
|
|
465
492
|
readonly jsonOutput: true;
|
|
466
493
|
readonly jsonOutputSchema: true;
|
|
467
494
|
}];
|
|
@@ -475,32 +502,33 @@ export declare const googleModels: [{
|
|
|
475
502
|
readonly test: "skip";
|
|
476
503
|
readonly providerId: "google-ai-studio";
|
|
477
504
|
readonly modelName: "gemini-3-pro-preview";
|
|
478
|
-
readonly inputPrice:
|
|
479
|
-
readonly outputPrice:
|
|
480
|
-
readonly cachedInputPrice:
|
|
505
|
+
readonly inputPrice: "2e-6";
|
|
506
|
+
readonly outputPrice: "12e-6";
|
|
507
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
481
508
|
readonly pricingTiers: [{
|
|
482
509
|
readonly name: "Up to 200K";
|
|
483
510
|
readonly upToTokens: 200000;
|
|
484
|
-
readonly inputPrice:
|
|
485
|
-
readonly outputPrice:
|
|
486
|
-
readonly cachedInputPrice:
|
|
511
|
+
readonly inputPrice: "2e-6";
|
|
512
|
+
readonly outputPrice: "12e-6";
|
|
513
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
487
514
|
}, {
|
|
488
515
|
readonly name: "Over 200K";
|
|
489
516
|
readonly upToTokens: number;
|
|
490
|
-
readonly inputPrice:
|
|
491
|
-
readonly outputPrice:
|
|
492
|
-
readonly cachedInputPrice:
|
|
517
|
+
readonly inputPrice: "4e-6";
|
|
518
|
+
readonly outputPrice: "18e-6";
|
|
519
|
+
readonly cachedInputPrice: "0.4e-6";
|
|
493
520
|
}];
|
|
494
|
-
readonly requestPrice: 0;
|
|
521
|
+
readonly requestPrice: "0";
|
|
495
522
|
readonly contextSize: 1048576;
|
|
496
523
|
readonly maxOutput: 65536;
|
|
497
524
|
readonly reasoning: true;
|
|
498
525
|
readonly reasoningMaxTokens: true;
|
|
499
526
|
readonly streaming: true;
|
|
500
527
|
readonly vision: true;
|
|
528
|
+
readonly audio: true;
|
|
501
529
|
readonly tools: true;
|
|
502
530
|
readonly webSearch: true;
|
|
503
|
-
readonly webSearchPrice: 0.014;
|
|
531
|
+
readonly webSearchPrice: "0.014";
|
|
504
532
|
readonly jsonOutput: true;
|
|
505
533
|
readonly jsonOutputSchema: true;
|
|
506
534
|
readonly deprecatedAt: Date;
|
|
@@ -509,32 +537,33 @@ export declare const googleModels: [{
|
|
|
509
537
|
readonly test: "skip";
|
|
510
538
|
readonly providerId: "google-vertex";
|
|
511
539
|
readonly modelName: "gemini-3-pro-preview";
|
|
512
|
-
readonly inputPrice:
|
|
513
|
-
readonly outputPrice:
|
|
514
|
-
readonly cachedInputPrice:
|
|
540
|
+
readonly inputPrice: "2e-6";
|
|
541
|
+
readonly outputPrice: "12e-6";
|
|
542
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
515
543
|
readonly pricingTiers: [{
|
|
516
544
|
readonly name: "Up to 200K";
|
|
517
545
|
readonly upToTokens: 200000;
|
|
518
|
-
readonly inputPrice:
|
|
519
|
-
readonly outputPrice:
|
|
520
|
-
readonly cachedInputPrice:
|
|
546
|
+
readonly inputPrice: "2e-6";
|
|
547
|
+
readonly outputPrice: "12e-6";
|
|
548
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
521
549
|
}, {
|
|
522
550
|
readonly name: "Over 200K";
|
|
523
551
|
readonly upToTokens: number;
|
|
524
|
-
readonly inputPrice:
|
|
525
|
-
readonly outputPrice:
|
|
526
|
-
readonly cachedInputPrice:
|
|
552
|
+
readonly inputPrice: "4e-6";
|
|
553
|
+
readonly outputPrice: "18e-6";
|
|
554
|
+
readonly cachedInputPrice: "0.4e-6";
|
|
527
555
|
}];
|
|
528
|
-
readonly requestPrice: 0;
|
|
556
|
+
readonly requestPrice: "0";
|
|
529
557
|
readonly contextSize: 1048576;
|
|
530
558
|
readonly maxOutput: 65536;
|
|
531
559
|
readonly reasoning: true;
|
|
532
560
|
readonly reasoningMaxTokens: true;
|
|
533
561
|
readonly streaming: true;
|
|
534
562
|
readonly vision: true;
|
|
563
|
+
readonly audio: true;
|
|
535
564
|
readonly tools: true;
|
|
536
565
|
readonly webSearch: true;
|
|
537
|
-
readonly webSearchPrice: 0.014;
|
|
566
|
+
readonly webSearchPrice: "0.014";
|
|
538
567
|
readonly jsonOutput: true;
|
|
539
568
|
readonly jsonOutputSchema: true;
|
|
540
569
|
readonly deprecatedAt: Date;
|
|
@@ -550,97 +579,100 @@ export declare const googleModels: [{
|
|
|
550
579
|
readonly test: "skip";
|
|
551
580
|
readonly providerId: "google-ai-studio";
|
|
552
581
|
readonly modelName: "gemini-3.1-pro-preview";
|
|
553
|
-
readonly inputPrice:
|
|
554
|
-
readonly outputPrice:
|
|
555
|
-
readonly cachedInputPrice:
|
|
582
|
+
readonly inputPrice: "2e-6";
|
|
583
|
+
readonly outputPrice: "12e-6";
|
|
584
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
556
585
|
readonly pricingTiers: [{
|
|
557
586
|
readonly name: "Up to 200K";
|
|
558
587
|
readonly upToTokens: 200000;
|
|
559
|
-
readonly inputPrice:
|
|
560
|
-
readonly outputPrice:
|
|
561
|
-
readonly cachedInputPrice:
|
|
588
|
+
readonly inputPrice: "2e-6";
|
|
589
|
+
readonly outputPrice: "12e-6";
|
|
590
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
562
591
|
}, {
|
|
563
592
|
readonly name: "Over 200K";
|
|
564
593
|
readonly upToTokens: number;
|
|
565
|
-
readonly inputPrice:
|
|
566
|
-
readonly outputPrice:
|
|
567
|
-
readonly cachedInputPrice:
|
|
594
|
+
readonly inputPrice: "4e-6";
|
|
595
|
+
readonly outputPrice: "18e-6";
|
|
596
|
+
readonly cachedInputPrice: "0.4e-6";
|
|
568
597
|
}];
|
|
569
|
-
readonly requestPrice: 0;
|
|
598
|
+
readonly requestPrice: "0";
|
|
570
599
|
readonly contextSize: 1048576;
|
|
571
600
|
readonly maxOutput: 65536;
|
|
572
601
|
readonly reasoning: true;
|
|
573
602
|
readonly reasoningMaxTokens: true;
|
|
574
603
|
readonly streaming: true;
|
|
575
604
|
readonly vision: true;
|
|
605
|
+
readonly audio: true;
|
|
576
606
|
readonly tools: true;
|
|
577
607
|
readonly webSearch: true;
|
|
578
|
-
readonly webSearchPrice: 0.014;
|
|
608
|
+
readonly webSearchPrice: "0.014";
|
|
579
609
|
readonly jsonOutput: true;
|
|
580
610
|
readonly jsonOutputSchema: true;
|
|
581
611
|
}, {
|
|
582
612
|
readonly test: "skip";
|
|
583
613
|
readonly providerId: "google-vertex";
|
|
584
614
|
readonly modelName: "gemini-3.1-pro-preview";
|
|
585
|
-
readonly inputPrice:
|
|
586
|
-
readonly outputPrice:
|
|
587
|
-
readonly cachedInputPrice:
|
|
615
|
+
readonly inputPrice: "2e-6";
|
|
616
|
+
readonly outputPrice: "12e-6";
|
|
617
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
588
618
|
readonly pricingTiers: [{
|
|
589
619
|
readonly name: "Up to 200K";
|
|
590
620
|
readonly upToTokens: 200000;
|
|
591
|
-
readonly inputPrice:
|
|
592
|
-
readonly outputPrice:
|
|
593
|
-
readonly cachedInputPrice:
|
|
621
|
+
readonly inputPrice: "2e-6";
|
|
622
|
+
readonly outputPrice: "12e-6";
|
|
623
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
594
624
|
}, {
|
|
595
625
|
readonly name: "Over 200K";
|
|
596
626
|
readonly upToTokens: number;
|
|
597
|
-
readonly inputPrice:
|
|
598
|
-
readonly outputPrice:
|
|
599
|
-
readonly cachedInputPrice:
|
|
627
|
+
readonly inputPrice: "4e-6";
|
|
628
|
+
readonly outputPrice: "18e-6";
|
|
629
|
+
readonly cachedInputPrice: "0.4e-6";
|
|
600
630
|
}];
|
|
601
|
-
readonly requestPrice: 0;
|
|
631
|
+
readonly requestPrice: "0";
|
|
602
632
|
readonly contextSize: 1048576;
|
|
603
633
|
readonly maxOutput: 65536;
|
|
604
634
|
readonly reasoning: true;
|
|
605
635
|
readonly reasoningMaxTokens: true;
|
|
606
636
|
readonly streaming: true;
|
|
607
637
|
readonly vision: true;
|
|
638
|
+
readonly audio: true;
|
|
608
639
|
readonly tools: true;
|
|
609
640
|
readonly webSearch: true;
|
|
610
|
-
readonly webSearchPrice: 0.014;
|
|
641
|
+
readonly webSearchPrice: "0.014";
|
|
611
642
|
readonly jsonOutput: true;
|
|
612
643
|
readonly jsonOutputSchema: true;
|
|
613
644
|
}, {
|
|
614
645
|
readonly test: "skip";
|
|
615
646
|
readonly providerId: "quartz";
|
|
616
647
|
readonly modelName: "gemini-3.1-pro-preview";
|
|
617
|
-
readonly discount: 0.2;
|
|
618
|
-
readonly inputPrice:
|
|
619
|
-
readonly outputPrice:
|
|
620
|
-
readonly cachedInputPrice:
|
|
648
|
+
readonly discount: "0.2";
|
|
649
|
+
readonly inputPrice: "2e-6";
|
|
650
|
+
readonly outputPrice: "12e-6";
|
|
651
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
621
652
|
readonly pricingTiers: [{
|
|
622
653
|
readonly name: "Up to 200K";
|
|
623
654
|
readonly upToTokens: 200000;
|
|
624
|
-
readonly inputPrice:
|
|
625
|
-
readonly outputPrice:
|
|
626
|
-
readonly cachedInputPrice:
|
|
655
|
+
readonly inputPrice: "2e-6";
|
|
656
|
+
readonly outputPrice: "12e-6";
|
|
657
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
627
658
|
}, {
|
|
628
659
|
readonly name: "Over 200K";
|
|
629
660
|
readonly upToTokens: number;
|
|
630
|
-
readonly inputPrice:
|
|
631
|
-
readonly outputPrice:
|
|
632
|
-
readonly cachedInputPrice:
|
|
661
|
+
readonly inputPrice: "4e-6";
|
|
662
|
+
readonly outputPrice: "18e-6";
|
|
663
|
+
readonly cachedInputPrice: "0.4e-6";
|
|
633
664
|
}];
|
|
634
|
-
readonly requestPrice: 0;
|
|
665
|
+
readonly requestPrice: "0";
|
|
635
666
|
readonly contextSize: 1048576;
|
|
636
667
|
readonly maxOutput: 65536;
|
|
637
668
|
readonly reasoning: true;
|
|
638
669
|
readonly reasoningMaxTokens: true;
|
|
639
670
|
readonly streaming: true;
|
|
640
671
|
readonly vision: true;
|
|
672
|
+
readonly audio: true;
|
|
641
673
|
readonly tools: true;
|
|
642
674
|
readonly webSearch: true;
|
|
643
|
-
readonly webSearchPrice: 0.014;
|
|
675
|
+
readonly webSearchPrice: "0.014";
|
|
644
676
|
readonly jsonOutput: true;
|
|
645
677
|
readonly jsonOutputSchema: true;
|
|
646
678
|
}];
|
|
@@ -654,14 +686,17 @@ export declare const googleModels: [{
|
|
|
654
686
|
readonly test: "skip";
|
|
655
687
|
readonly providerId: "google-ai-studio";
|
|
656
688
|
readonly modelName: "gemini-3.1-flash-lite-preview";
|
|
657
|
-
readonly
|
|
658
|
-
readonly
|
|
659
|
-
readonly
|
|
660
|
-
readonly
|
|
689
|
+
readonly deprecatedAt: Date;
|
|
690
|
+
readonly deactivatedAt: Date;
|
|
691
|
+
readonly inputPrice: "0.25e-6";
|
|
692
|
+
readonly outputPrice: "1.5e-6";
|
|
693
|
+
readonly cachedInputPrice: "0.025e-6";
|
|
694
|
+
readonly requestPrice: "0";
|
|
661
695
|
readonly contextSize: 1048576;
|
|
662
696
|
readonly maxOutput: 65536;
|
|
663
697
|
readonly streaming: true;
|
|
664
698
|
readonly vision: true;
|
|
699
|
+
readonly audio: true;
|
|
665
700
|
readonly tools: true;
|
|
666
701
|
readonly reasoning: true;
|
|
667
702
|
readonly reasoningMaxTokens: true;
|
|
@@ -671,14 +706,17 @@ export declare const googleModels: [{
|
|
|
671
706
|
readonly test: "skip";
|
|
672
707
|
readonly providerId: "google-vertex";
|
|
673
708
|
readonly modelName: "gemini-3.1-flash-lite-preview";
|
|
674
|
-
readonly
|
|
675
|
-
readonly
|
|
676
|
-
readonly
|
|
677
|
-
readonly
|
|
709
|
+
readonly deprecatedAt: Date;
|
|
710
|
+
readonly deactivatedAt: Date;
|
|
711
|
+
readonly inputPrice: "0.25e-6";
|
|
712
|
+
readonly outputPrice: "1.5e-6";
|
|
713
|
+
readonly cachedInputPrice: "0.025e-6";
|
|
714
|
+
readonly requestPrice: "0";
|
|
678
715
|
readonly contextSize: 1048576;
|
|
679
716
|
readonly maxOutput: 65536;
|
|
680
717
|
readonly streaming: true;
|
|
681
718
|
readonly vision: true;
|
|
719
|
+
readonly audio: true;
|
|
682
720
|
readonly tools: true;
|
|
683
721
|
readonly reasoning: true;
|
|
684
722
|
readonly reasoningMaxTokens: true;
|
|
@@ -694,16 +732,19 @@ export declare const googleModels: [{
|
|
|
694
732
|
readonly providers: [{
|
|
695
733
|
readonly providerId: "google-ai-studio";
|
|
696
734
|
readonly modelName: "gemini-3.1-flash-lite";
|
|
697
|
-
readonly inputPrice:
|
|
698
|
-
readonly outputPrice:
|
|
699
|
-
readonly cachedInputPrice:
|
|
700
|
-
readonly cacheWriteInputPrice:
|
|
701
|
-
readonly
|
|
702
|
-
readonly
|
|
735
|
+
readonly inputPrice: "0.25e-6";
|
|
736
|
+
readonly outputPrice: "1.5e-6";
|
|
737
|
+
readonly cachedInputPrice: "0.025e-6";
|
|
738
|
+
readonly cacheWriteInputPrice: "0.08333e-6";
|
|
739
|
+
readonly inputAudioPrice: "0.5e-6";
|
|
740
|
+
readonly cachedInputAudioPrice: "0.05e-6";
|
|
741
|
+
readonly requestPrice: "0";
|
|
742
|
+
readonly webSearchPrice: "0.014";
|
|
703
743
|
readonly contextSize: 1048576;
|
|
704
744
|
readonly maxOutput: 65536;
|
|
705
745
|
readonly streaming: true;
|
|
706
746
|
readonly vision: true;
|
|
747
|
+
readonly audio: true;
|
|
707
748
|
readonly tools: true;
|
|
708
749
|
readonly webSearch: true;
|
|
709
750
|
readonly reasoning: true;
|
|
@@ -713,16 +754,19 @@ export declare const googleModels: [{
|
|
|
713
754
|
}, {
|
|
714
755
|
readonly providerId: "google-vertex";
|
|
715
756
|
readonly modelName: "gemini-3.1-flash-lite";
|
|
716
|
-
readonly inputPrice:
|
|
717
|
-
readonly outputPrice:
|
|
718
|
-
readonly cachedInputPrice:
|
|
719
|
-
readonly cacheWriteInputPrice:
|
|
720
|
-
readonly
|
|
721
|
-
readonly
|
|
757
|
+
readonly inputPrice: "0.25e-6";
|
|
758
|
+
readonly outputPrice: "1.5e-6";
|
|
759
|
+
readonly cachedInputPrice: "0.025e-6";
|
|
760
|
+
readonly cacheWriteInputPrice: "0.08333e-6";
|
|
761
|
+
readonly inputAudioPrice: "0.5e-6";
|
|
762
|
+
readonly cachedInputAudioPrice: "0.05e-6";
|
|
763
|
+
readonly requestPrice: "0";
|
|
764
|
+
readonly webSearchPrice: "0.014";
|
|
722
765
|
readonly contextSize: 1048576;
|
|
723
766
|
readonly maxOutput: 65536;
|
|
724
767
|
readonly streaming: true;
|
|
725
768
|
readonly vision: true;
|
|
769
|
+
readonly audio: true;
|
|
726
770
|
readonly tools: true;
|
|
727
771
|
readonly webSearch: true;
|
|
728
772
|
readonly reasoning: true;
|
|
@@ -746,10 +790,10 @@ export declare const googleModels: [{
|
|
|
746
790
|
readonly outputPrice: undefined;
|
|
747
791
|
readonly requestPrice: undefined;
|
|
748
792
|
readonly perSecondPrice: {
|
|
749
|
-
readonly default_audio: 0.4;
|
|
750
|
-
readonly default_video: 0.2;
|
|
751
|
-
readonly "4k_audio": 0.6;
|
|
752
|
-
readonly "4k_video": 0.4;
|
|
793
|
+
readonly default_audio: "0.4";
|
|
794
|
+
readonly default_video: "0.2";
|
|
795
|
+
readonly "4k_audio": "0.6";
|
|
796
|
+
readonly "4k_video": "0.4";
|
|
753
797
|
};
|
|
754
798
|
readonly supportedVideoSizes: ["1280x720", "720x1280", "1920x1080", "1080x1920", "3840x2160", "2160x3840"];
|
|
755
799
|
readonly supportedVideoDurationsSeconds: [4, 6, 8, 10];
|
|
@@ -768,12 +812,12 @@ export declare const googleModels: [{
|
|
|
768
812
|
readonly inputPrice: undefined;
|
|
769
813
|
readonly outputPrice: undefined;
|
|
770
814
|
readonly requestPrice: undefined;
|
|
771
|
-
readonly discount: 0.2;
|
|
815
|
+
readonly discount: "0.2";
|
|
772
816
|
readonly perSecondPrice: {
|
|
773
|
-
readonly default_audio: 0.4;
|
|
774
|
-
readonly default_video: 0.2;
|
|
775
|
-
readonly "4k_audio": 0.6;
|
|
776
|
-
readonly "4k_video": 0.4;
|
|
817
|
+
readonly default_audio: "0.4";
|
|
818
|
+
readonly default_video: "0.2";
|
|
819
|
+
readonly "4k_audio": "0.6";
|
|
820
|
+
readonly "4k_video": "0.4";
|
|
777
821
|
};
|
|
778
822
|
readonly supportedVideoSizes: ["1920x1080", "1080x1920", "3840x2160", "2160x3840"];
|
|
779
823
|
readonly supportedVideoDurationsSeconds: [8];
|
|
@@ -803,10 +847,10 @@ export declare const googleModels: [{
|
|
|
803
847
|
readonly outputPrice: undefined;
|
|
804
848
|
readonly requestPrice: undefined;
|
|
805
849
|
readonly perSecondPrice: {
|
|
806
|
-
readonly default_audio: 0.15;
|
|
807
|
-
readonly default_video: 0.1;
|
|
808
|
-
readonly "4k_audio": 0.35;
|
|
809
|
-
readonly "4k_video": 0.3;
|
|
850
|
+
readonly default_audio: "0.15";
|
|
851
|
+
readonly default_video: "0.1";
|
|
852
|
+
readonly "4k_audio": "0.35";
|
|
853
|
+
readonly "4k_video": "0.3";
|
|
810
854
|
};
|
|
811
855
|
readonly supportedVideoSizes: ["1280x720", "720x1280", "1920x1080", "1080x1920", "3840x2160", "2160x3840"];
|
|
812
856
|
readonly supportedVideoDurationsSeconds: [4, 6, 8, 10];
|
|
@@ -826,8 +870,8 @@ export declare const googleModels: [{
|
|
|
826
870
|
readonly outputPrice: undefined;
|
|
827
871
|
readonly requestPrice: undefined;
|
|
828
872
|
readonly perSecondPrice: {
|
|
829
|
-
readonly default: 0.15;
|
|
830
|
-
readonly "4k": 0.35;
|
|
873
|
+
readonly default: "0.15";
|
|
874
|
+
readonly "4k": "0.35";
|
|
831
875
|
};
|
|
832
876
|
readonly supportedVideoSizes: ["1920x1080", "1080x1920", "3840x2160", "2160x3840"];
|
|
833
877
|
readonly supportedVideoDurationsSeconds: [8];
|
|
@@ -852,13 +896,13 @@ export declare const googleModels: [{
|
|
|
852
896
|
readonly test: "skip";
|
|
853
897
|
readonly providerId: "google-ai-studio";
|
|
854
898
|
readonly modelName: "gemini-3.1-flash-image-preview";
|
|
855
|
-
readonly inputPrice:
|
|
856
|
-
readonly outputPrice:
|
|
857
|
-
readonly imageInputPrice:
|
|
899
|
+
readonly inputPrice: "0.25e-6";
|
|
900
|
+
readonly outputPrice: "1.5e-6";
|
|
901
|
+
readonly imageInputPrice: "0.25e-6";
|
|
858
902
|
readonly imageInputTokensByResolution: {
|
|
859
903
|
readonly default: 560;
|
|
860
904
|
};
|
|
861
|
-
readonly imageOutputPrice:
|
|
905
|
+
readonly imageOutputPrice: "60e-6";
|
|
862
906
|
readonly imageOutputTokensByResolution: {
|
|
863
907
|
readonly "0.5K": 747;
|
|
864
908
|
readonly "1K": 1120;
|
|
@@ -866,7 +910,7 @@ export declare const googleModels: [{
|
|
|
866
910
|
readonly "4K": 2520;
|
|
867
911
|
readonly default: 1120;
|
|
868
912
|
};
|
|
869
|
-
readonly requestPrice: 0;
|
|
913
|
+
readonly requestPrice: "0";
|
|
870
914
|
readonly contextSize: 65536;
|
|
871
915
|
readonly maxOutput: 65536;
|
|
872
916
|
readonly streaming: true;
|
|
@@ -878,14 +922,14 @@ export declare const googleModels: [{
|
|
|
878
922
|
readonly test: "skip";
|
|
879
923
|
readonly providerId: "glacier";
|
|
880
924
|
readonly modelName: "gemini-3.1-flash-image-preview";
|
|
881
|
-
readonly discount: 0.2;
|
|
882
|
-
readonly inputPrice:
|
|
883
|
-
readonly outputPrice:
|
|
884
|
-
readonly imageInputPrice:
|
|
925
|
+
readonly discount: "0.2";
|
|
926
|
+
readonly inputPrice: "0.25e-6";
|
|
927
|
+
readonly outputPrice: "1.5e-6";
|
|
928
|
+
readonly imageInputPrice: "0.25e-6";
|
|
885
929
|
readonly imageInputTokensByResolution: {
|
|
886
930
|
readonly default: 560;
|
|
887
931
|
};
|
|
888
|
-
readonly imageOutputPrice:
|
|
932
|
+
readonly imageOutputPrice: "60e-6";
|
|
889
933
|
readonly imageOutputTokensByResolution: {
|
|
890
934
|
readonly "0.5K": 747;
|
|
891
935
|
readonly "1K": 1120;
|
|
@@ -893,7 +937,7 @@ export declare const googleModels: [{
|
|
|
893
937
|
readonly "4K": 2520;
|
|
894
938
|
readonly default: 1120;
|
|
895
939
|
};
|
|
896
|
-
readonly requestPrice: 0;
|
|
940
|
+
readonly requestPrice: "0";
|
|
897
941
|
readonly contextSize: 65536;
|
|
898
942
|
readonly maxOutput: 65536;
|
|
899
943
|
readonly streaming: true;
|
|
@@ -905,13 +949,13 @@ export declare const googleModels: [{
|
|
|
905
949
|
readonly test: "skip";
|
|
906
950
|
readonly providerId: "google-vertex";
|
|
907
951
|
readonly modelName: "gemini-3.1-flash-image-preview";
|
|
908
|
-
readonly inputPrice:
|
|
909
|
-
readonly outputPrice:
|
|
910
|
-
readonly imageInputPrice:
|
|
952
|
+
readonly inputPrice: "0.25e-6";
|
|
953
|
+
readonly outputPrice: "1.5e-6";
|
|
954
|
+
readonly imageInputPrice: "0.25e-6";
|
|
911
955
|
readonly imageInputTokensByResolution: {
|
|
912
956
|
readonly default: 560;
|
|
913
957
|
};
|
|
914
|
-
readonly imageOutputPrice:
|
|
958
|
+
readonly imageOutputPrice: "60e-6";
|
|
915
959
|
readonly imageOutputTokensByResolution: {
|
|
916
960
|
readonly "0.5K": 747;
|
|
917
961
|
readonly "1K": 1120;
|
|
@@ -919,7 +963,7 @@ export declare const googleModels: [{
|
|
|
919
963
|
readonly "4K": 2520;
|
|
920
964
|
readonly default: 1120;
|
|
921
965
|
};
|
|
922
|
-
readonly requestPrice: 0;
|
|
966
|
+
readonly requestPrice: "0";
|
|
923
967
|
readonly contextSize: 65536;
|
|
924
968
|
readonly maxOutput: 65536;
|
|
925
969
|
readonly streaming: true;
|
|
@@ -931,14 +975,14 @@ export declare const googleModels: [{
|
|
|
931
975
|
readonly test: "skip";
|
|
932
976
|
readonly providerId: "quartz";
|
|
933
977
|
readonly modelName: "gemini-3.1-flash-image-preview";
|
|
934
|
-
readonly discount: 0.2;
|
|
935
|
-
readonly inputPrice:
|
|
936
|
-
readonly outputPrice:
|
|
937
|
-
readonly imageInputPrice:
|
|
978
|
+
readonly discount: "0.2";
|
|
979
|
+
readonly inputPrice: "0.25e-6";
|
|
980
|
+
readonly outputPrice: "1.5e-6";
|
|
981
|
+
readonly imageInputPrice: "0.25e-6";
|
|
938
982
|
readonly imageInputTokensByResolution: {
|
|
939
983
|
readonly default: 560;
|
|
940
984
|
};
|
|
941
|
-
readonly imageOutputPrice:
|
|
985
|
+
readonly imageOutputPrice: "60e-6";
|
|
942
986
|
readonly imageOutputTokensByResolution: {
|
|
943
987
|
readonly "0.5K": 747;
|
|
944
988
|
readonly "1K": 1120;
|
|
@@ -946,7 +990,7 @@ export declare const googleModels: [{
|
|
|
946
990
|
readonly "4K": 2520;
|
|
947
991
|
readonly default: 1120;
|
|
948
992
|
};
|
|
949
|
-
readonly requestPrice: 0;
|
|
993
|
+
readonly requestPrice: "0";
|
|
950
994
|
readonly contextSize: 65536;
|
|
951
995
|
readonly maxOutput: 65536;
|
|
952
996
|
readonly streaming: true;
|
|
@@ -964,37 +1008,43 @@ export declare const googleModels: [{
|
|
|
964
1008
|
readonly providers: [{
|
|
965
1009
|
readonly providerId: "google-ai-studio";
|
|
966
1010
|
readonly modelName: "gemini-3-flash-preview";
|
|
967
|
-
readonly inputPrice:
|
|
968
|
-
readonly outputPrice:
|
|
969
|
-
readonly cachedInputPrice:
|
|
970
|
-
readonly
|
|
1011
|
+
readonly inputPrice: "0.5e-6";
|
|
1012
|
+
readonly outputPrice: "3e-6";
|
|
1013
|
+
readonly cachedInputPrice: "0.05e-6";
|
|
1014
|
+
readonly inputAudioPrice: "1.0e-6";
|
|
1015
|
+
readonly cachedInputAudioPrice: "0.1e-6";
|
|
1016
|
+
readonly requestPrice: "0";
|
|
971
1017
|
readonly contextSize: 1048576;
|
|
972
1018
|
readonly maxOutput: 65535;
|
|
973
1019
|
readonly reasoning: true;
|
|
974
1020
|
readonly reasoningMaxTokens: true;
|
|
975
1021
|
readonly streaming: true;
|
|
976
1022
|
readonly vision: true;
|
|
1023
|
+
readonly audio: true;
|
|
977
1024
|
readonly tools: true;
|
|
978
1025
|
readonly webSearch: true;
|
|
979
|
-
readonly webSearchPrice: 0.014;
|
|
1026
|
+
readonly webSearchPrice: "0.014";
|
|
980
1027
|
readonly jsonOutput: true;
|
|
981
1028
|
readonly jsonOutputSchema: true;
|
|
982
1029
|
}, {
|
|
983
1030
|
readonly providerId: "google-vertex";
|
|
984
1031
|
readonly modelName: "gemini-3-flash-preview";
|
|
985
|
-
readonly inputPrice:
|
|
986
|
-
readonly outputPrice:
|
|
987
|
-
readonly cachedInputPrice:
|
|
988
|
-
readonly
|
|
1032
|
+
readonly inputPrice: "0.5e-6";
|
|
1033
|
+
readonly outputPrice: "3e-6";
|
|
1034
|
+
readonly cachedInputPrice: "0.05e-6";
|
|
1035
|
+
readonly inputAudioPrice: "1.0e-6";
|
|
1036
|
+
readonly cachedInputAudioPrice: "0.1e-6";
|
|
1037
|
+
readonly requestPrice: "0";
|
|
989
1038
|
readonly contextSize: 1048576;
|
|
990
1039
|
readonly maxOutput: 65535;
|
|
991
1040
|
readonly reasoning: true;
|
|
992
1041
|
readonly reasoningMaxTokens: true;
|
|
993
1042
|
readonly streaming: true;
|
|
994
1043
|
readonly vision: true;
|
|
1044
|
+
readonly audio: true;
|
|
995
1045
|
readonly tools: true;
|
|
996
1046
|
readonly webSearch: true;
|
|
997
|
-
readonly webSearchPrice: 0.014;
|
|
1047
|
+
readonly webSearchPrice: "0.014";
|
|
998
1048
|
readonly jsonOutput: true;
|
|
999
1049
|
readonly jsonOutputSchema: true;
|
|
1000
1050
|
}];
|
|
@@ -1010,16 +1060,16 @@ export declare const googleModels: [{
|
|
|
1010
1060
|
readonly test: "skip";
|
|
1011
1061
|
readonly providerId: "google-ai-studio";
|
|
1012
1062
|
readonly modelName: "gemini-2.5-flash-image-preview";
|
|
1013
|
-
readonly inputPrice:
|
|
1014
|
-
readonly outputPrice:
|
|
1015
|
-
readonly imageOutputPrice:
|
|
1063
|
+
readonly inputPrice: "0.3e-6";
|
|
1064
|
+
readonly outputPrice: "2.5e-6";
|
|
1065
|
+
readonly imageOutputPrice: "30e-6";
|
|
1016
1066
|
readonly imageOutputTokensByResolution: {
|
|
1017
1067
|
readonly "1K": 1120;
|
|
1018
1068
|
readonly "2K": 1120;
|
|
1019
1069
|
readonly "4K": 2000;
|
|
1020
1070
|
readonly default: 1120;
|
|
1021
1071
|
};
|
|
1022
|
-
readonly requestPrice: 0;
|
|
1072
|
+
readonly requestPrice: "0";
|
|
1023
1073
|
readonly contextSize: 32768;
|
|
1024
1074
|
readonly maxOutput: 32768;
|
|
1025
1075
|
readonly streaming: true;
|
|
@@ -1033,16 +1083,16 @@ export declare const googleModels: [{
|
|
|
1033
1083
|
readonly test: "skip";
|
|
1034
1084
|
readonly providerId: "google-vertex";
|
|
1035
1085
|
readonly modelName: "gemini-2.5-flash-image-preview";
|
|
1036
|
-
readonly inputPrice:
|
|
1037
|
-
readonly outputPrice:
|
|
1038
|
-
readonly imageOutputPrice:
|
|
1086
|
+
readonly inputPrice: "0.3e-6";
|
|
1087
|
+
readonly outputPrice: "2.5e-6";
|
|
1088
|
+
readonly imageOutputPrice: "30e-6";
|
|
1039
1089
|
readonly imageOutputTokensByResolution: {
|
|
1040
1090
|
readonly "1K": 1120;
|
|
1041
1091
|
readonly "2K": 1120;
|
|
1042
1092
|
readonly "4K": 2000;
|
|
1043
1093
|
readonly default: 1120;
|
|
1044
1094
|
};
|
|
1045
|
-
readonly requestPrice: 0;
|
|
1095
|
+
readonly requestPrice: "0";
|
|
1046
1096
|
readonly contextSize: 32768;
|
|
1047
1097
|
readonly maxOutput: 32768;
|
|
1048
1098
|
readonly streaming: true;
|
|
@@ -1065,10 +1115,10 @@ export declare const googleModels: [{
|
|
|
1065
1115
|
readonly test: "skip";
|
|
1066
1116
|
readonly providerId: "google-ai-studio";
|
|
1067
1117
|
readonly modelName: "gemini-2.5-flash-image";
|
|
1068
|
-
readonly inputPrice:
|
|
1069
|
-
readonly outputPrice:
|
|
1070
|
-
readonly cachedInputPrice:
|
|
1071
|
-
readonly requestPrice: 0;
|
|
1118
|
+
readonly inputPrice: "0.3e-6";
|
|
1119
|
+
readonly outputPrice: "30e-6";
|
|
1120
|
+
readonly cachedInputPrice: "0.03e-6";
|
|
1121
|
+
readonly requestPrice: "0";
|
|
1072
1122
|
readonly contextSize: 32768;
|
|
1073
1123
|
readonly maxOutput: 32768;
|
|
1074
1124
|
readonly streaming: true;
|
|
@@ -1080,10 +1130,10 @@ export declare const googleModels: [{
|
|
|
1080
1130
|
readonly test: "skip";
|
|
1081
1131
|
readonly providerId: "google-vertex";
|
|
1082
1132
|
readonly modelName: "gemini-2.5-flash-image";
|
|
1083
|
-
readonly inputPrice:
|
|
1084
|
-
readonly outputPrice:
|
|
1085
|
-
readonly cachedInputPrice:
|
|
1086
|
-
readonly requestPrice: 0;
|
|
1133
|
+
readonly inputPrice: "0.3e-6";
|
|
1134
|
+
readonly outputPrice: "30e-6";
|
|
1135
|
+
readonly cachedInputPrice: "0.03e-6";
|
|
1136
|
+
readonly requestPrice: "0";
|
|
1087
1137
|
readonly contextSize: 32768;
|
|
1088
1138
|
readonly maxOutput: 32768;
|
|
1089
1139
|
readonly streaming: true;
|
|
@@ -1095,11 +1145,11 @@ export declare const googleModels: [{
|
|
|
1095
1145
|
readonly test: "skip";
|
|
1096
1146
|
readonly providerId: "glacier";
|
|
1097
1147
|
readonly modelName: "gemini-2.5-flash-image";
|
|
1098
|
-
readonly inputPrice:
|
|
1099
|
-
readonly outputPrice:
|
|
1100
|
-
readonly cachedInputPrice:
|
|
1101
|
-
readonly requestPrice: 0;
|
|
1102
|
-
readonly discount: 0.2;
|
|
1148
|
+
readonly inputPrice: "0.3e-6";
|
|
1149
|
+
readonly outputPrice: "30e-6";
|
|
1150
|
+
readonly cachedInputPrice: "0.03e-6";
|
|
1151
|
+
readonly requestPrice: "0";
|
|
1152
|
+
readonly discount: "0.2";
|
|
1103
1153
|
readonly contextSize: 32768;
|
|
1104
1154
|
readonly maxOutput: 32768;
|
|
1105
1155
|
readonly streaming: true;
|
|
@@ -1120,21 +1170,21 @@ export declare const googleModels: [{
|
|
|
1120
1170
|
readonly test: "skip";
|
|
1121
1171
|
readonly providerId: "google-ai-studio";
|
|
1122
1172
|
readonly modelName: "gemini-3-pro-image-preview";
|
|
1123
|
-
readonly inputPrice:
|
|
1124
|
-
readonly outputPrice:
|
|
1125
|
-
readonly cachedInputPrice:
|
|
1126
|
-
readonly imageInputPrice:
|
|
1173
|
+
readonly inputPrice: "2e-6";
|
|
1174
|
+
readonly outputPrice: "12e-6";
|
|
1175
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
1176
|
+
readonly imageInputPrice: "2e-6";
|
|
1127
1177
|
readonly imageInputTokensByResolution: {
|
|
1128
1178
|
readonly default: 560;
|
|
1129
1179
|
};
|
|
1130
|
-
readonly imageOutputPrice:
|
|
1180
|
+
readonly imageOutputPrice: "120e-6";
|
|
1131
1181
|
readonly imageOutputTokensByResolution: {
|
|
1132
1182
|
readonly "1K": 1120;
|
|
1133
1183
|
readonly "2K": 1120;
|
|
1134
1184
|
readonly "4K": 2000;
|
|
1135
1185
|
readonly default: 1120;
|
|
1136
1186
|
};
|
|
1137
|
-
readonly requestPrice: 0;
|
|
1187
|
+
readonly requestPrice: "0";
|
|
1138
1188
|
readonly contextSize: 65536;
|
|
1139
1189
|
readonly maxOutput: 32768;
|
|
1140
1190
|
readonly streaming: true;
|
|
@@ -1146,22 +1196,22 @@ export declare const googleModels: [{
|
|
|
1146
1196
|
readonly test: "skip";
|
|
1147
1197
|
readonly providerId: "glacier";
|
|
1148
1198
|
readonly modelName: "gemini-3-pro-image-preview";
|
|
1149
|
-
readonly discount: 0.2;
|
|
1150
|
-
readonly inputPrice:
|
|
1151
|
-
readonly outputPrice:
|
|
1152
|
-
readonly cachedInputPrice:
|
|
1153
|
-
readonly imageInputPrice:
|
|
1199
|
+
readonly discount: "0.2";
|
|
1200
|
+
readonly inputPrice: "2e-6";
|
|
1201
|
+
readonly outputPrice: "12e-6";
|
|
1202
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
1203
|
+
readonly imageInputPrice: "2e-6";
|
|
1154
1204
|
readonly imageInputTokensByResolution: {
|
|
1155
1205
|
readonly default: 560;
|
|
1156
1206
|
};
|
|
1157
|
-
readonly imageOutputPrice:
|
|
1207
|
+
readonly imageOutputPrice: "120e-6";
|
|
1158
1208
|
readonly imageOutputTokensByResolution: {
|
|
1159
1209
|
readonly "1K": 1120;
|
|
1160
1210
|
readonly "2K": 1120;
|
|
1161
1211
|
readonly "4K": 2000;
|
|
1162
1212
|
readonly default: 1120;
|
|
1163
1213
|
};
|
|
1164
|
-
readonly requestPrice: 0;
|
|
1214
|
+
readonly requestPrice: "0";
|
|
1165
1215
|
readonly contextSize: 65536;
|
|
1166
1216
|
readonly maxOutput: 32768;
|
|
1167
1217
|
readonly streaming: true;
|
|
@@ -1173,21 +1223,21 @@ export declare const googleModels: [{
|
|
|
1173
1223
|
readonly test: "skip";
|
|
1174
1224
|
readonly providerId: "google-vertex";
|
|
1175
1225
|
readonly modelName: "gemini-3-pro-image-preview";
|
|
1176
|
-
readonly inputPrice:
|
|
1177
|
-
readonly outputPrice:
|
|
1178
|
-
readonly cachedInputPrice:
|
|
1179
|
-
readonly imageInputPrice:
|
|
1226
|
+
readonly inputPrice: "2e-6";
|
|
1227
|
+
readonly outputPrice: "12e-6";
|
|
1228
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
1229
|
+
readonly imageInputPrice: "2e-6";
|
|
1180
1230
|
readonly imageInputTokensByResolution: {
|
|
1181
1231
|
readonly default: 560;
|
|
1182
1232
|
};
|
|
1183
|
-
readonly imageOutputPrice:
|
|
1233
|
+
readonly imageOutputPrice: "120e-6";
|
|
1184
1234
|
readonly imageOutputTokensByResolution: {
|
|
1185
1235
|
readonly "1K": 1120;
|
|
1186
1236
|
readonly "2K": 1120;
|
|
1187
1237
|
readonly "4K": 2000;
|
|
1188
1238
|
readonly default: 1120;
|
|
1189
1239
|
};
|
|
1190
|
-
readonly requestPrice: 0;
|
|
1240
|
+
readonly requestPrice: "0";
|
|
1191
1241
|
readonly contextSize: 65536;
|
|
1192
1242
|
readonly maxOutput: 32768;
|
|
1193
1243
|
readonly streaming: true;
|
|
@@ -1199,22 +1249,22 @@ export declare const googleModels: [{
|
|
|
1199
1249
|
readonly test: "skip";
|
|
1200
1250
|
readonly providerId: "quartz";
|
|
1201
1251
|
readonly modelName: "gemini-3-pro-image-preview";
|
|
1202
|
-
readonly discount: 0.2;
|
|
1203
|
-
readonly inputPrice:
|
|
1204
|
-
readonly outputPrice:
|
|
1205
|
-
readonly cachedInputPrice:
|
|
1206
|
-
readonly imageInputPrice:
|
|
1252
|
+
readonly discount: "0.2";
|
|
1253
|
+
readonly inputPrice: "2e-6";
|
|
1254
|
+
readonly outputPrice: "12e-6";
|
|
1255
|
+
readonly cachedInputPrice: "0.2e-6";
|
|
1256
|
+
readonly imageInputPrice: "2e-6";
|
|
1207
1257
|
readonly imageInputTokensByResolution: {
|
|
1208
1258
|
readonly default: 560;
|
|
1209
1259
|
};
|
|
1210
|
-
readonly imageOutputPrice:
|
|
1260
|
+
readonly imageOutputPrice: "120e-6";
|
|
1211
1261
|
readonly imageOutputTokensByResolution: {
|
|
1212
1262
|
readonly "1K": 1120;
|
|
1213
1263
|
readonly "2K": 1120;
|
|
1214
1264
|
readonly "4K": 2000;
|
|
1215
1265
|
readonly default: 1120;
|
|
1216
1266
|
};
|
|
1217
|
-
readonly requestPrice: 0;
|
|
1267
|
+
readonly requestPrice: "0";
|
|
1218
1268
|
readonly contextSize: 65536;
|
|
1219
1269
|
readonly maxOutput: 32768;
|
|
1220
1270
|
readonly streaming: true;
|
|
@@ -1232,15 +1282,16 @@ export declare const googleModels: [{
|
|
|
1232
1282
|
readonly providers: [{
|
|
1233
1283
|
readonly providerId: "google-ai-studio";
|
|
1234
1284
|
readonly modelName: "gemini-2.5-flash-preview-04-17-thinking";
|
|
1235
|
-
readonly inputPrice:
|
|
1236
|
-
readonly outputPrice:
|
|
1237
|
-
readonly requestPrice: 0;
|
|
1285
|
+
readonly inputPrice: "0.15e-6";
|
|
1286
|
+
readonly outputPrice: "0.6e-6";
|
|
1287
|
+
readonly requestPrice: "0";
|
|
1238
1288
|
readonly contextSize: 1000000;
|
|
1239
1289
|
readonly maxOutput: undefined;
|
|
1240
1290
|
readonly reasoning: true;
|
|
1241
1291
|
readonly reasoningMaxTokens: true;
|
|
1242
1292
|
readonly streaming: true;
|
|
1243
1293
|
readonly vision: true;
|
|
1294
|
+
readonly audio: true;
|
|
1244
1295
|
readonly tools: true;
|
|
1245
1296
|
readonly jsonOutput: true;
|
|
1246
1297
|
readonly jsonOutputSchema: true;
|
|
@@ -1248,15 +1299,16 @@ export declare const googleModels: [{
|
|
|
1248
1299
|
}, {
|
|
1249
1300
|
readonly providerId: "google-vertex";
|
|
1250
1301
|
readonly modelName: "gemini-2.5-flash-preview-04-17-thinking";
|
|
1251
|
-
readonly inputPrice:
|
|
1252
|
-
readonly outputPrice:
|
|
1253
|
-
readonly requestPrice: 0;
|
|
1302
|
+
readonly inputPrice: "0.15e-6";
|
|
1303
|
+
readonly outputPrice: "0.6e-6";
|
|
1304
|
+
readonly requestPrice: "0";
|
|
1254
1305
|
readonly contextSize: 1000000;
|
|
1255
1306
|
readonly maxOutput: undefined;
|
|
1256
1307
|
readonly reasoning: true;
|
|
1257
1308
|
readonly reasoningMaxTokens: true;
|
|
1258
1309
|
readonly streaming: true;
|
|
1259
1310
|
readonly vision: true;
|
|
1311
|
+
readonly audio: true;
|
|
1260
1312
|
readonly tools: true;
|
|
1261
1313
|
readonly jsonOutput: true;
|
|
1262
1314
|
readonly jsonOutputSchema: true;
|
|
@@ -1271,15 +1323,16 @@ export declare const googleModels: [{
|
|
|
1271
1323
|
readonly providers: [{
|
|
1272
1324
|
readonly providerId: "google-ai-studio";
|
|
1273
1325
|
readonly modelName: "gemini-1.5-pro";
|
|
1274
|
-
readonly inputPrice:
|
|
1275
|
-
readonly outputPrice:
|
|
1276
|
-
readonly requestPrice: 0;
|
|
1326
|
+
readonly inputPrice: "2.5e-6";
|
|
1327
|
+
readonly outputPrice: "10.0e-6";
|
|
1328
|
+
readonly requestPrice: "0";
|
|
1277
1329
|
readonly contextSize: 1000000;
|
|
1278
1330
|
readonly maxOutput: undefined;
|
|
1279
1331
|
readonly reasoning: true;
|
|
1280
1332
|
readonly reasoningMaxTokens: true;
|
|
1281
1333
|
readonly streaming: true;
|
|
1282
1334
|
readonly vision: true;
|
|
1335
|
+
readonly audio: true;
|
|
1283
1336
|
readonly tools: true;
|
|
1284
1337
|
readonly jsonOutput: true;
|
|
1285
1338
|
readonly jsonOutputSchema: true;
|
|
@@ -1287,15 +1340,16 @@ export declare const googleModels: [{
|
|
|
1287
1340
|
}, {
|
|
1288
1341
|
readonly providerId: "google-vertex";
|
|
1289
1342
|
readonly modelName: "gemini-1.5-pro";
|
|
1290
|
-
readonly inputPrice:
|
|
1291
|
-
readonly outputPrice:
|
|
1292
|
-
readonly requestPrice: 0;
|
|
1343
|
+
readonly inputPrice: "2.5e-6";
|
|
1344
|
+
readonly outputPrice: "10.0e-6";
|
|
1345
|
+
readonly requestPrice: "0";
|
|
1293
1346
|
readonly contextSize: 1000000;
|
|
1294
1347
|
readonly maxOutput: undefined;
|
|
1295
1348
|
readonly reasoning: true;
|
|
1296
1349
|
readonly reasoningMaxTokens: true;
|
|
1297
1350
|
readonly streaming: true;
|
|
1298
1351
|
readonly vision: true;
|
|
1352
|
+
readonly audio: true;
|
|
1299
1353
|
readonly tools: true;
|
|
1300
1354
|
readonly jsonOutput: true;
|
|
1301
1355
|
readonly jsonOutputSchema: true;
|
|
@@ -1310,15 +1364,16 @@ export declare const googleModels: [{
|
|
|
1310
1364
|
readonly providers: [{
|
|
1311
1365
|
readonly providerId: "google-ai-studio";
|
|
1312
1366
|
readonly modelName: "gemini-1.5-flash";
|
|
1313
|
-
readonly inputPrice:
|
|
1314
|
-
readonly outputPrice:
|
|
1315
|
-
readonly requestPrice: 0;
|
|
1367
|
+
readonly inputPrice: "0.0375e-6";
|
|
1368
|
+
readonly outputPrice: "0.15e-6";
|
|
1369
|
+
readonly requestPrice: "0";
|
|
1316
1370
|
readonly contextSize: 1000000;
|
|
1317
1371
|
readonly maxOutput: undefined;
|
|
1318
1372
|
readonly reasoning: true;
|
|
1319
1373
|
readonly reasoningMaxTokens: true;
|
|
1320
1374
|
readonly streaming: true;
|
|
1321
1375
|
readonly vision: true;
|
|
1376
|
+
readonly audio: true;
|
|
1322
1377
|
readonly tools: true;
|
|
1323
1378
|
readonly jsonOutput: true;
|
|
1324
1379
|
readonly jsonOutputSchema: true;
|
|
@@ -1326,15 +1381,16 @@ export declare const googleModels: [{
|
|
|
1326
1381
|
}, {
|
|
1327
1382
|
readonly providerId: "google-vertex";
|
|
1328
1383
|
readonly modelName: "gemini-1.5-flash";
|
|
1329
|
-
readonly inputPrice:
|
|
1330
|
-
readonly outputPrice:
|
|
1331
|
-
readonly requestPrice: 0;
|
|
1384
|
+
readonly inputPrice: "0.0375e-6";
|
|
1385
|
+
readonly outputPrice: "0.15e-6";
|
|
1386
|
+
readonly requestPrice: "0";
|
|
1332
1387
|
readonly contextSize: 1000000;
|
|
1333
1388
|
readonly maxOutput: undefined;
|
|
1334
1389
|
readonly reasoning: true;
|
|
1335
1390
|
readonly reasoningMaxTokens: true;
|
|
1336
1391
|
readonly streaming: true;
|
|
1337
1392
|
readonly vision: true;
|
|
1393
|
+
readonly audio: true;
|
|
1338
1394
|
readonly tools: true;
|
|
1339
1395
|
readonly jsonOutput: true;
|
|
1340
1396
|
readonly jsonOutputSchema: true;
|
|
@@ -1349,15 +1405,16 @@ export declare const googleModels: [{
|
|
|
1349
1405
|
readonly providers: [{
|
|
1350
1406
|
readonly providerId: "google-ai-studio";
|
|
1351
1407
|
readonly modelName: "gemini-1.5-flash-8b";
|
|
1352
|
-
readonly inputPrice:
|
|
1353
|
-
readonly outputPrice:
|
|
1354
|
-
readonly requestPrice: 0;
|
|
1408
|
+
readonly inputPrice: "0.0375e-6";
|
|
1409
|
+
readonly outputPrice: "0.15e-6";
|
|
1410
|
+
readonly requestPrice: "0";
|
|
1355
1411
|
readonly contextSize: 1000000;
|
|
1356
1412
|
readonly maxOutput: undefined;
|
|
1357
1413
|
readonly reasoning: true;
|
|
1358
1414
|
readonly reasoningMaxTokens: true;
|
|
1359
1415
|
readonly streaming: true;
|
|
1360
1416
|
readonly vision: false;
|
|
1417
|
+
readonly audio: true;
|
|
1361
1418
|
readonly tools: true;
|
|
1362
1419
|
readonly jsonOutput: true;
|
|
1363
1420
|
readonly jsonOutputSchema: true;
|
|
@@ -1365,15 +1422,16 @@ export declare const googleModels: [{
|
|
|
1365
1422
|
}, {
|
|
1366
1423
|
readonly providerId: "google-vertex";
|
|
1367
1424
|
readonly modelName: "gemini-1.5-flash-8b";
|
|
1368
|
-
readonly inputPrice:
|
|
1369
|
-
readonly outputPrice:
|
|
1370
|
-
readonly requestPrice: 0;
|
|
1425
|
+
readonly inputPrice: "0.0375e-6";
|
|
1426
|
+
readonly outputPrice: "0.15e-6";
|
|
1427
|
+
readonly requestPrice: "0";
|
|
1371
1428
|
readonly contextSize: 1000000;
|
|
1372
1429
|
readonly maxOutput: undefined;
|
|
1373
1430
|
readonly reasoning: true;
|
|
1374
1431
|
readonly reasoningMaxTokens: true;
|
|
1375
1432
|
readonly streaming: true;
|
|
1376
1433
|
readonly vision: false;
|
|
1434
|
+
readonly audio: true;
|
|
1377
1435
|
readonly tools: true;
|
|
1378
1436
|
readonly jsonOutput: true;
|
|
1379
1437
|
readonly jsonOutputSchema: true;
|
|
@@ -1388,13 +1446,14 @@ export declare const googleModels: [{
|
|
|
1388
1446
|
readonly providers: [{
|
|
1389
1447
|
readonly providerId: "google-ai-studio";
|
|
1390
1448
|
readonly modelName: "gemini-2.0-flash-lite";
|
|
1391
|
-
readonly inputPrice:
|
|
1392
|
-
readonly outputPrice:
|
|
1393
|
-
readonly requestPrice: 0;
|
|
1449
|
+
readonly inputPrice: "0.075e-6";
|
|
1450
|
+
readonly outputPrice: "0.3e-6";
|
|
1451
|
+
readonly requestPrice: "0";
|
|
1394
1452
|
readonly contextSize: 1048576;
|
|
1395
1453
|
readonly maxOutput: 8192;
|
|
1396
1454
|
readonly streaming: true;
|
|
1397
1455
|
readonly vision: false;
|
|
1456
|
+
readonly audio: true;
|
|
1398
1457
|
readonly tools: true;
|
|
1399
1458
|
readonly jsonOutput: true;
|
|
1400
1459
|
readonly jsonOutputSchema: true;
|
|
@@ -1403,13 +1462,14 @@ export declare const googleModels: [{
|
|
|
1403
1462
|
}, {
|
|
1404
1463
|
readonly providerId: "google-vertex";
|
|
1405
1464
|
readonly modelName: "gemini-2.0-flash-lite";
|
|
1406
|
-
readonly inputPrice:
|
|
1407
|
-
readonly outputPrice:
|
|
1408
|
-
readonly requestPrice: 0;
|
|
1465
|
+
readonly inputPrice: "0.075e-6";
|
|
1466
|
+
readonly outputPrice: "0.3e-6";
|
|
1467
|
+
readonly requestPrice: "0";
|
|
1409
1468
|
readonly contextSize: 1048576;
|
|
1410
1469
|
readonly maxOutput: 8192;
|
|
1411
1470
|
readonly streaming: true;
|
|
1412
1471
|
readonly vision: false;
|
|
1472
|
+
readonly audio: true;
|
|
1413
1473
|
readonly tools: true;
|
|
1414
1474
|
readonly jsonOutput: true;
|
|
1415
1475
|
readonly jsonOutputSchema: true;
|
|
@@ -1425,14 +1485,17 @@ export declare const googleModels: [{
|
|
|
1425
1485
|
readonly providers: [{
|
|
1426
1486
|
readonly providerId: "google-ai-studio";
|
|
1427
1487
|
readonly modelName: "gemini-2.0-flash";
|
|
1428
|
-
readonly inputPrice:
|
|
1429
|
-
readonly outputPrice:
|
|
1430
|
-
readonly cachedInputPrice:
|
|
1431
|
-
readonly
|
|
1488
|
+
readonly inputPrice: "0.1e-6";
|
|
1489
|
+
readonly outputPrice: "0.4e-6";
|
|
1490
|
+
readonly cachedInputPrice: "0.025e-6";
|
|
1491
|
+
readonly inputAudioPrice: "0.7e-6";
|
|
1492
|
+
readonly cachedInputAudioPrice: "0.175e-6";
|
|
1493
|
+
readonly requestPrice: "0";
|
|
1432
1494
|
readonly contextSize: 1048576;
|
|
1433
1495
|
readonly maxOutput: 8192;
|
|
1434
1496
|
readonly streaming: true;
|
|
1435
1497
|
readonly vision: false;
|
|
1498
|
+
readonly audio: true;
|
|
1436
1499
|
readonly tools: true;
|
|
1437
1500
|
readonly jsonOutput: true;
|
|
1438
1501
|
readonly jsonOutputSchema: true;
|
|
@@ -1442,14 +1505,17 @@ export declare const googleModels: [{
|
|
|
1442
1505
|
readonly providerId: "google-vertex";
|
|
1443
1506
|
readonly test: "skip";
|
|
1444
1507
|
readonly modelName: "gemini-2.0-flash";
|
|
1445
|
-
readonly inputPrice:
|
|
1446
|
-
readonly outputPrice:
|
|
1447
|
-
readonly cachedInputPrice:
|
|
1448
|
-
readonly
|
|
1508
|
+
readonly inputPrice: "0.1e-6";
|
|
1509
|
+
readonly outputPrice: "0.4e-6";
|
|
1510
|
+
readonly cachedInputPrice: "0.025e-6";
|
|
1511
|
+
readonly inputAudioPrice: "1.0e-6";
|
|
1512
|
+
readonly cachedInputAudioPrice: "0.175e-6";
|
|
1513
|
+
readonly requestPrice: "0";
|
|
1449
1514
|
readonly contextSize: 1048576;
|
|
1450
1515
|
readonly maxOutput: 8192;
|
|
1451
1516
|
readonly streaming: true;
|
|
1452
1517
|
readonly vision: false;
|
|
1518
|
+
readonly audio: true;
|
|
1453
1519
|
readonly tools: true;
|
|
1454
1520
|
readonly jsonOutput: true;
|
|
1455
1521
|
readonly jsonOutputSchema: true;
|
|
@@ -1465,9 +1531,9 @@ export declare const googleModels: [{
|
|
|
1465
1531
|
readonly providers: [{
|
|
1466
1532
|
readonly providerId: "google-ai-studio";
|
|
1467
1533
|
readonly modelName: "gemma-3n-e2b-it";
|
|
1468
|
-
readonly inputPrice:
|
|
1469
|
-
readonly outputPrice:
|
|
1470
|
-
readonly requestPrice: 0;
|
|
1534
|
+
readonly inputPrice: "0.075e-6";
|
|
1535
|
+
readonly outputPrice: "0.3e-6";
|
|
1536
|
+
readonly requestPrice: "0";
|
|
1471
1537
|
readonly contextSize: 1000000;
|
|
1472
1538
|
readonly maxOutput: undefined;
|
|
1473
1539
|
readonly streaming: true;
|
|
@@ -1485,9 +1551,9 @@ export declare const googleModels: [{
|
|
|
1485
1551
|
readonly providers: [{
|
|
1486
1552
|
readonly providerId: "google-ai-studio";
|
|
1487
1553
|
readonly modelName: "gemma-3n-e4b-it";
|
|
1488
|
-
readonly inputPrice:
|
|
1489
|
-
readonly outputPrice:
|
|
1490
|
-
readonly requestPrice: 0;
|
|
1554
|
+
readonly inputPrice: "0.075e-6";
|
|
1555
|
+
readonly outputPrice: "0.3e-6";
|
|
1556
|
+
readonly requestPrice: "0";
|
|
1491
1557
|
readonly contextSize: 1000000;
|
|
1492
1558
|
readonly maxOutput: undefined;
|
|
1493
1559
|
readonly streaming: true;
|
|
@@ -1505,9 +1571,9 @@ export declare const googleModels: [{
|
|
|
1505
1571
|
readonly providers: [{
|
|
1506
1572
|
readonly providerId: "google-ai-studio";
|
|
1507
1573
|
readonly modelName: "gemma-3-1b-it";
|
|
1508
|
-
readonly inputPrice:
|
|
1509
|
-
readonly outputPrice:
|
|
1510
|
-
readonly requestPrice: 0;
|
|
1574
|
+
readonly inputPrice: "0.075e-6";
|
|
1575
|
+
readonly outputPrice: "0.3e-6";
|
|
1576
|
+
readonly requestPrice: "0";
|
|
1511
1577
|
readonly contextSize: 1000000;
|
|
1512
1578
|
readonly maxOutput: undefined;
|
|
1513
1579
|
readonly streaming: true;
|
|
@@ -1525,9 +1591,9 @@ export declare const googleModels: [{
|
|
|
1525
1591
|
readonly providers: [{
|
|
1526
1592
|
readonly providerId: "google-ai-studio";
|
|
1527
1593
|
readonly modelName: "gemma-3-4b-it";
|
|
1528
|
-
readonly inputPrice:
|
|
1529
|
-
readonly outputPrice:
|
|
1530
|
-
readonly requestPrice: 0;
|
|
1594
|
+
readonly inputPrice: "0.075e-6";
|
|
1595
|
+
readonly outputPrice: "0.3e-6";
|
|
1596
|
+
readonly requestPrice: "0";
|
|
1531
1597
|
readonly contextSize: 1000000;
|
|
1532
1598
|
readonly maxOutput: undefined;
|
|
1533
1599
|
readonly streaming: true;
|
|
@@ -1545,9 +1611,9 @@ export declare const googleModels: [{
|
|
|
1545
1611
|
readonly providers: [{
|
|
1546
1612
|
readonly providerId: "google-ai-studio";
|
|
1547
1613
|
readonly modelName: "gemma-3-12b-it";
|
|
1548
|
-
readonly inputPrice:
|
|
1549
|
-
readonly outputPrice:
|
|
1550
|
-
readonly requestPrice: 0;
|
|
1614
|
+
readonly inputPrice: "0.075e-6";
|
|
1615
|
+
readonly outputPrice: "0.3e-6";
|
|
1616
|
+
readonly requestPrice: "0";
|
|
1551
1617
|
readonly contextSize: 1000000;
|
|
1552
1618
|
readonly maxOutput: undefined;
|
|
1553
1619
|
readonly streaming: true;
|
|
@@ -1565,9 +1631,9 @@ export declare const googleModels: [{
|
|
|
1565
1631
|
readonly providers: [{
|
|
1566
1632
|
readonly providerId: "groq";
|
|
1567
1633
|
readonly modelName: "gemma2-9b-it";
|
|
1568
|
-
readonly inputPrice:
|
|
1569
|
-
readonly outputPrice:
|
|
1570
|
-
readonly requestPrice: 0;
|
|
1634
|
+
readonly inputPrice: "0.2e-6";
|
|
1635
|
+
readonly outputPrice: "0.2e-6";
|
|
1636
|
+
readonly requestPrice: "0";
|
|
1571
1637
|
readonly contextSize: 8129;
|
|
1572
1638
|
readonly maxOutput: undefined;
|
|
1573
1639
|
readonly streaming: true;
|
|
@@ -1586,9 +1652,9 @@ export declare const googleModels: [{
|
|
|
1586
1652
|
readonly providers: [{
|
|
1587
1653
|
readonly providerId: "nebius";
|
|
1588
1654
|
readonly modelName: "google/gemma-3-27b-it";
|
|
1589
|
-
readonly inputPrice:
|
|
1590
|
-
readonly outputPrice:
|
|
1591
|
-
readonly requestPrice: 0;
|
|
1655
|
+
readonly inputPrice: "0.27e-6";
|
|
1656
|
+
readonly outputPrice: "0.27e-6";
|
|
1657
|
+
readonly requestPrice: "0";
|
|
1592
1658
|
readonly contextSize: 128000;
|
|
1593
1659
|
readonly maxOutput: undefined;
|
|
1594
1660
|
readonly streaming: true;
|