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