@llmgateway/models 0.0.1
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/get-cheapest-from-available-providers.d.ts +30 -0
- package/dist/get-cheapest-from-available-providers.js +183 -0
- package/dist/get-cheapest-from-available-providers.js.map +1 -0
- package/dist/get-cheapest-model-for-provider.d.ts +2 -0
- package/dist/get-cheapest-model-for-provider.js +49 -0
- package/dist/get-cheapest-model-for-provider.js.map +1 -0
- package/dist/get-provider-endpoint.d.ts +3 -0
- package/dist/get-provider-endpoint.js +243 -0
- package/dist/get-provider-endpoint.js.map +1 -0
- package/dist/get-provider-headers.d.ts +5 -0
- package/dist/get-provider-headers.js +45 -0
- package/dist/get-provider-headers.js.map +1 -0
- package/dist/helpers.d.ts +1 -0
- package/dist/helpers.js +27 -0
- package/dist/helpers.js.map +1 -0
- package/dist/index.d.ts +16 -0
- package/dist/index.js +17 -0
- package/dist/index.js.map +1 -0
- package/dist/models/alibaba.d.ts +686 -0
- package/dist/models/alibaba.js +789 -0
- package/dist/models/alibaba.js.map +1 -0
- package/dist/models/anthropic.d.ts +572 -0
- package/dist/models/anthropic.js +638 -0
- package/dist/models/anthropic.js.map +1 -0
- package/dist/models/aws-bedrock.d.ts +1 -0
- package/dist/models/aws-bedrock.js +2 -0
- package/dist/models/aws-bedrock.js.map +1 -0
- package/dist/models/bytedance.d.ts +131 -0
- package/dist/models/bytedance.js +151 -0
- package/dist/models/bytedance.js.map +1 -0
- package/dist/models/deepseek.d.ts +175 -0
- package/dist/models/deepseek.js +197 -0
- package/dist/models/deepseek.js.map +1 -0
- package/dist/models/google.d.ts +1065 -0
- package/dist/models/google.js +1201 -0
- package/dist/models/google.js.map +1 -0
- package/dist/models/llmgateway.d.ts +39 -0
- package/dist/models/llmgateway.js +59 -0
- package/dist/models/llmgateway.js.map +1 -0
- package/dist/models/meta.d.ts +263 -0
- package/dist/models/meta.js +300 -0
- package/dist/models/meta.js.map +1 -0
- package/dist/models/microsoft.d.ts +1 -0
- package/dist/models/microsoft.js +2 -0
- package/dist/models/microsoft.js.map +1 -0
- package/dist/models/minimax.d.ts +59 -0
- package/dist/models/minimax.js +68 -0
- package/dist/models/minimax.js.map +1 -0
- package/dist/models/mistral.d.ts +78 -0
- package/dist/models/mistral.js +92 -0
- package/dist/models/mistral.js.map +1 -0
- package/dist/models/moonshot.d.ts +165 -0
- package/dist/models/moonshot.js +184 -0
- package/dist/models/moonshot.js.map +1 -0
- package/dist/models/nousresearch.d.ts +21 -0
- package/dist/models/nousresearch.js +26 -0
- package/dist/models/nousresearch.js.map +1 -0
- package/dist/models/openai.d.ts +1018 -0
- package/dist/models/openai.js +1213 -0
- package/dist/models/openai.js.map +1 -0
- package/dist/models/perplexity.d.ts +67 -0
- package/dist/models/perplexity.js +78 -0
- package/dist/models/perplexity.js.map +1 -0
- package/dist/models/routeway.d.ts +161 -0
- package/dist/models/routeway.js +187 -0
- package/dist/models/routeway.js.map +1 -0
- package/dist/models/xai.d.ts +270 -0
- package/dist/models/xai.js +311 -0
- package/dist/models/xai.js.map +1 -0
- package/dist/models/zai.d.ts +492 -0
- package/dist/models/zai.js +551 -0
- package/dist/models/zai.js.map +1 -0
- package/dist/models.d.ts +5304 -0
- package/dist/models.js +37 -0
- package/dist/models.js.map +1 -0
- package/dist/models.spec.d.ts +1 -0
- package/dist/models.spec.js +263 -0
- package/dist/models.spec.js.map +1 -0
- package/dist/prepare-request-body.d.ts +10 -0
- package/dist/prepare-request-body.js +1081 -0
- package/dist/prepare-request-body.js.map +1 -0
- package/dist/prepare-request-body.spec.d.ts +1 -0
- package/dist/prepare-request-body.spec.js +231 -0
- package/dist/prepare-request-body.spec.js.map +1 -0
- package/dist/process-image-url.d.ts +4 -0
- package/dist/process-image-url.js +121 -0
- package/dist/process-image-url.js.map +1 -0
- package/dist/provider.d.ts +9 -0
- package/dist/provider.js +64 -0
- package/dist/provider.js.map +1 -0
- package/dist/providers.d.ts +405 -0
- package/dist/providers.js +413 -0
- package/dist/providers.js.map +1 -0
- package/dist/testing.d.ts +7 -0
- package/dist/testing.js +19 -0
- package/dist/testing.js.map +1 -0
- package/dist/transform-anthropic-messages.d.ts +2 -0
- package/dist/transform-anthropic-messages.js +185 -0
- package/dist/transform-anthropic-messages.js.map +1 -0
- package/dist/transform-google-messages.d.ts +25 -0
- package/dist/transform-google-messages.js +122 -0
- package/dist/transform-google-messages.js.map +1 -0
- package/dist/type-guards.d.ts +20 -0
- package/dist/type-guards.js +35 -0
- package/dist/type-guards.js.map +1 -0
- package/dist/types.d.ts +291 -0
- package/dist/types.js +28 -0
- package/dist/types.js.map +1 -0
- package/dist/validate-provider-key.d.ts +4 -0
- package/dist/validate-provider-key.js +113 -0
- package/dist/validate-provider-key.js.map +1 -0
- package/package.json +29 -0
|
@@ -0,0 +1,1065 @@
|
|
|
1
|
+
export declare const googleModels: [{
|
|
2
|
+
readonly id: "gemini-2.5-pro";
|
|
3
|
+
readonly name: "Gemini 2.5 Pro";
|
|
4
|
+
readonly description: "Google's most capable model with reasoning and multimodal support.";
|
|
5
|
+
readonly family: "google";
|
|
6
|
+
readonly releasedAt: Date;
|
|
7
|
+
readonly providers: [{
|
|
8
|
+
readonly discount: 0.2;
|
|
9
|
+
readonly providerId: "google-ai-studio";
|
|
10
|
+
readonly modelName: "gemini-2.5-pro";
|
|
11
|
+
readonly inputPrice: number;
|
|
12
|
+
readonly outputPrice: number;
|
|
13
|
+
readonly pricingTiers: [{
|
|
14
|
+
readonly name: "Up to 200K";
|
|
15
|
+
readonly upToTokens: 200000;
|
|
16
|
+
readonly inputPrice: number;
|
|
17
|
+
readonly outputPrice: number;
|
|
18
|
+
}, {
|
|
19
|
+
readonly name: "Over 200K";
|
|
20
|
+
readonly upToTokens: number;
|
|
21
|
+
readonly inputPrice: number;
|
|
22
|
+
readonly outputPrice: number;
|
|
23
|
+
}];
|
|
24
|
+
readonly requestPrice: 0;
|
|
25
|
+
readonly contextSize: 1000000;
|
|
26
|
+
readonly maxOutput: undefined;
|
|
27
|
+
readonly reasoning: true;
|
|
28
|
+
readonly streaming: true;
|
|
29
|
+
readonly vision: true;
|
|
30
|
+
readonly tools: true;
|
|
31
|
+
readonly webSearch: true;
|
|
32
|
+
readonly webSearchPrice: 0.035;
|
|
33
|
+
readonly jsonOutput: true;
|
|
34
|
+
readonly jsonOutputSchema: true;
|
|
35
|
+
}, {
|
|
36
|
+
readonly discount: 0.2;
|
|
37
|
+
readonly providerId: "google-vertex";
|
|
38
|
+
readonly modelName: "gemini-2.5-pro";
|
|
39
|
+
readonly inputPrice: number;
|
|
40
|
+
readonly outputPrice: number;
|
|
41
|
+
readonly pricingTiers: [{
|
|
42
|
+
readonly name: "Up to 200K";
|
|
43
|
+
readonly upToTokens: 200000;
|
|
44
|
+
readonly inputPrice: number;
|
|
45
|
+
readonly outputPrice: number;
|
|
46
|
+
}, {
|
|
47
|
+
readonly name: "Over 200K";
|
|
48
|
+
readonly upToTokens: number;
|
|
49
|
+
readonly inputPrice: number;
|
|
50
|
+
readonly outputPrice: number;
|
|
51
|
+
}];
|
|
52
|
+
readonly requestPrice: 0;
|
|
53
|
+
readonly contextSize: 1000000;
|
|
54
|
+
readonly maxOutput: undefined;
|
|
55
|
+
readonly reasoning: true;
|
|
56
|
+
readonly streaming: true;
|
|
57
|
+
readonly vision: true;
|
|
58
|
+
readonly tools: true;
|
|
59
|
+
readonly webSearch: true;
|
|
60
|
+
readonly webSearchPrice: 0.035;
|
|
61
|
+
readonly jsonOutput: true;
|
|
62
|
+
readonly jsonOutputSchema: true;
|
|
63
|
+
}];
|
|
64
|
+
}, {
|
|
65
|
+
readonly id: "gemini-2.5-pro-preview-05-06";
|
|
66
|
+
readonly name: "Gemini 2.5 Pro Preview (05-06)";
|
|
67
|
+
readonly description: "Preview version of Gemini 2.5 Pro (May 2025).";
|
|
68
|
+
readonly family: "google";
|
|
69
|
+
readonly releasedAt: Date;
|
|
70
|
+
readonly providers: [{
|
|
71
|
+
readonly test: "skip";
|
|
72
|
+
readonly discount: 0.2;
|
|
73
|
+
readonly providerId: "google-ai-studio";
|
|
74
|
+
readonly modelName: "gemini-2.5-pro-preview-05-06";
|
|
75
|
+
readonly inputPrice: number;
|
|
76
|
+
readonly outputPrice: number;
|
|
77
|
+
readonly pricingTiers: [{
|
|
78
|
+
readonly name: "Up to 200K";
|
|
79
|
+
readonly upToTokens: 200000;
|
|
80
|
+
readonly inputPrice: number;
|
|
81
|
+
readonly outputPrice: number;
|
|
82
|
+
}, {
|
|
83
|
+
readonly name: "Over 200K";
|
|
84
|
+
readonly upToTokens: number;
|
|
85
|
+
readonly inputPrice: number;
|
|
86
|
+
readonly outputPrice: number;
|
|
87
|
+
}];
|
|
88
|
+
readonly requestPrice: 0;
|
|
89
|
+
readonly contextSize: 1000000;
|
|
90
|
+
readonly maxOutput: undefined;
|
|
91
|
+
readonly reasoning: true;
|
|
92
|
+
readonly streaming: true;
|
|
93
|
+
readonly vision: true;
|
|
94
|
+
readonly tools: true;
|
|
95
|
+
readonly jsonOutput: true;
|
|
96
|
+
readonly jsonOutputSchema: true;
|
|
97
|
+
readonly deactivatedAt: Date;
|
|
98
|
+
}, {
|
|
99
|
+
readonly test: "skip";
|
|
100
|
+
readonly discount: 0.2;
|
|
101
|
+
readonly providerId: "google-vertex";
|
|
102
|
+
readonly modelName: "gemini-2.5-pro-preview-05-06";
|
|
103
|
+
readonly inputPrice: number;
|
|
104
|
+
readonly outputPrice: number;
|
|
105
|
+
readonly pricingTiers: [{
|
|
106
|
+
readonly name: "Up to 200K";
|
|
107
|
+
readonly upToTokens: 200000;
|
|
108
|
+
readonly inputPrice: number;
|
|
109
|
+
readonly outputPrice: number;
|
|
110
|
+
}, {
|
|
111
|
+
readonly name: "Over 200K";
|
|
112
|
+
readonly upToTokens: number;
|
|
113
|
+
readonly inputPrice: number;
|
|
114
|
+
readonly outputPrice: number;
|
|
115
|
+
}];
|
|
116
|
+
readonly requestPrice: 0;
|
|
117
|
+
readonly contextSize: 1000000;
|
|
118
|
+
readonly maxOutput: undefined;
|
|
119
|
+
readonly reasoning: true;
|
|
120
|
+
readonly streaming: true;
|
|
121
|
+
readonly vision: true;
|
|
122
|
+
readonly tools: true;
|
|
123
|
+
readonly jsonOutput: true;
|
|
124
|
+
readonly jsonOutputSchema: true;
|
|
125
|
+
readonly deactivatedAt: Date;
|
|
126
|
+
}];
|
|
127
|
+
}, {
|
|
128
|
+
readonly id: "gemini-2.5-pro-preview-06-05";
|
|
129
|
+
readonly name: "Gemini 2.5 Pro Preview (06-05)";
|
|
130
|
+
readonly description: "Preview version of Gemini 2.5 Pro (June 2025).";
|
|
131
|
+
readonly family: "google";
|
|
132
|
+
readonly releasedAt: Date;
|
|
133
|
+
readonly providers: [{
|
|
134
|
+
readonly test: "skip";
|
|
135
|
+
readonly discount: 0.2;
|
|
136
|
+
readonly providerId: "google-ai-studio";
|
|
137
|
+
readonly modelName: "gemini-2.5-pro-preview-06-05";
|
|
138
|
+
readonly inputPrice: number;
|
|
139
|
+
readonly outputPrice: number;
|
|
140
|
+
readonly pricingTiers: [{
|
|
141
|
+
readonly name: "Up to 200K";
|
|
142
|
+
readonly upToTokens: 200000;
|
|
143
|
+
readonly inputPrice: number;
|
|
144
|
+
readonly outputPrice: number;
|
|
145
|
+
}, {
|
|
146
|
+
readonly name: "Over 200K";
|
|
147
|
+
readonly upToTokens: number;
|
|
148
|
+
readonly inputPrice: number;
|
|
149
|
+
readonly outputPrice: number;
|
|
150
|
+
}];
|
|
151
|
+
readonly requestPrice: 0;
|
|
152
|
+
readonly contextSize: 1000000;
|
|
153
|
+
readonly maxOutput: undefined;
|
|
154
|
+
readonly reasoning: true;
|
|
155
|
+
readonly streaming: true;
|
|
156
|
+
readonly vision: true;
|
|
157
|
+
readonly tools: true;
|
|
158
|
+
readonly jsonOutput: true;
|
|
159
|
+
readonly jsonOutputSchema: true;
|
|
160
|
+
readonly deactivatedAt: Date;
|
|
161
|
+
}, {
|
|
162
|
+
readonly test: "skip";
|
|
163
|
+
readonly discount: 0.2;
|
|
164
|
+
readonly providerId: "google-vertex";
|
|
165
|
+
readonly modelName: "gemini-2.5-pro-preview-06-05";
|
|
166
|
+
readonly inputPrice: number;
|
|
167
|
+
readonly outputPrice: number;
|
|
168
|
+
readonly pricingTiers: [{
|
|
169
|
+
readonly name: "Up to 200K";
|
|
170
|
+
readonly upToTokens: 200000;
|
|
171
|
+
readonly inputPrice: number;
|
|
172
|
+
readonly outputPrice: number;
|
|
173
|
+
}, {
|
|
174
|
+
readonly name: "Over 200K";
|
|
175
|
+
readonly upToTokens: number;
|
|
176
|
+
readonly inputPrice: number;
|
|
177
|
+
readonly outputPrice: number;
|
|
178
|
+
}];
|
|
179
|
+
readonly requestPrice: 0;
|
|
180
|
+
readonly contextSize: 1000000;
|
|
181
|
+
readonly maxOutput: undefined;
|
|
182
|
+
readonly reasoning: true;
|
|
183
|
+
readonly streaming: true;
|
|
184
|
+
readonly vision: true;
|
|
185
|
+
readonly tools: true;
|
|
186
|
+
readonly jsonOutput: true;
|
|
187
|
+
readonly jsonOutputSchema: true;
|
|
188
|
+
readonly deactivatedAt: Date;
|
|
189
|
+
}];
|
|
190
|
+
}, {
|
|
191
|
+
readonly id: "gemini-2.5-flash-preview-04-17";
|
|
192
|
+
readonly name: "Gemini 2.5 Flash Preview (04-17)";
|
|
193
|
+
readonly description: "Early preview of fast Gemini 2.5 Flash model.";
|
|
194
|
+
readonly family: "google";
|
|
195
|
+
readonly releasedAt: Date;
|
|
196
|
+
readonly providers: [{
|
|
197
|
+
readonly discount: 0.2;
|
|
198
|
+
readonly providerId: "google-ai-studio";
|
|
199
|
+
readonly modelName: "gemini-2.5-flash-preview-04-17";
|
|
200
|
+
readonly inputPrice: number;
|
|
201
|
+
readonly outputPrice: number;
|
|
202
|
+
readonly requestPrice: 0;
|
|
203
|
+
readonly contextSize: 1000000;
|
|
204
|
+
readonly maxOutput: undefined;
|
|
205
|
+
readonly reasoning: true;
|
|
206
|
+
readonly streaming: true;
|
|
207
|
+
readonly vision: true;
|
|
208
|
+
readonly tools: true;
|
|
209
|
+
readonly jsonOutput: true;
|
|
210
|
+
readonly jsonOutputSchema: true;
|
|
211
|
+
readonly deactivatedAt: Date;
|
|
212
|
+
}, {
|
|
213
|
+
readonly discount: 0.2;
|
|
214
|
+
readonly providerId: "google-vertex";
|
|
215
|
+
readonly modelName: "gemini-2.5-flash-preview-04-17";
|
|
216
|
+
readonly inputPrice: number;
|
|
217
|
+
readonly outputPrice: number;
|
|
218
|
+
readonly requestPrice: 0;
|
|
219
|
+
readonly contextSize: 1000000;
|
|
220
|
+
readonly maxOutput: undefined;
|
|
221
|
+
readonly reasoning: true;
|
|
222
|
+
readonly streaming: true;
|
|
223
|
+
readonly vision: true;
|
|
224
|
+
readonly tools: true;
|
|
225
|
+
readonly jsonOutput: true;
|
|
226
|
+
readonly jsonOutputSchema: true;
|
|
227
|
+
readonly deactivatedAt: Date;
|
|
228
|
+
}];
|
|
229
|
+
}, {
|
|
230
|
+
readonly id: "gemini-2.5-flash-preview-05-20";
|
|
231
|
+
readonly name: "Gemini 2.5 Flash Preview (05-20)";
|
|
232
|
+
readonly description: "May preview of Gemini 2.5 Flash with improved performance.";
|
|
233
|
+
readonly family: "google";
|
|
234
|
+
readonly releasedAt: Date;
|
|
235
|
+
readonly providers: [{
|
|
236
|
+
readonly discount: 0.2;
|
|
237
|
+
readonly providerId: "google-ai-studio";
|
|
238
|
+
readonly modelName: "gemini-2.5-flash-preview-05-20";
|
|
239
|
+
readonly inputPrice: number;
|
|
240
|
+
readonly outputPrice: number;
|
|
241
|
+
readonly requestPrice: 0;
|
|
242
|
+
readonly contextSize: 1000000;
|
|
243
|
+
readonly maxOutput: undefined;
|
|
244
|
+
readonly reasoning: true;
|
|
245
|
+
readonly streaming: true;
|
|
246
|
+
readonly vision: true;
|
|
247
|
+
readonly tools: true;
|
|
248
|
+
readonly jsonOutput: true;
|
|
249
|
+
readonly jsonOutputSchema: true;
|
|
250
|
+
readonly deactivatedAt: Date;
|
|
251
|
+
}, {
|
|
252
|
+
readonly discount: 0.2;
|
|
253
|
+
readonly providerId: "google-vertex";
|
|
254
|
+
readonly modelName: "gemini-2.5-flash-preview-05-20";
|
|
255
|
+
readonly inputPrice: number;
|
|
256
|
+
readonly outputPrice: number;
|
|
257
|
+
readonly requestPrice: 0;
|
|
258
|
+
readonly contextSize: 1000000;
|
|
259
|
+
readonly maxOutput: undefined;
|
|
260
|
+
readonly reasoning: true;
|
|
261
|
+
readonly streaming: true;
|
|
262
|
+
readonly vision: true;
|
|
263
|
+
readonly tools: true;
|
|
264
|
+
readonly jsonOutput: true;
|
|
265
|
+
readonly jsonOutputSchema: true;
|
|
266
|
+
readonly deactivatedAt: Date;
|
|
267
|
+
}];
|
|
268
|
+
}, {
|
|
269
|
+
readonly id: "gemini-2.5-flash-preview-09-2025";
|
|
270
|
+
readonly name: "Gemini 2.5 Flash Preview (09-2025)";
|
|
271
|
+
readonly description: "September preview of Gemini 2.5 Flash with caching.";
|
|
272
|
+
readonly family: "google";
|
|
273
|
+
readonly releasedAt: Date;
|
|
274
|
+
readonly providers: [{
|
|
275
|
+
readonly discount: 0.2;
|
|
276
|
+
readonly providerId: "google-ai-studio";
|
|
277
|
+
readonly modelName: "gemini-2.5-flash-preview-09-2025";
|
|
278
|
+
readonly inputPrice: number;
|
|
279
|
+
readonly outputPrice: number;
|
|
280
|
+
readonly cachedInputPrice: number;
|
|
281
|
+
readonly requestPrice: 0;
|
|
282
|
+
readonly contextSize: 1000000;
|
|
283
|
+
readonly maxOutput: undefined;
|
|
284
|
+
readonly reasoning: true;
|
|
285
|
+
readonly streaming: true;
|
|
286
|
+
readonly vision: true;
|
|
287
|
+
readonly tools: true;
|
|
288
|
+
readonly jsonOutput: true;
|
|
289
|
+
readonly jsonOutputSchema: true;
|
|
290
|
+
}, {
|
|
291
|
+
readonly discount: 0.2;
|
|
292
|
+
readonly providerId: "google-vertex";
|
|
293
|
+
readonly modelName: "gemini-2.5-flash-preview-09-2025";
|
|
294
|
+
readonly inputPrice: number;
|
|
295
|
+
readonly outputPrice: number;
|
|
296
|
+
readonly cachedInputPrice: number;
|
|
297
|
+
readonly requestPrice: 0;
|
|
298
|
+
readonly contextSize: 1000000;
|
|
299
|
+
readonly maxOutput: undefined;
|
|
300
|
+
readonly reasoning: true;
|
|
301
|
+
readonly streaming: true;
|
|
302
|
+
readonly vision: true;
|
|
303
|
+
readonly tools: true;
|
|
304
|
+
readonly jsonOutput: true;
|
|
305
|
+
readonly jsonOutputSchema: true;
|
|
306
|
+
}];
|
|
307
|
+
}, {
|
|
308
|
+
readonly id: "gemini-2.5-flash";
|
|
309
|
+
readonly name: "Gemini 2.5 Flash";
|
|
310
|
+
readonly description: "Fast, cost-effective model with reasoning capabilities.";
|
|
311
|
+
readonly family: "google";
|
|
312
|
+
readonly releasedAt: Date;
|
|
313
|
+
readonly providers: [{
|
|
314
|
+
readonly discount: 0.2;
|
|
315
|
+
readonly providerId: "google-ai-studio";
|
|
316
|
+
readonly modelName: "gemini-2.5-flash";
|
|
317
|
+
readonly inputPrice: number;
|
|
318
|
+
readonly outputPrice: number;
|
|
319
|
+
readonly cachedInputPrice: number;
|
|
320
|
+
readonly requestPrice: 0;
|
|
321
|
+
readonly contextSize: 1000000;
|
|
322
|
+
readonly maxOutput: undefined;
|
|
323
|
+
readonly reasoning: true;
|
|
324
|
+
readonly streaming: true;
|
|
325
|
+
readonly vision: true;
|
|
326
|
+
readonly tools: true;
|
|
327
|
+
readonly webSearch: true;
|
|
328
|
+
readonly webSearchPrice: 0.035;
|
|
329
|
+
readonly jsonOutput: true;
|
|
330
|
+
readonly jsonOutputSchema: true;
|
|
331
|
+
}, {
|
|
332
|
+
readonly discount: 0.2;
|
|
333
|
+
readonly providerId: "google-vertex";
|
|
334
|
+
readonly modelName: "gemini-2.5-flash";
|
|
335
|
+
readonly inputPrice: number;
|
|
336
|
+
readonly outputPrice: number;
|
|
337
|
+
readonly cachedInputPrice: number;
|
|
338
|
+
readonly requestPrice: 0;
|
|
339
|
+
readonly contextSize: 1000000;
|
|
340
|
+
readonly maxOutput: undefined;
|
|
341
|
+
readonly reasoning: true;
|
|
342
|
+
readonly streaming: true;
|
|
343
|
+
readonly vision: true;
|
|
344
|
+
readonly tools: true;
|
|
345
|
+
readonly webSearch: true;
|
|
346
|
+
readonly webSearchPrice: 0.035;
|
|
347
|
+
readonly jsonOutput: true;
|
|
348
|
+
readonly jsonOutputSchema: true;
|
|
349
|
+
}];
|
|
350
|
+
}, {
|
|
351
|
+
readonly id: "gemini-2.5-flash-lite";
|
|
352
|
+
readonly name: "Gemini 2.5 Flash Lite";
|
|
353
|
+
readonly description: "Ultra-lightweight Gemini for high-volume, cost-sensitive tasks.";
|
|
354
|
+
readonly family: "google";
|
|
355
|
+
readonly releasedAt: Date;
|
|
356
|
+
readonly providers: [{
|
|
357
|
+
readonly discount: 0.2;
|
|
358
|
+
readonly providerId: "google-ai-studio";
|
|
359
|
+
readonly modelName: "gemini-2.5-flash-lite";
|
|
360
|
+
readonly inputPrice: number;
|
|
361
|
+
readonly outputPrice: number;
|
|
362
|
+
readonly cachedInputPrice: number;
|
|
363
|
+
readonly requestPrice: 0;
|
|
364
|
+
readonly contextSize: 1000000;
|
|
365
|
+
readonly maxOutput: undefined;
|
|
366
|
+
readonly streaming: true;
|
|
367
|
+
readonly vision: true;
|
|
368
|
+
readonly tools: true;
|
|
369
|
+
readonly jsonOutput: true;
|
|
370
|
+
readonly jsonOutputSchema: true;
|
|
371
|
+
}, {
|
|
372
|
+
readonly discount: 0.2;
|
|
373
|
+
readonly providerId: "google-vertex";
|
|
374
|
+
readonly modelName: "gemini-2.5-flash-lite";
|
|
375
|
+
readonly inputPrice: number;
|
|
376
|
+
readonly outputPrice: number;
|
|
377
|
+
readonly cachedInputPrice: number;
|
|
378
|
+
readonly requestPrice: 0;
|
|
379
|
+
readonly contextSize: 1000000;
|
|
380
|
+
readonly maxOutput: undefined;
|
|
381
|
+
readonly streaming: true;
|
|
382
|
+
readonly vision: true;
|
|
383
|
+
readonly tools: true;
|
|
384
|
+
readonly jsonOutput: true;
|
|
385
|
+
readonly jsonOutputSchema: true;
|
|
386
|
+
}];
|
|
387
|
+
}, {
|
|
388
|
+
readonly id: "gemini-2.5-flash-lite-preview-09-2025";
|
|
389
|
+
readonly name: "Gemini 2.5 Flash Lite Preview (09-2025)";
|
|
390
|
+
readonly description: "Preview of lightweight Gemini Flash Lite variant.";
|
|
391
|
+
readonly family: "google";
|
|
392
|
+
readonly releasedAt: Date;
|
|
393
|
+
readonly providers: [{
|
|
394
|
+
readonly discount: 0.2;
|
|
395
|
+
readonly providerId: "google-ai-studio";
|
|
396
|
+
readonly modelName: "gemini-2.5-flash-lite-preview-09-2025";
|
|
397
|
+
readonly inputPrice: number;
|
|
398
|
+
readonly outputPrice: number;
|
|
399
|
+
readonly cachedInputPrice: number;
|
|
400
|
+
readonly requestPrice: 0;
|
|
401
|
+
readonly contextSize: 1000000;
|
|
402
|
+
readonly maxOutput: undefined;
|
|
403
|
+
readonly streaming: true;
|
|
404
|
+
readonly vision: true;
|
|
405
|
+
readonly tools: true;
|
|
406
|
+
readonly jsonOutput: true;
|
|
407
|
+
readonly jsonOutputSchema: true;
|
|
408
|
+
}, {
|
|
409
|
+
readonly discount: 0.2;
|
|
410
|
+
readonly providerId: "google-vertex";
|
|
411
|
+
readonly modelName: "gemini-2.5-flash-lite-preview-09-2025";
|
|
412
|
+
readonly inputPrice: number;
|
|
413
|
+
readonly outputPrice: number;
|
|
414
|
+
readonly cachedInputPrice: number;
|
|
415
|
+
readonly requestPrice: 0;
|
|
416
|
+
readonly contextSize: 1000000;
|
|
417
|
+
readonly maxOutput: undefined;
|
|
418
|
+
readonly streaming: true;
|
|
419
|
+
readonly vision: true;
|
|
420
|
+
readonly tools: true;
|
|
421
|
+
readonly jsonOutput: true;
|
|
422
|
+
readonly jsonOutputSchema: true;
|
|
423
|
+
}];
|
|
424
|
+
}, {
|
|
425
|
+
readonly id: "gemini-3-pro-preview";
|
|
426
|
+
readonly name: "Gemini 3 Pro (Preview)";
|
|
427
|
+
readonly description: "Preview of next-generation Gemini 3 Pro with enhanced capabilities.";
|
|
428
|
+
readonly family: "google";
|
|
429
|
+
readonly releasedAt: Date;
|
|
430
|
+
readonly providers: [{
|
|
431
|
+
readonly discount: 0.2;
|
|
432
|
+
readonly providerId: "google-ai-studio";
|
|
433
|
+
readonly modelName: "gemini-3-pro-preview";
|
|
434
|
+
readonly inputPrice: number;
|
|
435
|
+
readonly outputPrice: number;
|
|
436
|
+
readonly pricingTiers: [{
|
|
437
|
+
readonly name: "Up to 200K";
|
|
438
|
+
readonly upToTokens: 200000;
|
|
439
|
+
readonly inputPrice: number;
|
|
440
|
+
readonly outputPrice: number;
|
|
441
|
+
readonly cachedInputPrice: number;
|
|
442
|
+
}, {
|
|
443
|
+
readonly name: "Over 200K";
|
|
444
|
+
readonly upToTokens: number;
|
|
445
|
+
readonly inputPrice: number;
|
|
446
|
+
readonly outputPrice: number;
|
|
447
|
+
readonly cachedInputPrice: number;
|
|
448
|
+
}];
|
|
449
|
+
readonly requestPrice: 0;
|
|
450
|
+
readonly contextSize: 1000000;
|
|
451
|
+
readonly maxOutput: 65000;
|
|
452
|
+
readonly reasoning: true;
|
|
453
|
+
readonly streaming: true;
|
|
454
|
+
readonly vision: true;
|
|
455
|
+
readonly tools: true;
|
|
456
|
+
readonly webSearch: true;
|
|
457
|
+
readonly webSearchPrice: 0.014;
|
|
458
|
+
readonly jsonOutput: true;
|
|
459
|
+
readonly jsonOutputSchema: true;
|
|
460
|
+
}, {
|
|
461
|
+
readonly discount: 0.2;
|
|
462
|
+
readonly providerId: "google-vertex";
|
|
463
|
+
readonly modelName: "gemini-3-pro-preview";
|
|
464
|
+
readonly inputPrice: number;
|
|
465
|
+
readonly outputPrice: number;
|
|
466
|
+
readonly pricingTiers: [{
|
|
467
|
+
readonly name: "Up to 200K";
|
|
468
|
+
readonly upToTokens: 200000;
|
|
469
|
+
readonly inputPrice: number;
|
|
470
|
+
readonly outputPrice: number;
|
|
471
|
+
readonly cachedInputPrice: number;
|
|
472
|
+
}, {
|
|
473
|
+
readonly name: "Over 200K";
|
|
474
|
+
readonly upToTokens: number;
|
|
475
|
+
readonly inputPrice: number;
|
|
476
|
+
readonly outputPrice: number;
|
|
477
|
+
readonly cachedInputPrice: number;
|
|
478
|
+
}];
|
|
479
|
+
readonly requestPrice: 0;
|
|
480
|
+
readonly contextSize: 1000000;
|
|
481
|
+
readonly maxOutput: 65000;
|
|
482
|
+
readonly reasoning: true;
|
|
483
|
+
readonly streaming: true;
|
|
484
|
+
readonly vision: true;
|
|
485
|
+
readonly tools: true;
|
|
486
|
+
readonly webSearch: true;
|
|
487
|
+
readonly webSearchPrice: 0.014;
|
|
488
|
+
readonly jsonOutput: true;
|
|
489
|
+
readonly jsonOutputSchema: true;
|
|
490
|
+
}];
|
|
491
|
+
}, {
|
|
492
|
+
readonly id: "gemini-3-flash-preview";
|
|
493
|
+
readonly name: "Gemini 3 Flash (Preview)";
|
|
494
|
+
readonly description: "Preview of next-generation Gemini 3 Flash built for speed, combining frontier intelligence with superior search and grounding.";
|
|
495
|
+
readonly family: "google";
|
|
496
|
+
readonly releasedAt: Date;
|
|
497
|
+
readonly providers: [{
|
|
498
|
+
readonly discount: 0.2;
|
|
499
|
+
readonly providerId: "google-ai-studio";
|
|
500
|
+
readonly modelName: "gemini-3-flash-preview";
|
|
501
|
+
readonly inputPrice: number;
|
|
502
|
+
readonly outputPrice: number;
|
|
503
|
+
readonly pricingTiers: [{
|
|
504
|
+
readonly name: "Up to 200K";
|
|
505
|
+
readonly upToTokens: 200000;
|
|
506
|
+
readonly inputPrice: number;
|
|
507
|
+
readonly outputPrice: number;
|
|
508
|
+
readonly cachedInputPrice: number;
|
|
509
|
+
}, {
|
|
510
|
+
readonly name: "Over 200K";
|
|
511
|
+
readonly upToTokens: number;
|
|
512
|
+
readonly inputPrice: number;
|
|
513
|
+
readonly outputPrice: number;
|
|
514
|
+
readonly cachedInputPrice: number;
|
|
515
|
+
}];
|
|
516
|
+
readonly requestPrice: 0;
|
|
517
|
+
readonly contextSize: 1000000;
|
|
518
|
+
readonly maxOutput: 65000;
|
|
519
|
+
readonly reasoning: true;
|
|
520
|
+
readonly streaming: true;
|
|
521
|
+
readonly vision: true;
|
|
522
|
+
readonly tools: true;
|
|
523
|
+
readonly webSearch: true;
|
|
524
|
+
readonly webSearchPrice: 0.014;
|
|
525
|
+
readonly jsonOutput: true;
|
|
526
|
+
readonly jsonOutputSchema: true;
|
|
527
|
+
}, {
|
|
528
|
+
readonly discount: 0.2;
|
|
529
|
+
readonly providerId: "google-vertex";
|
|
530
|
+
readonly modelName: "gemini-3-flash-preview";
|
|
531
|
+
readonly inputPrice: number;
|
|
532
|
+
readonly outputPrice: number;
|
|
533
|
+
readonly pricingTiers: [{
|
|
534
|
+
readonly name: "Up to 200K";
|
|
535
|
+
readonly upToTokens: 200000;
|
|
536
|
+
readonly inputPrice: number;
|
|
537
|
+
readonly outputPrice: number;
|
|
538
|
+
readonly cachedInputPrice: number;
|
|
539
|
+
}, {
|
|
540
|
+
readonly name: "Over 200K";
|
|
541
|
+
readonly upToTokens: number;
|
|
542
|
+
readonly inputPrice: number;
|
|
543
|
+
readonly outputPrice: number;
|
|
544
|
+
readonly cachedInputPrice: number;
|
|
545
|
+
}];
|
|
546
|
+
readonly requestPrice: 0;
|
|
547
|
+
readonly contextSize: 1000000;
|
|
548
|
+
readonly maxOutput: 65000;
|
|
549
|
+
readonly reasoning: true;
|
|
550
|
+
readonly streaming: true;
|
|
551
|
+
readonly vision: true;
|
|
552
|
+
readonly tools: true;
|
|
553
|
+
readonly webSearch: true;
|
|
554
|
+
readonly webSearchPrice: 0.014;
|
|
555
|
+
readonly jsonOutput: true;
|
|
556
|
+
readonly jsonOutputSchema: true;
|
|
557
|
+
}];
|
|
558
|
+
}, {
|
|
559
|
+
readonly id: "gemini-2.5-flash-image-preview";
|
|
560
|
+
readonly name: "Gemini 2.5 Flash Image (Preview)";
|
|
561
|
+
readonly description: "Gemini Flash with native image generation capabilities.";
|
|
562
|
+
readonly aliases: ["nano banana"];
|
|
563
|
+
readonly family: "google";
|
|
564
|
+
readonly output: ["text", "image"];
|
|
565
|
+
readonly releasedAt: Date;
|
|
566
|
+
readonly providers: [{
|
|
567
|
+
readonly test: "skip";
|
|
568
|
+
readonly discount: 0.2;
|
|
569
|
+
readonly providerId: "google-ai-studio";
|
|
570
|
+
readonly modelName: "gemini-2.5-flash-image-preview";
|
|
571
|
+
readonly inputPrice: number;
|
|
572
|
+
readonly outputPrice: number;
|
|
573
|
+
readonly requestPrice: 0;
|
|
574
|
+
readonly contextSize: 32800;
|
|
575
|
+
readonly maxOutput: 8200;
|
|
576
|
+
readonly streaming: true;
|
|
577
|
+
readonly vision: true;
|
|
578
|
+
readonly tools: false;
|
|
579
|
+
readonly jsonOutput: true;
|
|
580
|
+
readonly jsonOutputSchema: true;
|
|
581
|
+
}, {
|
|
582
|
+
readonly test: "skip";
|
|
583
|
+
readonly discount: 0.2;
|
|
584
|
+
readonly providerId: "google-vertex";
|
|
585
|
+
readonly modelName: "gemini-2.5-flash-image-preview";
|
|
586
|
+
readonly inputPrice: number;
|
|
587
|
+
readonly outputPrice: number;
|
|
588
|
+
readonly requestPrice: 0;
|
|
589
|
+
readonly contextSize: 32800;
|
|
590
|
+
readonly maxOutput: 8200;
|
|
591
|
+
readonly streaming: true;
|
|
592
|
+
readonly vision: true;
|
|
593
|
+
readonly tools: false;
|
|
594
|
+
readonly jsonOutput: true;
|
|
595
|
+
readonly jsonOutputSchema: true;
|
|
596
|
+
}];
|
|
597
|
+
}, {
|
|
598
|
+
readonly id: "gemini-2.5-flash-image";
|
|
599
|
+
readonly name: "Gemini 2.5 Flash Image";
|
|
600
|
+
readonly description: "Production Gemini Flash model for text and image generation.";
|
|
601
|
+
readonly aliases: ["nano banana"];
|
|
602
|
+
readonly family: "google";
|
|
603
|
+
readonly output: ["text", "image"];
|
|
604
|
+
readonly releasedAt: Date;
|
|
605
|
+
readonly providers: [{
|
|
606
|
+
readonly test: "skip";
|
|
607
|
+
readonly discount: 0.2;
|
|
608
|
+
readonly providerId: "google-ai-studio";
|
|
609
|
+
readonly modelName: "gemini-2.5-flash-image";
|
|
610
|
+
readonly inputPrice: number;
|
|
611
|
+
readonly outputPrice: number;
|
|
612
|
+
readonly requestPrice: 0;
|
|
613
|
+
readonly contextSize: 32800;
|
|
614
|
+
readonly maxOutput: 8200;
|
|
615
|
+
readonly streaming: true;
|
|
616
|
+
readonly vision: true;
|
|
617
|
+
readonly tools: false;
|
|
618
|
+
readonly jsonOutput: true;
|
|
619
|
+
readonly jsonOutputSchema: true;
|
|
620
|
+
}, {
|
|
621
|
+
readonly test: "skip";
|
|
622
|
+
readonly discount: 0.2;
|
|
623
|
+
readonly providerId: "google-vertex";
|
|
624
|
+
readonly modelName: "gemini-2.5-flash-image";
|
|
625
|
+
readonly inputPrice: number;
|
|
626
|
+
readonly outputPrice: number;
|
|
627
|
+
readonly requestPrice: 0;
|
|
628
|
+
readonly contextSize: 32800;
|
|
629
|
+
readonly maxOutput: 8200;
|
|
630
|
+
readonly streaming: true;
|
|
631
|
+
readonly vision: true;
|
|
632
|
+
readonly tools: false;
|
|
633
|
+
readonly jsonOutput: true;
|
|
634
|
+
readonly jsonOutputSchema: true;
|
|
635
|
+
}];
|
|
636
|
+
}, {
|
|
637
|
+
readonly id: "gemini-3-pro-image-preview";
|
|
638
|
+
readonly name: "Gemini 3 Pro Image (Preview)";
|
|
639
|
+
readonly description: "Native image generation model optimized for speed, flexibility, and contextual understanding. Text priced same as Gemini 3 Pro, image output at $0.134/image (1K-2K) or $0.24/image (4K).";
|
|
640
|
+
readonly aliases: ["nano banana", "nano banana 2"];
|
|
641
|
+
readonly family: "google";
|
|
642
|
+
readonly output: ["text", "image"];
|
|
643
|
+
readonly releasedAt: Date;
|
|
644
|
+
readonly providers: [{
|
|
645
|
+
readonly test: "skip";
|
|
646
|
+
readonly discount: 0.2;
|
|
647
|
+
readonly providerId: "google-ai-studio";
|
|
648
|
+
readonly modelName: "gemini-3-pro-image-preview";
|
|
649
|
+
readonly inputPrice: number;
|
|
650
|
+
readonly outputPrice: number;
|
|
651
|
+
readonly imageInputPrice: 0.0011;
|
|
652
|
+
readonly imageOutputPrice: number;
|
|
653
|
+
readonly requestPrice: 0;
|
|
654
|
+
readonly contextSize: 98304;
|
|
655
|
+
readonly maxOutput: 32768;
|
|
656
|
+
readonly streaming: true;
|
|
657
|
+
readonly vision: true;
|
|
658
|
+
readonly tools: false;
|
|
659
|
+
readonly jsonOutput: true;
|
|
660
|
+
readonly jsonOutputSchema: true;
|
|
661
|
+
}, {
|
|
662
|
+
readonly test: "skip";
|
|
663
|
+
readonly discount: 0.2;
|
|
664
|
+
readonly providerId: "google-vertex";
|
|
665
|
+
readonly modelName: "gemini-3-pro-image-preview";
|
|
666
|
+
readonly inputPrice: number;
|
|
667
|
+
readonly outputPrice: number;
|
|
668
|
+
readonly imageInputPrice: 0.0011;
|
|
669
|
+
readonly imageOutputPrice: number;
|
|
670
|
+
readonly requestPrice: 0;
|
|
671
|
+
readonly contextSize: 98304;
|
|
672
|
+
readonly maxOutput: 32768;
|
|
673
|
+
readonly streaming: true;
|
|
674
|
+
readonly vision: true;
|
|
675
|
+
readonly tools: false;
|
|
676
|
+
readonly jsonOutput: true;
|
|
677
|
+
readonly jsonOutputSchema: true;
|
|
678
|
+
}];
|
|
679
|
+
}, {
|
|
680
|
+
readonly id: "gemini-2.5-flash-preview-04-17-thinking";
|
|
681
|
+
readonly name: "Gemini 2.5 Flash Preview Thinking (04-17)";
|
|
682
|
+
readonly description: "Gemini Flash preview with explicit thinking/reasoning mode.";
|
|
683
|
+
readonly family: "google";
|
|
684
|
+
readonly releasedAt: Date;
|
|
685
|
+
readonly providers: [{
|
|
686
|
+
readonly discount: 0.2;
|
|
687
|
+
readonly providerId: "google-ai-studio";
|
|
688
|
+
readonly modelName: "gemini-2.5-flash-preview-04-17-thinking";
|
|
689
|
+
readonly inputPrice: number;
|
|
690
|
+
readonly outputPrice: number;
|
|
691
|
+
readonly requestPrice: 0;
|
|
692
|
+
readonly contextSize: 1000000;
|
|
693
|
+
readonly maxOutput: undefined;
|
|
694
|
+
readonly reasoning: true;
|
|
695
|
+
readonly streaming: true;
|
|
696
|
+
readonly vision: true;
|
|
697
|
+
readonly tools: true;
|
|
698
|
+
readonly jsonOutput: true;
|
|
699
|
+
readonly jsonOutputSchema: true;
|
|
700
|
+
readonly deactivatedAt: Date;
|
|
701
|
+
}, {
|
|
702
|
+
readonly discount: 0.2;
|
|
703
|
+
readonly providerId: "google-vertex";
|
|
704
|
+
readonly modelName: "gemini-2.5-flash-preview-04-17-thinking";
|
|
705
|
+
readonly inputPrice: number;
|
|
706
|
+
readonly outputPrice: number;
|
|
707
|
+
readonly requestPrice: 0;
|
|
708
|
+
readonly contextSize: 1000000;
|
|
709
|
+
readonly maxOutput: undefined;
|
|
710
|
+
readonly reasoning: true;
|
|
711
|
+
readonly streaming: true;
|
|
712
|
+
readonly vision: true;
|
|
713
|
+
readonly tools: true;
|
|
714
|
+
readonly jsonOutput: true;
|
|
715
|
+
readonly jsonOutputSchema: true;
|
|
716
|
+
readonly deactivatedAt: Date;
|
|
717
|
+
}];
|
|
718
|
+
}, {
|
|
719
|
+
readonly id: "gemini-1.5-pro";
|
|
720
|
+
readonly name: "Gemini 1.5 Pro";
|
|
721
|
+
readonly description: "Previous generation Gemini Pro with multimodal support.";
|
|
722
|
+
readonly family: "google";
|
|
723
|
+
readonly releasedAt: Date;
|
|
724
|
+
readonly providers: [{
|
|
725
|
+
readonly discount: 0.2;
|
|
726
|
+
readonly providerId: "google-ai-studio";
|
|
727
|
+
readonly modelName: "gemini-1.5-pro";
|
|
728
|
+
readonly inputPrice: number;
|
|
729
|
+
readonly outputPrice: number;
|
|
730
|
+
readonly requestPrice: 0;
|
|
731
|
+
readonly contextSize: 1000000;
|
|
732
|
+
readonly maxOutput: undefined;
|
|
733
|
+
readonly reasoning: true;
|
|
734
|
+
readonly streaming: true;
|
|
735
|
+
readonly vision: true;
|
|
736
|
+
readonly tools: true;
|
|
737
|
+
readonly jsonOutput: true;
|
|
738
|
+
readonly jsonOutputSchema: true;
|
|
739
|
+
readonly deactivatedAt: Date;
|
|
740
|
+
}, {
|
|
741
|
+
readonly discount: 0.2;
|
|
742
|
+
readonly providerId: "google-vertex";
|
|
743
|
+
readonly modelName: "gemini-1.5-pro";
|
|
744
|
+
readonly inputPrice: number;
|
|
745
|
+
readonly outputPrice: number;
|
|
746
|
+
readonly requestPrice: 0;
|
|
747
|
+
readonly contextSize: 1000000;
|
|
748
|
+
readonly maxOutput: undefined;
|
|
749
|
+
readonly reasoning: true;
|
|
750
|
+
readonly streaming: true;
|
|
751
|
+
readonly vision: true;
|
|
752
|
+
readonly tools: true;
|
|
753
|
+
readonly jsonOutput: true;
|
|
754
|
+
readonly jsonOutputSchema: true;
|
|
755
|
+
readonly deactivatedAt: Date;
|
|
756
|
+
}];
|
|
757
|
+
}, {
|
|
758
|
+
readonly id: "gemini-1.5-flash";
|
|
759
|
+
readonly name: "Gemini 1.5 Flash";
|
|
760
|
+
readonly description: "Fast Gemini 1.5 model for quick multimodal tasks.";
|
|
761
|
+
readonly family: "google";
|
|
762
|
+
readonly releasedAt: Date;
|
|
763
|
+
readonly providers: [{
|
|
764
|
+
readonly discount: 0.2;
|
|
765
|
+
readonly providerId: "google-ai-studio";
|
|
766
|
+
readonly modelName: "gemini-1.5-flash";
|
|
767
|
+
readonly inputPrice: number;
|
|
768
|
+
readonly outputPrice: number;
|
|
769
|
+
readonly requestPrice: 0;
|
|
770
|
+
readonly contextSize: 1000000;
|
|
771
|
+
readonly maxOutput: undefined;
|
|
772
|
+
readonly reasoning: true;
|
|
773
|
+
readonly streaming: true;
|
|
774
|
+
readonly vision: true;
|
|
775
|
+
readonly tools: true;
|
|
776
|
+
readonly jsonOutput: true;
|
|
777
|
+
readonly jsonOutputSchema: true;
|
|
778
|
+
readonly deactivatedAt: Date;
|
|
779
|
+
}, {
|
|
780
|
+
readonly discount: 0.2;
|
|
781
|
+
readonly providerId: "google-vertex";
|
|
782
|
+
readonly modelName: "gemini-1.5-flash";
|
|
783
|
+
readonly inputPrice: number;
|
|
784
|
+
readonly outputPrice: number;
|
|
785
|
+
readonly requestPrice: 0;
|
|
786
|
+
readonly contextSize: 1000000;
|
|
787
|
+
readonly maxOutput: undefined;
|
|
788
|
+
readonly reasoning: true;
|
|
789
|
+
readonly streaming: true;
|
|
790
|
+
readonly vision: true;
|
|
791
|
+
readonly tools: true;
|
|
792
|
+
readonly jsonOutput: true;
|
|
793
|
+
readonly jsonOutputSchema: true;
|
|
794
|
+
readonly deactivatedAt: Date;
|
|
795
|
+
}];
|
|
796
|
+
}, {
|
|
797
|
+
readonly id: "gemini-1.5-flash-8b";
|
|
798
|
+
readonly name: "Gemini 1.5 Flash 8B";
|
|
799
|
+
readonly description: "Compact 8B Gemini Flash for lightweight inference.";
|
|
800
|
+
readonly family: "google";
|
|
801
|
+
readonly releasedAt: Date;
|
|
802
|
+
readonly providers: [{
|
|
803
|
+
readonly discount: 0.2;
|
|
804
|
+
readonly providerId: "google-ai-studio";
|
|
805
|
+
readonly modelName: "gemini-1.5-flash-8b";
|
|
806
|
+
readonly inputPrice: number;
|
|
807
|
+
readonly outputPrice: number;
|
|
808
|
+
readonly requestPrice: 0;
|
|
809
|
+
readonly contextSize: 1000000;
|
|
810
|
+
readonly maxOutput: undefined;
|
|
811
|
+
readonly reasoning: true;
|
|
812
|
+
readonly streaming: true;
|
|
813
|
+
readonly vision: false;
|
|
814
|
+
readonly tools: true;
|
|
815
|
+
readonly jsonOutput: true;
|
|
816
|
+
readonly jsonOutputSchema: true;
|
|
817
|
+
readonly deactivatedAt: Date;
|
|
818
|
+
}, {
|
|
819
|
+
readonly discount: 0.2;
|
|
820
|
+
readonly providerId: "google-vertex";
|
|
821
|
+
readonly modelName: "gemini-1.5-flash-8b";
|
|
822
|
+
readonly inputPrice: number;
|
|
823
|
+
readonly outputPrice: number;
|
|
824
|
+
readonly requestPrice: 0;
|
|
825
|
+
readonly contextSize: 1000000;
|
|
826
|
+
readonly maxOutput: undefined;
|
|
827
|
+
readonly reasoning: true;
|
|
828
|
+
readonly streaming: true;
|
|
829
|
+
readonly vision: false;
|
|
830
|
+
readonly tools: true;
|
|
831
|
+
readonly jsonOutput: true;
|
|
832
|
+
readonly jsonOutputSchema: true;
|
|
833
|
+
readonly deactivatedAt: Date;
|
|
834
|
+
}];
|
|
835
|
+
}, {
|
|
836
|
+
readonly id: "gemini-2.0-flash-lite";
|
|
837
|
+
readonly name: "Gemini 2.0 Flash Lite";
|
|
838
|
+
readonly description: "Efficient Gemini 2.0 variant for cost-effective processing.";
|
|
839
|
+
readonly family: "google";
|
|
840
|
+
readonly releasedAt: Date;
|
|
841
|
+
readonly providers: [{
|
|
842
|
+
readonly discount: 0.2;
|
|
843
|
+
readonly providerId: "google-ai-studio";
|
|
844
|
+
readonly modelName: "gemini-2.0-flash-lite";
|
|
845
|
+
readonly inputPrice: number;
|
|
846
|
+
readonly outputPrice: number;
|
|
847
|
+
readonly requestPrice: 0;
|
|
848
|
+
readonly contextSize: 1000000;
|
|
849
|
+
readonly maxOutput: undefined;
|
|
850
|
+
readonly streaming: true;
|
|
851
|
+
readonly vision: false;
|
|
852
|
+
readonly tools: true;
|
|
853
|
+
readonly jsonOutput: true;
|
|
854
|
+
readonly jsonOutputSchema: true;
|
|
855
|
+
}, {
|
|
856
|
+
readonly discount: 0.2;
|
|
857
|
+
readonly providerId: "google-vertex";
|
|
858
|
+
readonly modelName: "gemini-2.0-flash-lite";
|
|
859
|
+
readonly inputPrice: number;
|
|
860
|
+
readonly outputPrice: number;
|
|
861
|
+
readonly requestPrice: 0;
|
|
862
|
+
readonly contextSize: 1000000;
|
|
863
|
+
readonly maxOutput: undefined;
|
|
864
|
+
readonly streaming: true;
|
|
865
|
+
readonly vision: false;
|
|
866
|
+
readonly tools: true;
|
|
867
|
+
readonly jsonOutput: true;
|
|
868
|
+
readonly jsonOutputSchema: true;
|
|
869
|
+
}];
|
|
870
|
+
}, {
|
|
871
|
+
readonly id: "gemini-2.0-flash";
|
|
872
|
+
readonly name: "Gemini 2.0 Flash";
|
|
873
|
+
readonly description: "Gemini 2.0 Flash with balanced speed and capability.";
|
|
874
|
+
readonly family: "google";
|
|
875
|
+
readonly releasedAt: Date;
|
|
876
|
+
readonly providers: [{
|
|
877
|
+
readonly discount: 0.2;
|
|
878
|
+
readonly providerId: "google-ai-studio";
|
|
879
|
+
readonly modelName: "gemini-2.0-flash";
|
|
880
|
+
readonly inputPrice: number;
|
|
881
|
+
readonly outputPrice: number;
|
|
882
|
+
readonly requestPrice: 0;
|
|
883
|
+
readonly contextSize: 1000000;
|
|
884
|
+
readonly maxOutput: undefined;
|
|
885
|
+
readonly streaming: true;
|
|
886
|
+
readonly vision: false;
|
|
887
|
+
readonly tools: true;
|
|
888
|
+
readonly jsonOutput: true;
|
|
889
|
+
readonly jsonOutputSchema: true;
|
|
890
|
+
}, {
|
|
891
|
+
readonly discount: 0.2;
|
|
892
|
+
readonly providerId: "google-vertex";
|
|
893
|
+
readonly modelName: "gemini-2.0-flash";
|
|
894
|
+
readonly inputPrice: number;
|
|
895
|
+
readonly outputPrice: number;
|
|
896
|
+
readonly requestPrice: 0;
|
|
897
|
+
readonly contextSize: 1000000;
|
|
898
|
+
readonly maxOutput: undefined;
|
|
899
|
+
readonly streaming: true;
|
|
900
|
+
readonly vision: false;
|
|
901
|
+
readonly tools: true;
|
|
902
|
+
readonly jsonOutput: true;
|
|
903
|
+
readonly jsonOutputSchema: true;
|
|
904
|
+
}];
|
|
905
|
+
}, {
|
|
906
|
+
readonly id: "gemma-3n-e2b-it";
|
|
907
|
+
readonly name: "Gemma 3n E2B IT";
|
|
908
|
+
readonly description: "Compact Gemma 3N instruction-tuned model (2B effective).";
|
|
909
|
+
readonly family: "google";
|
|
910
|
+
readonly releasedAt: Date;
|
|
911
|
+
readonly providers: [{
|
|
912
|
+
readonly discount: 0.2;
|
|
913
|
+
readonly providerId: "google-ai-studio";
|
|
914
|
+
readonly modelName: "gemma-3n-e2b-it";
|
|
915
|
+
readonly inputPrice: number;
|
|
916
|
+
readonly outputPrice: number;
|
|
917
|
+
readonly requestPrice: 0;
|
|
918
|
+
readonly contextSize: 1000000;
|
|
919
|
+
readonly maxOutput: undefined;
|
|
920
|
+
readonly streaming: true;
|
|
921
|
+
readonly vision: false;
|
|
922
|
+
readonly tools: false;
|
|
923
|
+
readonly jsonOutput: false;
|
|
924
|
+
}];
|
|
925
|
+
}, {
|
|
926
|
+
readonly id: "gemma-3n-e4b-it";
|
|
927
|
+
readonly name: "Gemma 3n E4B IT";
|
|
928
|
+
readonly description: "Gemma 3N instruction-tuned model (4B effective).";
|
|
929
|
+
readonly family: "google";
|
|
930
|
+
readonly releasedAt: Date;
|
|
931
|
+
readonly providers: [{
|
|
932
|
+
readonly discount: 0.2;
|
|
933
|
+
readonly providerId: "google-ai-studio";
|
|
934
|
+
readonly modelName: "gemma-3n-e4b-it";
|
|
935
|
+
readonly inputPrice: number;
|
|
936
|
+
readonly outputPrice: number;
|
|
937
|
+
readonly requestPrice: 0;
|
|
938
|
+
readonly contextSize: 1000000;
|
|
939
|
+
readonly maxOutput: undefined;
|
|
940
|
+
readonly streaming: true;
|
|
941
|
+
readonly vision: false;
|
|
942
|
+
readonly tools: false;
|
|
943
|
+
readonly jsonOutput: false;
|
|
944
|
+
}];
|
|
945
|
+
}, {
|
|
946
|
+
readonly id: "gemma-3-1b-it";
|
|
947
|
+
readonly name: "Gemma 3 1B IT";
|
|
948
|
+
readonly description: "Tiny 1B Gemma 3 model for edge deployment.";
|
|
949
|
+
readonly family: "google";
|
|
950
|
+
readonly releasedAt: Date;
|
|
951
|
+
readonly providers: [{
|
|
952
|
+
readonly discount: 0.2;
|
|
953
|
+
readonly providerId: "google-ai-studio";
|
|
954
|
+
readonly modelName: "gemma-3-1b-it";
|
|
955
|
+
readonly inputPrice: number;
|
|
956
|
+
readonly outputPrice: number;
|
|
957
|
+
readonly requestPrice: 0;
|
|
958
|
+
readonly contextSize: 1000000;
|
|
959
|
+
readonly maxOutput: undefined;
|
|
960
|
+
readonly streaming: true;
|
|
961
|
+
readonly vision: false;
|
|
962
|
+
readonly tools: false;
|
|
963
|
+
readonly jsonOutput: false;
|
|
964
|
+
}];
|
|
965
|
+
}, {
|
|
966
|
+
readonly id: "gemma-3-4b-it";
|
|
967
|
+
readonly name: "Gemma 3 4B IT";
|
|
968
|
+
readonly description: "Small 4B Gemma 3 model for efficient inference.";
|
|
969
|
+
readonly family: "google";
|
|
970
|
+
readonly releasedAt: Date;
|
|
971
|
+
readonly providers: [{
|
|
972
|
+
readonly discount: 0.2;
|
|
973
|
+
readonly providerId: "google-ai-studio";
|
|
974
|
+
readonly modelName: "gemma-3-4b-it";
|
|
975
|
+
readonly inputPrice: number;
|
|
976
|
+
readonly outputPrice: number;
|
|
977
|
+
readonly requestPrice: 0;
|
|
978
|
+
readonly contextSize: 1000000;
|
|
979
|
+
readonly maxOutput: undefined;
|
|
980
|
+
readonly streaming: true;
|
|
981
|
+
readonly vision: false;
|
|
982
|
+
readonly tools: false;
|
|
983
|
+
readonly jsonOutput: false;
|
|
984
|
+
}];
|
|
985
|
+
}, {
|
|
986
|
+
readonly id: "gemma-3-12b-it";
|
|
987
|
+
readonly name: "Gemma 3 12B IT";
|
|
988
|
+
readonly description: "Medium 12B Gemma 3 model balancing size and capability.";
|
|
989
|
+
readonly family: "google";
|
|
990
|
+
readonly releasedAt: Date;
|
|
991
|
+
readonly providers: [{
|
|
992
|
+
readonly discount: 0.2;
|
|
993
|
+
readonly providerId: "google-ai-studio";
|
|
994
|
+
readonly modelName: "gemma-3-12b-it";
|
|
995
|
+
readonly inputPrice: number;
|
|
996
|
+
readonly outputPrice: number;
|
|
997
|
+
readonly requestPrice: 0;
|
|
998
|
+
readonly contextSize: 1000000;
|
|
999
|
+
readonly maxOutput: undefined;
|
|
1000
|
+
readonly streaming: true;
|
|
1001
|
+
readonly vision: false;
|
|
1002
|
+
readonly tools: false;
|
|
1003
|
+
readonly jsonOutput: false;
|
|
1004
|
+
}];
|
|
1005
|
+
}, {
|
|
1006
|
+
readonly id: "gemma2-9b-it";
|
|
1007
|
+
readonly name: "Gemma2 9B IT";
|
|
1008
|
+
readonly description: "Gemma 2 9B instruction model via Groq inference.";
|
|
1009
|
+
readonly family: "google";
|
|
1010
|
+
readonly releasedAt: Date;
|
|
1011
|
+
readonly providers: [{
|
|
1012
|
+
readonly providerId: "groq";
|
|
1013
|
+
readonly modelName: "gemma2-9b-it";
|
|
1014
|
+
readonly inputPrice: number;
|
|
1015
|
+
readonly outputPrice: number;
|
|
1016
|
+
readonly requestPrice: 0;
|
|
1017
|
+
readonly contextSize: 8129;
|
|
1018
|
+
readonly maxOutput: undefined;
|
|
1019
|
+
readonly streaming: true;
|
|
1020
|
+
readonly vision: false;
|
|
1021
|
+
readonly tools: true;
|
|
1022
|
+
readonly stability: "unstable";
|
|
1023
|
+
readonly jsonOutput: false;
|
|
1024
|
+
readonly deactivatedAt: Date;
|
|
1025
|
+
}];
|
|
1026
|
+
}, {
|
|
1027
|
+
readonly id: "gemma-3-27b";
|
|
1028
|
+
readonly name: "Gemma 3 27B";
|
|
1029
|
+
readonly description: "Large 27B Gemma 3 model with vision support.";
|
|
1030
|
+
readonly family: "google";
|
|
1031
|
+
readonly releasedAt: Date;
|
|
1032
|
+
readonly providers: [{
|
|
1033
|
+
readonly providerId: "nebius";
|
|
1034
|
+
readonly modelName: "google/gemma-3-27b-it";
|
|
1035
|
+
readonly inputPrice: number;
|
|
1036
|
+
readonly outputPrice: number;
|
|
1037
|
+
readonly requestPrice: 0;
|
|
1038
|
+
readonly contextSize: 128000;
|
|
1039
|
+
readonly maxOutput: undefined;
|
|
1040
|
+
readonly streaming: true;
|
|
1041
|
+
readonly vision: true;
|
|
1042
|
+
readonly tools: false;
|
|
1043
|
+
readonly jsonOutput: false;
|
|
1044
|
+
}];
|
|
1045
|
+
}, {
|
|
1046
|
+
readonly id: "gemma-2-27b-it-together";
|
|
1047
|
+
readonly name: "Gemma 2 27B IT";
|
|
1048
|
+
readonly description: "Gemma 2 27B via Together AI inference.";
|
|
1049
|
+
readonly family: "google";
|
|
1050
|
+
readonly releasedAt: Date;
|
|
1051
|
+
readonly providers: [{
|
|
1052
|
+
readonly test: "skip";
|
|
1053
|
+
readonly providerId: "together.ai";
|
|
1054
|
+
readonly modelName: "google/gemma-2-27b-it";
|
|
1055
|
+
readonly inputPrice: number;
|
|
1056
|
+
readonly outputPrice: number;
|
|
1057
|
+
readonly requestPrice: 0;
|
|
1058
|
+
readonly contextSize: 8192;
|
|
1059
|
+
readonly maxOutput: undefined;
|
|
1060
|
+
readonly streaming: true;
|
|
1061
|
+
readonly vision: false;
|
|
1062
|
+
readonly tools: false;
|
|
1063
|
+
readonly jsonOutput: false;
|
|
1064
|
+
}];
|
|
1065
|
+
}];
|