@aeye/models 0.1.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.
Files changed (74) hide show
  1. package/ReplicateScrape.md +54 -0
  2. package/dist/scripts/codegen.d.ts +21 -0
  3. package/dist/scripts/codegen.d.ts.map +1 -0
  4. package/dist/scripts/codegen.js +102 -0
  5. package/dist/scripts/codegen.js.map +1 -0
  6. package/dist/scripts/scrape.d.ts +19 -0
  7. package/dist/scripts/scrape.d.ts.map +1 -0
  8. package/dist/scripts/scrape.js +146 -0
  9. package/dist/scripts/scrape.js.map +1 -0
  10. package/dist/scripts/scrapers/__tests__/aws.test.d.ts +8 -0
  11. package/dist/scripts/scrapers/__tests__/aws.test.d.ts.map +1 -0
  12. package/dist/scripts/scrapers/__tests__/aws.test.js +73 -0
  13. package/dist/scripts/scrapers/__tests__/aws.test.js.map +1 -0
  14. package/dist/scripts/scrapers/aws.d.ts +12 -0
  15. package/dist/scripts/scrapers/aws.d.ts.map +1 -0
  16. package/dist/scripts/scrapers/aws.js +314 -0
  17. package/dist/scripts/scrapers/aws.js.map +1 -0
  18. package/dist/scripts/scrapers/openai.d.ts +12 -0
  19. package/dist/scripts/scrapers/openai.d.ts.map +1 -0
  20. package/dist/scripts/scrapers/openai.js +490 -0
  21. package/dist/scripts/scrapers/openai.js.map +1 -0
  22. package/dist/scripts/scrapers/openrouter.d.ts +13 -0
  23. package/dist/scripts/scrapers/openrouter.d.ts.map +1 -0
  24. package/dist/scripts/scrapers/openrouter.js +156 -0
  25. package/dist/scripts/scrapers/openrouter.js.map +1 -0
  26. package/dist/scripts/scrapers/replicate.d.ts +12 -0
  27. package/dist/scripts/scrapers/replicate.d.ts.map +1 -0
  28. package/dist/scripts/scrapers/replicate.js +305 -0
  29. package/dist/scripts/scrapers/replicate.js.map +1 -0
  30. package/dist/src/index.d.ts +11 -0
  31. package/dist/src/index.d.ts.map +1 -0
  32. package/dist/src/index.js +11 -0
  33. package/dist/src/index.js.map +1 -0
  34. package/dist/src/models/aws.d.ts +11 -0
  35. package/dist/src/models/aws.d.ts.map +1 -0
  36. package/dist/src/models/aws.js +2632 -0
  37. package/dist/src/models/aws.js.map +1 -0
  38. package/dist/src/models/index.d.ts +15 -0
  39. package/dist/src/models/index.d.ts.map +1 -0
  40. package/dist/src/models/index.js +18 -0
  41. package/dist/src/models/index.js.map +1 -0
  42. package/dist/src/models/openai.d.ts +11 -0
  43. package/dist/src/models/openai.d.ts.map +1 -0
  44. package/dist/src/models/openai.js +2207 -0
  45. package/dist/src/models/openai.js.map +1 -0
  46. package/dist/src/models/openrouter.d.ts +11 -0
  47. package/dist/src/models/openrouter.d.ts.map +1 -0
  48. package/dist/src/models/openrouter.js +9786 -0
  49. package/dist/src/models/openrouter.js.map +1 -0
  50. package/dist/src/models/replicate.d.ts +11 -0
  51. package/dist/src/models/replicate.d.ts.map +1 -0
  52. package/dist/src/models/replicate.js +4106 -0
  53. package/dist/src/models/replicate.js.map +1 -0
  54. package/dist/src/transformers/index.d.ts +23 -0
  55. package/dist/src/transformers/index.d.ts.map +1 -0
  56. package/dist/src/transformers/index.js +24 -0
  57. package/dist/src/transformers/index.js.map +1 -0
  58. package/package.json +50 -0
  59. package/scripts/codegen.ts +117 -0
  60. package/scripts/scrape.ts +182 -0
  61. package/scripts/scrapers/__tests__/aws.test.ts +86 -0
  62. package/scripts/scrapers/aws.ts +370 -0
  63. package/scripts/scrapers/openai.ts +619 -0
  64. package/scripts/scrapers/openrouter.ts +214 -0
  65. package/scripts/scrapers/replicate.ts +448 -0
  66. package/scripts/tsconfig.json +24 -0
  67. package/src/index.ts +11 -0
  68. package/src/models/aws.ts +2634 -0
  69. package/src/models/index.ts +21 -0
  70. package/src/models/openai.ts +2209 -0
  71. package/src/models/openrouter.ts +9788 -0
  72. package/src/models/replicate.ts +4108 -0
  73. package/src/transformers/index.ts +26 -0
  74. package/tsconfig.json +14 -0
@@ -0,0 +1,2632 @@
1
+ /**
2
+ * Generated model data
3
+ *
4
+ * This file is auto-generated by the scraper scripts.
5
+ * Do not edit manually - your changes will be overwritten.
6
+ *
7
+ * To regenerate, run: npm run scrape
8
+ */
9
+ export const awsModels = [{
10
+ id: 'stability.stable-fast-upscale-v1:0',
11
+ provider: 'aws',
12
+ name: 'Stable Image Fast Upscale',
13
+ contextWindow: 0,
14
+ tier: 'efficient',
15
+ capabilities: new Set(['image']),
16
+ pricing: {},
17
+ metadata: {
18
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-fast-upscale-v1:0",
19
+ providerName: "Stability AI",
20
+ responseStreamingSupported: false,
21
+ customizationsSupported: [],
22
+ inferenceTypesSupported: [
23
+ "INFERENCE_PROFILE"
24
+ ],
25
+ inputModalities: [
26
+ "TEXT",
27
+ "IMAGE"
28
+ ],
29
+ outputModalities: [
30
+ "IMAGE"
31
+ ]
32
+ }
33
+ }, {
34
+ id: 'anthropic.claude-sonnet-4-20250514-v1:0',
35
+ provider: 'aws',
36
+ name: 'Claude Sonnet 4',
37
+ contextWindow: 0,
38
+ tier: 'efficient',
39
+ capabilities: new Set(['chat', 'streaming', 'vision']),
40
+ pricing: {},
41
+ metadata: {
42
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-sonnet-4-20250514-v1:0",
43
+ providerName: "Anthropic",
44
+ responseStreamingSupported: true,
45
+ customizationsSupported: [],
46
+ inferenceTypesSupported: [
47
+ "INFERENCE_PROFILE"
48
+ ],
49
+ inputModalities: [
50
+ "TEXT",
51
+ "IMAGE"
52
+ ],
53
+ outputModalities: [
54
+ "TEXT"
55
+ ]
56
+ }
57
+ }, {
58
+ id: 'anthropic.claude-haiku-4-5-20251001-v1:0',
59
+ provider: 'aws',
60
+ name: 'Claude Haiku 4.5',
61
+ contextWindow: 0,
62
+ tier: 'efficient',
63
+ capabilities: new Set(['chat', 'streaming', 'vision']),
64
+ pricing: {},
65
+ metadata: {
66
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-haiku-4-5-20251001-v1:0",
67
+ providerName: "Anthropic",
68
+ responseStreamingSupported: true,
69
+ customizationsSupported: [],
70
+ inferenceTypesSupported: [
71
+ "INFERENCE_PROFILE"
72
+ ],
73
+ inputModalities: [
74
+ "TEXT",
75
+ "IMAGE"
76
+ ],
77
+ outputModalities: [
78
+ "TEXT"
79
+ ]
80
+ }
81
+ }, {
82
+ id: 'stability.stable-image-erase-object-v1:0',
83
+ provider: 'aws',
84
+ name: 'Stable Image Erase Object',
85
+ contextWindow: 0,
86
+ tier: 'efficient',
87
+ capabilities: new Set(['image']),
88
+ pricing: {},
89
+ metadata: {
90
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-image-erase-object-v1:0",
91
+ providerName: "Stability AI",
92
+ responseStreamingSupported: false,
93
+ customizationsSupported: [],
94
+ inferenceTypesSupported: [
95
+ "INFERENCE_PROFILE"
96
+ ],
97
+ inputModalities: [
98
+ "TEXT",
99
+ "IMAGE"
100
+ ],
101
+ outputModalities: [
102
+ "IMAGE"
103
+ ]
104
+ }
105
+ }, {
106
+ id: 'stability.stable-image-control-structure-v1:0',
107
+ provider: 'aws',
108
+ name: 'Stable Image Control Structure',
109
+ contextWindow: 0,
110
+ tier: 'efficient',
111
+ capabilities: new Set(['image']),
112
+ pricing: {},
113
+ metadata: {
114
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-image-control-structure-v1:0",
115
+ providerName: "Stability AI",
116
+ responseStreamingSupported: false,
117
+ customizationsSupported: [],
118
+ inferenceTypesSupported: [
119
+ "INFERENCE_PROFILE"
120
+ ],
121
+ inputModalities: [
122
+ "TEXT",
123
+ "IMAGE"
124
+ ],
125
+ outputModalities: [
126
+ "IMAGE"
127
+ ]
128
+ }
129
+ }, {
130
+ id: 'openai.gpt-oss-120b-1:0',
131
+ provider: 'aws',
132
+ name: 'gpt-oss-120b',
133
+ contextWindow: 0,
134
+ tier: 'efficient',
135
+ capabilities: new Set([]),
136
+ pricing: {},
137
+ metadata: {
138
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/openai.gpt-oss-120b-1:0",
139
+ providerName: "OpenAI",
140
+ responseStreamingSupported: true,
141
+ customizationsSupported: [],
142
+ inferenceTypesSupported: [
143
+ "ON_DEMAND"
144
+ ],
145
+ inputModalities: [
146
+ "TEXT"
147
+ ],
148
+ outputModalities: [
149
+ "TEXT"
150
+ ]
151
+ }
152
+ }, {
153
+ id: 'twelvelabs.marengo-embed-3-0-v1:0',
154
+ provider: 'aws',
155
+ name: 'Marengo Embed 3.0',
156
+ contextWindow: 0,
157
+ tier: 'efficient',
158
+ capabilities: new Set([]),
159
+ pricing: {},
160
+ metadata: {
161
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/twelvelabs.marengo-embed-3-0-v1:0",
162
+ providerName: "TwelveLabs",
163
+ responseStreamingSupported: false,
164
+ customizationsSupported: [],
165
+ inferenceTypesSupported: [
166
+ "INFERENCE_PROFILE",
167
+ "ON_DEMAND"
168
+ ],
169
+ inputModalities: [
170
+ "TEXT",
171
+ "IMAGE",
172
+ "SPEECH",
173
+ "VIDEO"
174
+ ],
175
+ outputModalities: [
176
+ "EMBEDDING"
177
+ ]
178
+ }
179
+ }, {
180
+ id: 'anthropic.claude-sonnet-4-5-20250929-v1:0',
181
+ provider: 'aws',
182
+ name: 'Claude Sonnet 4.5',
183
+ contextWindow: 0,
184
+ tier: 'efficient',
185
+ capabilities: new Set(['chat', 'streaming', 'vision']),
186
+ pricing: {},
187
+ metadata: {
188
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-sonnet-4-5-20250929-v1:0",
189
+ providerName: "Anthropic",
190
+ responseStreamingSupported: true,
191
+ customizationsSupported: [],
192
+ inferenceTypesSupported: [
193
+ "INFERENCE_PROFILE"
194
+ ],
195
+ inputModalities: [
196
+ "TEXT",
197
+ "IMAGE"
198
+ ],
199
+ outputModalities: [
200
+ "TEXT"
201
+ ]
202
+ }
203
+ }, {
204
+ id: 'twelvelabs.marengo-embed-2-7-v1:0',
205
+ provider: 'aws',
206
+ name: 'Marengo Embed v2.7',
207
+ contextWindow: 0,
208
+ tier: 'efficient',
209
+ capabilities: new Set([]),
210
+ pricing: {},
211
+ metadata: {
212
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/twelvelabs.marengo-embed-2-7-v1:0",
213
+ providerName: "TwelveLabs",
214
+ responseStreamingSupported: false,
215
+ customizationsSupported: [],
216
+ inferenceTypesSupported: [
217
+ "INFERENCE_PROFILE"
218
+ ],
219
+ inputModalities: [
220
+ "TEXT",
221
+ "IMAGE",
222
+ "SPEECH",
223
+ "VIDEO"
224
+ ],
225
+ outputModalities: [
226
+ "EMBEDDING"
227
+ ]
228
+ }
229
+ }, {
230
+ id: 'stability.stable-creative-upscale-v1:0',
231
+ provider: 'aws',
232
+ name: 'Stable Image Creative Upscale',
233
+ contextWindow: 0,
234
+ tier: 'efficient',
235
+ capabilities: new Set(['image']),
236
+ pricing: {},
237
+ metadata: {
238
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-creative-upscale-v1:0",
239
+ providerName: "Stability AI",
240
+ responseStreamingSupported: false,
241
+ customizationsSupported: [],
242
+ inferenceTypesSupported: [
243
+ "INFERENCE_PROFILE"
244
+ ],
245
+ inputModalities: [
246
+ "TEXT",
247
+ "IMAGE"
248
+ ],
249
+ outputModalities: [
250
+ "IMAGE"
251
+ ]
252
+ }
253
+ }, {
254
+ id: 'amazon.nova-2-multimodal-embeddings-v1:0',
255
+ provider: 'aws',
256
+ name: 'Amazon Nova Multimodal Embeddings',
257
+ contextWindow: 0,
258
+ tier: 'efficient',
259
+ capabilities: new Set(['embedding']),
260
+ pricing: {},
261
+ metadata: {
262
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-2-multimodal-embeddings-v1:0",
263
+ providerName: "Amazon",
264
+ responseStreamingSupported: false,
265
+ customizationsSupported: [],
266
+ inferenceTypesSupported: [
267
+ "ON_DEMAND"
268
+ ],
269
+ inputModalities: [
270
+ "TEXT",
271
+ "IMAGE",
272
+ "AUDIO",
273
+ "VIDEO"
274
+ ],
275
+ outputModalities: [
276
+ "EMBEDDING"
277
+ ]
278
+ }
279
+ }, {
280
+ id: 'stability.stable-outpaint-v1:0',
281
+ provider: 'aws',
282
+ name: 'Stable Image Outpaint',
283
+ contextWindow: 0,
284
+ tier: 'efficient',
285
+ capabilities: new Set(['image']),
286
+ pricing: {},
287
+ metadata: {
288
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-outpaint-v1:0",
289
+ providerName: "Stability AI",
290
+ responseStreamingSupported: false,
291
+ customizationsSupported: [],
292
+ inferenceTypesSupported: [
293
+ "INFERENCE_PROFILE"
294
+ ],
295
+ inputModalities: [
296
+ "TEXT",
297
+ "IMAGE"
298
+ ],
299
+ outputModalities: [
300
+ "IMAGE"
301
+ ]
302
+ }
303
+ }, {
304
+ id: 'stability.stable-image-inpaint-v1:0',
305
+ provider: 'aws',
306
+ name: 'Stable Image Inpaint',
307
+ contextWindow: 0,
308
+ tier: 'efficient',
309
+ capabilities: new Set(['image']),
310
+ pricing: {},
311
+ metadata: {
312
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-image-inpaint-v1:0",
313
+ providerName: "Stability AI",
314
+ responseStreamingSupported: false,
315
+ customizationsSupported: [],
316
+ inferenceTypesSupported: [
317
+ "INFERENCE_PROFILE"
318
+ ],
319
+ inputModalities: [
320
+ "TEXT",
321
+ "IMAGE"
322
+ ],
323
+ outputModalities: [
324
+ "IMAGE"
325
+ ]
326
+ }
327
+ }, {
328
+ id: 'anthropic.claude-opus-4-1-20250805-v1:0',
329
+ provider: 'aws',
330
+ name: 'Claude Opus 4.1',
331
+ contextWindow: 0,
332
+ tier: 'flagship',
333
+ capabilities: new Set(['chat', 'streaming', 'vision']),
334
+ pricing: {},
335
+ metadata: {
336
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-opus-4-1-20250805-v1:0",
337
+ providerName: "Anthropic",
338
+ responseStreamingSupported: true,
339
+ customizationsSupported: [],
340
+ inferenceTypesSupported: [
341
+ "INFERENCE_PROFILE"
342
+ ],
343
+ inputModalities: [
344
+ "TEXT",
345
+ "IMAGE"
346
+ ],
347
+ outputModalities: [
348
+ "TEXT"
349
+ ]
350
+ }
351
+ }, {
352
+ id: 'amazon.nova-pro-v1:0',
353
+ provider: 'aws',
354
+ name: 'Nova Pro',
355
+ contextWindow: 0,
356
+ tier: 'efficient',
357
+ capabilities: new Set(['vision']),
358
+ pricing: {},
359
+ metadata: {
360
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-pro-v1:0",
361
+ providerName: "Amazon",
362
+ responseStreamingSupported: true,
363
+ customizationsSupported: [],
364
+ inferenceTypesSupported: [
365
+ "ON_DEMAND",
366
+ "INFERENCE_PROFILE"
367
+ ],
368
+ inputModalities: [
369
+ "TEXT",
370
+ "IMAGE",
371
+ "VIDEO"
372
+ ],
373
+ outputModalities: [
374
+ "TEXT"
375
+ ]
376
+ }
377
+ }, {
378
+ id: 'stability.stable-image-remove-background-v1:0',
379
+ provider: 'aws',
380
+ name: 'Stable Image Remove Background',
381
+ contextWindow: 0,
382
+ tier: 'efficient',
383
+ capabilities: new Set(['image']),
384
+ pricing: {},
385
+ metadata: {
386
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-image-remove-background-v1:0",
387
+ providerName: "Stability AI",
388
+ responseStreamingSupported: false,
389
+ customizationsSupported: [],
390
+ inferenceTypesSupported: [
391
+ "INFERENCE_PROFILE"
392
+ ],
393
+ inputModalities: [
394
+ "TEXT",
395
+ "IMAGE"
396
+ ],
397
+ outputModalities: [
398
+ "IMAGE"
399
+ ]
400
+ }
401
+ }, {
402
+ id: 'stability.stable-image-style-guide-v1:0',
403
+ provider: 'aws',
404
+ name: 'Stable Image Style Guide',
405
+ contextWindow: 0,
406
+ tier: 'efficient',
407
+ capabilities: new Set(['image']),
408
+ pricing: {},
409
+ metadata: {
410
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-image-style-guide-v1:0",
411
+ providerName: "Stability AI",
412
+ responseStreamingSupported: false,
413
+ customizationsSupported: [],
414
+ inferenceTypesSupported: [
415
+ "INFERENCE_PROFILE"
416
+ ],
417
+ inputModalities: [
418
+ "TEXT",
419
+ "IMAGE"
420
+ ],
421
+ outputModalities: [
422
+ "IMAGE"
423
+ ]
424
+ }
425
+ }, {
426
+ id: 'stability.stable-image-control-sketch-v1:0',
427
+ provider: 'aws',
428
+ name: 'Stable Image Control Sketch',
429
+ contextWindow: 0,
430
+ tier: 'efficient',
431
+ capabilities: new Set(['image']),
432
+ pricing: {},
433
+ metadata: {
434
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-image-control-sketch-v1:0",
435
+ providerName: "Stability AI",
436
+ responseStreamingSupported: false,
437
+ customizationsSupported: [],
438
+ inferenceTypesSupported: [
439
+ "INFERENCE_PROFILE"
440
+ ],
441
+ inputModalities: [
442
+ "TEXT",
443
+ "IMAGE"
444
+ ],
445
+ outputModalities: [
446
+ "IMAGE"
447
+ ]
448
+ }
449
+ }, {
450
+ id: 'stability.stable-conservative-upscale-v1:0',
451
+ provider: 'aws',
452
+ name: 'Stable Image Conservative Upscale',
453
+ contextWindow: 0,
454
+ tier: 'efficient',
455
+ capabilities: new Set(['image']),
456
+ pricing: {},
457
+ metadata: {
458
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-conservative-upscale-v1:0",
459
+ providerName: "Stability AI",
460
+ responseStreamingSupported: false,
461
+ customizationsSupported: [],
462
+ inferenceTypesSupported: [
463
+ "INFERENCE_PROFILE"
464
+ ],
465
+ inputModalities: [
466
+ "TEXT",
467
+ "IMAGE"
468
+ ],
469
+ outputModalities: [
470
+ "IMAGE"
471
+ ]
472
+ }
473
+ }, {
474
+ id: 'stability.stable-image-search-recolor-v1:0',
475
+ provider: 'aws',
476
+ name: 'Stable Image Search and Recolor',
477
+ contextWindow: 0,
478
+ tier: 'efficient',
479
+ capabilities: new Set(['image']),
480
+ pricing: {},
481
+ metadata: {
482
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-image-search-recolor-v1:0",
483
+ providerName: "Stability AI",
484
+ responseStreamingSupported: false,
485
+ customizationsSupported: [],
486
+ inferenceTypesSupported: [
487
+ "INFERENCE_PROFILE"
488
+ ],
489
+ inputModalities: [
490
+ "TEXT",
491
+ "IMAGE"
492
+ ],
493
+ outputModalities: [
494
+ "IMAGE"
495
+ ]
496
+ }
497
+ }, {
498
+ id: 'twelvelabs.pegasus-1-2-v1:0',
499
+ provider: 'aws',
500
+ name: 'Pegasus v1.2',
501
+ contextWindow: 0,
502
+ tier: 'efficient',
503
+ capabilities: new Set([]),
504
+ pricing: {},
505
+ metadata: {
506
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/twelvelabs.pegasus-1-2-v1:0",
507
+ providerName: "TwelveLabs",
508
+ responseStreamingSupported: true,
509
+ customizationsSupported: [],
510
+ inferenceTypesSupported: [
511
+ "INFERENCE_PROFILE"
512
+ ],
513
+ inputModalities: [
514
+ "TEXT",
515
+ "VIDEO"
516
+ ],
517
+ outputModalities: [
518
+ "TEXT"
519
+ ]
520
+ }
521
+ }, {
522
+ id: 'stability.stable-style-transfer-v1:0',
523
+ provider: 'aws',
524
+ name: 'Stable Image Style Transfer',
525
+ contextWindow: 0,
526
+ tier: 'efficient',
527
+ capabilities: new Set(['image']),
528
+ pricing: {},
529
+ metadata: {
530
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-style-transfer-v1:0",
531
+ providerName: "Stability AI",
532
+ responseStreamingSupported: false,
533
+ customizationsSupported: [],
534
+ inferenceTypesSupported: [
535
+ "INFERENCE_PROFILE"
536
+ ],
537
+ inputModalities: [
538
+ "TEXT",
539
+ "IMAGE"
540
+ ],
541
+ outputModalities: [
542
+ "IMAGE"
543
+ ]
544
+ }
545
+ }, {
546
+ id: 'cohere.embed-v4:0',
547
+ provider: 'aws',
548
+ name: 'Embed v4',
549
+ contextWindow: 0,
550
+ tier: 'efficient',
551
+ capabilities: new Set(['embedding']),
552
+ pricing: {},
553
+ metadata: {
554
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/cohere.embed-v4:0",
555
+ providerName: "Cohere",
556
+ responseStreamingSupported: false,
557
+ customizationsSupported: [],
558
+ inferenceTypesSupported: [
559
+ "ON_DEMAND",
560
+ "INFERENCE_PROFILE"
561
+ ],
562
+ inputModalities: [
563
+ "TEXT",
564
+ "IMAGE"
565
+ ],
566
+ outputModalities: [
567
+ "EMBEDDING"
568
+ ]
569
+ }
570
+ }, {
571
+ id: 'stability.stable-image-search-replace-v1:0',
572
+ provider: 'aws',
573
+ name: 'Stable Image Search and Replace',
574
+ contextWindow: 0,
575
+ tier: 'efficient',
576
+ capabilities: new Set(['image']),
577
+ pricing: {},
578
+ metadata: {
579
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/stability.stable-image-search-replace-v1:0",
580
+ providerName: "Stability AI",
581
+ responseStreamingSupported: false,
582
+ customizationsSupported: [],
583
+ inferenceTypesSupported: [
584
+ "INFERENCE_PROFILE"
585
+ ],
586
+ inputModalities: [
587
+ "TEXT",
588
+ "IMAGE"
589
+ ],
590
+ outputModalities: [
591
+ "IMAGE"
592
+ ]
593
+ }
594
+ }, {
595
+ id: 'qwen.qwen3-coder-30b-a3b-v1:0',
596
+ provider: 'aws',
597
+ name: 'Qwen3-Coder-30B-A3B-Instruct',
598
+ contextWindow: 0,
599
+ tier: 'efficient',
600
+ capabilities: new Set([]),
601
+ pricing: {},
602
+ metadata: {
603
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/qwen.qwen3-coder-30b-a3b-v1:0",
604
+ providerName: "Qwen",
605
+ responseStreamingSupported: true,
606
+ customizationsSupported: [],
607
+ inferenceTypesSupported: [
608
+ "ON_DEMAND"
609
+ ],
610
+ inputModalities: [
611
+ "TEXT"
612
+ ],
613
+ outputModalities: [
614
+ "TEXT"
615
+ ]
616
+ }
617
+ }, {
618
+ id: 'qwen.qwen3-32b-v1:0',
619
+ provider: 'aws',
620
+ name: 'Qwen3 32B (dense)',
621
+ contextWindow: 0,
622
+ tier: 'efficient',
623
+ capabilities: new Set([]),
624
+ pricing: {},
625
+ metadata: {
626
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/qwen.qwen3-32b-v1:0",
627
+ providerName: "Qwen",
628
+ responseStreamingSupported: true,
629
+ customizationsSupported: [],
630
+ inferenceTypesSupported: [
631
+ "ON_DEMAND"
632
+ ],
633
+ inputModalities: [
634
+ "TEXT"
635
+ ],
636
+ outputModalities: [
637
+ "TEXT"
638
+ ]
639
+ }
640
+ }, {
641
+ id: 'openai.gpt-oss-20b-1:0',
642
+ provider: 'aws',
643
+ name: 'gpt-oss-20b',
644
+ contextWindow: 0,
645
+ tier: 'efficient',
646
+ capabilities: new Set([]),
647
+ pricing: {},
648
+ metadata: {
649
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/openai.gpt-oss-20b-1:0",
650
+ providerName: "OpenAI",
651
+ responseStreamingSupported: true,
652
+ customizationsSupported: [],
653
+ inferenceTypesSupported: [
654
+ "ON_DEMAND"
655
+ ],
656
+ inputModalities: [
657
+ "TEXT"
658
+ ],
659
+ outputModalities: [
660
+ "TEXT"
661
+ ]
662
+ }
663
+ }, {
664
+ id: 'amazon.titan-tg1-large',
665
+ provider: 'aws',
666
+ name: 'Titan Text Large',
667
+ contextWindow: 0,
668
+ tier: 'efficient',
669
+ capabilities: new Set([]),
670
+ pricing: {},
671
+ metadata: {
672
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-tg1-large",
673
+ providerName: "Amazon",
674
+ responseStreamingSupported: true,
675
+ customizationsSupported: [],
676
+ inferenceTypesSupported: [
677
+ "ON_DEMAND"
678
+ ],
679
+ inputModalities: [
680
+ "TEXT"
681
+ ],
682
+ outputModalities: [
683
+ "TEXT"
684
+ ]
685
+ }
686
+ }, {
687
+ id: 'amazon.titan-image-generator-v1:0',
688
+ provider: 'aws',
689
+ name: 'Titan Image Generator G1',
690
+ contextWindow: 0,
691
+ tier: 'efficient',
692
+ capabilities: new Set(['image']),
693
+ pricing: {},
694
+ metadata: {
695
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-image-generator-v1:0",
696
+ providerName: "Amazon",
697
+ customizationsSupported: [
698
+ "FINE_TUNING"
699
+ ],
700
+ inferenceTypesSupported: [
701
+ "PROVISIONED"
702
+ ],
703
+ inputModalities: [
704
+ "TEXT",
705
+ "IMAGE"
706
+ ],
707
+ outputModalities: [
708
+ "IMAGE"
709
+ ]
710
+ }
711
+ }, {
712
+ id: 'amazon.titan-image-generator-v1',
713
+ provider: 'aws',
714
+ name: 'Titan Image Generator G1',
715
+ contextWindow: 0,
716
+ tier: 'efficient',
717
+ capabilities: new Set(['image']),
718
+ pricing: {},
719
+ metadata: {
720
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-image-generator-v1",
721
+ providerName: "Amazon",
722
+ customizationsSupported: [],
723
+ inferenceTypesSupported: [
724
+ "ON_DEMAND"
725
+ ],
726
+ inputModalities: [
727
+ "TEXT",
728
+ "IMAGE"
729
+ ],
730
+ outputModalities: [
731
+ "IMAGE"
732
+ ]
733
+ }
734
+ }, {
735
+ id: 'amazon.titan-image-generator-v2:0',
736
+ provider: 'aws',
737
+ name: 'Titan Image Generator G1 v2',
738
+ contextWindow: 0,
739
+ tier: 'efficient',
740
+ capabilities: new Set(['image']),
741
+ pricing: {},
742
+ metadata: {
743
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-image-generator-v2:0",
744
+ providerName: "Amazon",
745
+ customizationsSupported: [
746
+ "FINE_TUNING"
747
+ ],
748
+ inferenceTypesSupported: [
749
+ "PROVISIONED",
750
+ "ON_DEMAND"
751
+ ],
752
+ inputModalities: [
753
+ "TEXT",
754
+ "IMAGE"
755
+ ],
756
+ outputModalities: [
757
+ "IMAGE"
758
+ ]
759
+ }
760
+ }, {
761
+ id: 'amazon.nova-premier-v1:0:8k',
762
+ provider: 'aws',
763
+ name: 'Nova Premier',
764
+ contextWindow: 0,
765
+ tier: 'efficient',
766
+ capabilities: new Set(['vision']),
767
+ pricing: {},
768
+ metadata: {
769
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-premier-v1:0:8k",
770
+ providerName: "Amazon",
771
+ responseStreamingSupported: true,
772
+ customizationsSupported: [],
773
+ inferenceTypesSupported: [],
774
+ inputModalities: [
775
+ "TEXT",
776
+ "IMAGE",
777
+ "VIDEO"
778
+ ],
779
+ outputModalities: [
780
+ "TEXT"
781
+ ]
782
+ }
783
+ }, {
784
+ id: 'amazon.nova-premier-v1:0:20k',
785
+ provider: 'aws',
786
+ name: 'Nova Premier',
787
+ contextWindow: 0,
788
+ tier: 'efficient',
789
+ capabilities: new Set(['vision']),
790
+ pricing: {},
791
+ metadata: {
792
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-premier-v1:0:20k",
793
+ providerName: "Amazon",
794
+ responseStreamingSupported: true,
795
+ customizationsSupported: [],
796
+ inferenceTypesSupported: [],
797
+ inputModalities: [
798
+ "TEXT",
799
+ "IMAGE",
800
+ "VIDEO"
801
+ ],
802
+ outputModalities: [
803
+ "TEXT"
804
+ ]
805
+ }
806
+ }, {
807
+ id: 'amazon.nova-premier-v1:0:1000k',
808
+ provider: 'aws',
809
+ name: 'Nova Premier',
810
+ contextWindow: 0,
811
+ tier: 'efficient',
812
+ capabilities: new Set(['vision']),
813
+ pricing: {},
814
+ metadata: {
815
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-premier-v1:0:1000k",
816
+ providerName: "Amazon",
817
+ responseStreamingSupported: true,
818
+ customizationsSupported: [],
819
+ inferenceTypesSupported: [],
820
+ inputModalities: [
821
+ "TEXT",
822
+ "IMAGE",
823
+ "VIDEO"
824
+ ],
825
+ outputModalities: [
826
+ "TEXT"
827
+ ]
828
+ }
829
+ }, {
830
+ id: 'amazon.nova-premier-v1:0:mm',
831
+ provider: 'aws',
832
+ name: 'Nova Premier',
833
+ contextWindow: 0,
834
+ tier: 'efficient',
835
+ capabilities: new Set(['vision']),
836
+ pricing: {},
837
+ metadata: {
838
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-premier-v1:0:mm",
839
+ providerName: "Amazon",
840
+ responseStreamingSupported: true,
841
+ customizationsSupported: [],
842
+ inferenceTypesSupported: [],
843
+ inputModalities: [
844
+ "TEXT",
845
+ "IMAGE",
846
+ "VIDEO"
847
+ ],
848
+ outputModalities: [
849
+ "TEXT"
850
+ ]
851
+ }
852
+ }, {
853
+ id: 'amazon.nova-premier-v1:0',
854
+ provider: 'aws',
855
+ name: 'Nova Premier',
856
+ contextWindow: 0,
857
+ tier: 'efficient',
858
+ capabilities: new Set(['vision']),
859
+ pricing: {},
860
+ metadata: {
861
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-premier-v1:0",
862
+ providerName: "Amazon",
863
+ responseStreamingSupported: true,
864
+ customizationsSupported: [],
865
+ inferenceTypesSupported: [
866
+ "INFERENCE_PROFILE"
867
+ ],
868
+ inputModalities: [
869
+ "TEXT",
870
+ "IMAGE",
871
+ "VIDEO"
872
+ ],
873
+ outputModalities: [
874
+ "TEXT"
875
+ ]
876
+ }
877
+ }, {
878
+ id: 'amazon.nova-pro-v1:0:24k',
879
+ provider: 'aws',
880
+ name: 'Nova Pro',
881
+ contextWindow: 0,
882
+ tier: 'efficient',
883
+ capabilities: new Set(['vision']),
884
+ pricing: {},
885
+ metadata: {
886
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-pro-v1:0:24k",
887
+ providerName: "Amazon",
888
+ responseStreamingSupported: true,
889
+ customizationsSupported: [],
890
+ inferenceTypesSupported: [
891
+ "PROVISIONED"
892
+ ],
893
+ inputModalities: [
894
+ "TEXT",
895
+ "IMAGE",
896
+ "VIDEO"
897
+ ],
898
+ outputModalities: [
899
+ "TEXT"
900
+ ]
901
+ }
902
+ }, {
903
+ id: 'amazon.nova-pro-v1:0:300k',
904
+ provider: 'aws',
905
+ name: 'Nova Pro',
906
+ contextWindow: 0,
907
+ tier: 'efficient',
908
+ capabilities: new Set(['vision']),
909
+ pricing: {},
910
+ metadata: {
911
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-pro-v1:0:300k",
912
+ providerName: "Amazon",
913
+ responseStreamingSupported: true,
914
+ customizationsSupported: [
915
+ "FINE_TUNING",
916
+ "DISTILLATION"
917
+ ],
918
+ inferenceTypesSupported: [
919
+ "PROVISIONED"
920
+ ],
921
+ inputModalities: [
922
+ "TEXT",
923
+ "IMAGE",
924
+ "VIDEO"
925
+ ],
926
+ outputModalities: [
927
+ "TEXT"
928
+ ]
929
+ }
930
+ }, {
931
+ id: 'amazon.nova-lite-v1:0:24k',
932
+ provider: 'aws',
933
+ name: 'Nova Lite',
934
+ contextWindow: 0,
935
+ tier: 'efficient',
936
+ capabilities: new Set(['vision']),
937
+ pricing: {},
938
+ metadata: {
939
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-lite-v1:0:24k",
940
+ providerName: "Amazon",
941
+ responseStreamingSupported: true,
942
+ customizationsSupported: [],
943
+ inferenceTypesSupported: [
944
+ "PROVISIONED"
945
+ ],
946
+ inputModalities: [
947
+ "TEXT",
948
+ "IMAGE",
949
+ "VIDEO"
950
+ ],
951
+ outputModalities: [
952
+ "TEXT"
953
+ ]
954
+ }
955
+ }, {
956
+ id: 'amazon.nova-lite-v1:0:300k',
957
+ provider: 'aws',
958
+ name: 'Nova Lite',
959
+ contextWindow: 0,
960
+ tier: 'efficient',
961
+ capabilities: new Set(['vision']),
962
+ pricing: {},
963
+ metadata: {
964
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-lite-v1:0:300k",
965
+ providerName: "Amazon",
966
+ responseStreamingSupported: true,
967
+ customizationsSupported: [
968
+ "FINE_TUNING",
969
+ "DISTILLATION"
970
+ ],
971
+ inferenceTypesSupported: [
972
+ "PROVISIONED"
973
+ ],
974
+ inputModalities: [
975
+ "TEXT",
976
+ "IMAGE",
977
+ "VIDEO"
978
+ ],
979
+ outputModalities: [
980
+ "TEXT"
981
+ ]
982
+ }
983
+ }, {
984
+ id: 'amazon.nova-lite-v1:0',
985
+ provider: 'aws',
986
+ name: 'Nova Lite',
987
+ contextWindow: 0,
988
+ tier: 'efficient',
989
+ capabilities: new Set(['vision']),
990
+ pricing: {},
991
+ metadata: {
992
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-lite-v1:0",
993
+ providerName: "Amazon",
994
+ responseStreamingSupported: true,
995
+ customizationsSupported: [],
996
+ inferenceTypesSupported: [
997
+ "ON_DEMAND",
998
+ "INFERENCE_PROFILE"
999
+ ],
1000
+ inputModalities: [
1001
+ "TEXT",
1002
+ "IMAGE",
1003
+ "VIDEO"
1004
+ ],
1005
+ outputModalities: [
1006
+ "TEXT"
1007
+ ]
1008
+ }
1009
+ }, {
1010
+ id: 'amazon.nova-canvas-v1:0',
1011
+ provider: 'aws',
1012
+ name: 'Nova Canvas',
1013
+ contextWindow: 0,
1014
+ tier: 'efficient',
1015
+ capabilities: new Set(['image']),
1016
+ pricing: {},
1017
+ metadata: {
1018
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-canvas-v1:0",
1019
+ providerName: "Amazon",
1020
+ responseStreamingSupported: false,
1021
+ customizationsSupported: [
1022
+ "FINE_TUNING"
1023
+ ],
1024
+ inferenceTypesSupported: [
1025
+ "ON_DEMAND",
1026
+ "PROVISIONED"
1027
+ ],
1028
+ inputModalities: [
1029
+ "TEXT",
1030
+ "IMAGE"
1031
+ ],
1032
+ outputModalities: [
1033
+ "IMAGE"
1034
+ ]
1035
+ }
1036
+ }, {
1037
+ id: 'amazon.nova-reel-v1:0',
1038
+ provider: 'aws',
1039
+ name: 'Nova Reel',
1040
+ contextWindow: 0,
1041
+ tier: 'efficient',
1042
+ capabilities: new Set([]),
1043
+ pricing: {},
1044
+ metadata: {
1045
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-reel-v1:0",
1046
+ providerName: "Amazon",
1047
+ responseStreamingSupported: false,
1048
+ customizationsSupported: [],
1049
+ inferenceTypesSupported: [
1050
+ "ON_DEMAND"
1051
+ ],
1052
+ inputModalities: [
1053
+ "TEXT",
1054
+ "IMAGE"
1055
+ ],
1056
+ outputModalities: [
1057
+ "VIDEO"
1058
+ ]
1059
+ }
1060
+ }, {
1061
+ id: 'amazon.nova-reel-v1:1',
1062
+ provider: 'aws',
1063
+ name: 'Nova Reel',
1064
+ contextWindow: 0,
1065
+ tier: 'efficient',
1066
+ capabilities: new Set([]),
1067
+ pricing: {},
1068
+ metadata: {
1069
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-reel-v1:1",
1070
+ providerName: "Amazon",
1071
+ responseStreamingSupported: false,
1072
+ customizationsSupported: [],
1073
+ inferenceTypesSupported: [
1074
+ "ON_DEMAND"
1075
+ ],
1076
+ inputModalities: [
1077
+ "TEXT",
1078
+ "IMAGE"
1079
+ ],
1080
+ outputModalities: [
1081
+ "VIDEO"
1082
+ ]
1083
+ }
1084
+ }, {
1085
+ id: 'amazon.nova-micro-v1:0:24k',
1086
+ provider: 'aws',
1087
+ name: 'Nova Micro',
1088
+ contextWindow: 0,
1089
+ tier: 'efficient',
1090
+ capabilities: new Set([]),
1091
+ pricing: {},
1092
+ metadata: {
1093
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-micro-v1:0:24k",
1094
+ providerName: "Amazon",
1095
+ responseStreamingSupported: true,
1096
+ customizationsSupported: [],
1097
+ inferenceTypesSupported: [
1098
+ "PROVISIONED"
1099
+ ],
1100
+ inputModalities: [
1101
+ "TEXT"
1102
+ ],
1103
+ outputModalities: [
1104
+ "TEXT"
1105
+ ]
1106
+ }
1107
+ }, {
1108
+ id: 'amazon.nova-micro-v1:0:128k',
1109
+ provider: 'aws',
1110
+ name: 'Nova Micro',
1111
+ contextWindow: 0,
1112
+ tier: 'efficient',
1113
+ capabilities: new Set([]),
1114
+ pricing: {},
1115
+ metadata: {
1116
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-micro-v1:0:128k",
1117
+ providerName: "Amazon",
1118
+ responseStreamingSupported: true,
1119
+ customizationsSupported: [
1120
+ "FINE_TUNING",
1121
+ "DISTILLATION"
1122
+ ],
1123
+ inferenceTypesSupported: [
1124
+ "PROVISIONED"
1125
+ ],
1126
+ inputModalities: [
1127
+ "TEXT"
1128
+ ],
1129
+ outputModalities: [
1130
+ "TEXT"
1131
+ ]
1132
+ }
1133
+ }, {
1134
+ id: 'amazon.nova-micro-v1:0',
1135
+ provider: 'aws',
1136
+ name: 'Nova Micro',
1137
+ contextWindow: 0,
1138
+ tier: 'efficient',
1139
+ capabilities: new Set([]),
1140
+ pricing: {},
1141
+ metadata: {
1142
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-micro-v1:0",
1143
+ providerName: "Amazon",
1144
+ responseStreamingSupported: true,
1145
+ customizationsSupported: [],
1146
+ inferenceTypesSupported: [
1147
+ "ON_DEMAND",
1148
+ "INFERENCE_PROFILE"
1149
+ ],
1150
+ inputModalities: [
1151
+ "TEXT"
1152
+ ],
1153
+ outputModalities: [
1154
+ "TEXT"
1155
+ ]
1156
+ }
1157
+ }, {
1158
+ id: 'amazon.nova-sonic-v1:0',
1159
+ provider: 'aws',
1160
+ name: 'Nova Sonic',
1161
+ contextWindow: 0,
1162
+ tier: 'efficient',
1163
+ capabilities: new Set([]),
1164
+ pricing: {},
1165
+ metadata: {
1166
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.nova-sonic-v1:0",
1167
+ providerName: "Amazon",
1168
+ responseStreamingSupported: true,
1169
+ customizationsSupported: [],
1170
+ inferenceTypesSupported: [
1171
+ "ON_DEMAND"
1172
+ ],
1173
+ inputModalities: [
1174
+ "SPEECH"
1175
+ ],
1176
+ outputModalities: [
1177
+ "SPEECH",
1178
+ "TEXT"
1179
+ ]
1180
+ }
1181
+ }, {
1182
+ id: 'amazon.titan-embed-g1-text-02',
1183
+ provider: 'aws',
1184
+ name: 'Titan Text Embeddings v2',
1185
+ contextWindow: 0,
1186
+ tier: 'efficient',
1187
+ capabilities: new Set(['embedding']),
1188
+ pricing: {},
1189
+ metadata: {
1190
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-embed-g1-text-02",
1191
+ providerName: "Amazon",
1192
+ customizationsSupported: [],
1193
+ inferenceTypesSupported: [
1194
+ "ON_DEMAND"
1195
+ ],
1196
+ inputModalities: [
1197
+ "TEXT"
1198
+ ],
1199
+ outputModalities: [
1200
+ "EMBEDDING"
1201
+ ]
1202
+ }
1203
+ }, {
1204
+ id: 'amazon.titan-text-lite-v1:0:4k',
1205
+ provider: 'aws',
1206
+ name: 'Titan Text G1 - Lite',
1207
+ contextWindow: 0,
1208
+ tier: 'efficient',
1209
+ capabilities: new Set(['chat', 'streaming']),
1210
+ pricing: {},
1211
+ metadata: {
1212
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-text-lite-v1:0:4k",
1213
+ providerName: "Amazon",
1214
+ responseStreamingSupported: true,
1215
+ customizationsSupported: [
1216
+ "FINE_TUNING",
1217
+ "CONTINUED_PRE_TRAINING"
1218
+ ],
1219
+ inferenceTypesSupported: [
1220
+ "PROVISIONED"
1221
+ ],
1222
+ inputModalities: [
1223
+ "TEXT"
1224
+ ],
1225
+ outputModalities: [
1226
+ "TEXT"
1227
+ ]
1228
+ }
1229
+ }, {
1230
+ id: 'amazon.titan-text-lite-v1',
1231
+ provider: 'aws',
1232
+ name: 'Titan Text G1 - Lite',
1233
+ contextWindow: 4096,
1234
+ maxOutputTokens: 4096,
1235
+ tier: 'efficient',
1236
+ capabilities: new Set(['chat', 'streaming']),
1237
+ pricing: {
1238
+ text: {
1239
+ input: 0.15,
1240
+ output: 0.2
1241
+ }
1242
+ },
1243
+ metadata: {
1244
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-text-lite-v1",
1245
+ providerName: "Amazon",
1246
+ responseStreamingSupported: true,
1247
+ customizationsSupported: [],
1248
+ inferenceTypesSupported: [
1249
+ "ON_DEMAND"
1250
+ ],
1251
+ inputModalities: [
1252
+ "TEXT"
1253
+ ],
1254
+ outputModalities: [
1255
+ "TEXT"
1256
+ ]
1257
+ }
1258
+ }, {
1259
+ id: 'amazon.titan-text-express-v1:0:8k',
1260
+ provider: 'aws',
1261
+ name: 'Titan Text G1 - Express',
1262
+ contextWindow: 0,
1263
+ tier: 'efficient',
1264
+ capabilities: new Set(['chat', 'streaming']),
1265
+ pricing: {},
1266
+ metadata: {
1267
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-text-express-v1:0:8k",
1268
+ providerName: "Amazon",
1269
+ responseStreamingSupported: true,
1270
+ customizationsSupported: [
1271
+ "FINE_TUNING",
1272
+ "CONTINUED_PRE_TRAINING"
1273
+ ],
1274
+ inferenceTypesSupported: [
1275
+ "PROVISIONED"
1276
+ ],
1277
+ inputModalities: [
1278
+ "TEXT"
1279
+ ],
1280
+ outputModalities: [
1281
+ "TEXT"
1282
+ ]
1283
+ }
1284
+ }, {
1285
+ id: 'amazon.titan-text-express-v1',
1286
+ provider: 'aws',
1287
+ name: 'Titan Text G1 - Express',
1288
+ contextWindow: 8192,
1289
+ maxOutputTokens: 8192,
1290
+ tier: 'efficient',
1291
+ capabilities: new Set(['chat', 'streaming']),
1292
+ pricing: {
1293
+ text: {
1294
+ input: 0.2,
1295
+ output: 0.6
1296
+ }
1297
+ },
1298
+ metadata: {
1299
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-text-express-v1",
1300
+ providerName: "Amazon",
1301
+ responseStreamingSupported: true,
1302
+ customizationsSupported: [],
1303
+ inferenceTypesSupported: [
1304
+ "ON_DEMAND"
1305
+ ],
1306
+ inputModalities: [
1307
+ "TEXT"
1308
+ ],
1309
+ outputModalities: [
1310
+ "TEXT"
1311
+ ]
1312
+ }
1313
+ }, {
1314
+ id: 'amazon.titan-embed-text-v1:2:8k',
1315
+ provider: 'aws',
1316
+ name: 'Titan Embeddings G1 - Text',
1317
+ contextWindow: 0,
1318
+ tier: 'efficient',
1319
+ capabilities: new Set(['embedding']),
1320
+ pricing: {},
1321
+ metadata: {
1322
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-embed-text-v1:2:8k",
1323
+ providerName: "Amazon",
1324
+ responseStreamingSupported: false,
1325
+ customizationsSupported: [],
1326
+ inferenceTypesSupported: [
1327
+ "PROVISIONED"
1328
+ ],
1329
+ inputModalities: [
1330
+ "TEXT"
1331
+ ],
1332
+ outputModalities: [
1333
+ "EMBEDDING"
1334
+ ]
1335
+ }
1336
+ }, {
1337
+ id: 'amazon.titan-embed-text-v1',
1338
+ provider: 'aws',
1339
+ name: 'Titan Embeddings G1 - Text',
1340
+ contextWindow: 0,
1341
+ tier: 'efficient',
1342
+ capabilities: new Set(['embedding']),
1343
+ pricing: {},
1344
+ metadata: {
1345
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-embed-text-v1",
1346
+ providerName: "Amazon",
1347
+ responseStreamingSupported: false,
1348
+ customizationsSupported: [],
1349
+ inferenceTypesSupported: [
1350
+ "ON_DEMAND"
1351
+ ],
1352
+ inputModalities: [
1353
+ "TEXT"
1354
+ ],
1355
+ outputModalities: [
1356
+ "EMBEDDING"
1357
+ ]
1358
+ }
1359
+ }, {
1360
+ id: 'amazon.titan-embed-text-v2:0:8k',
1361
+ provider: 'aws',
1362
+ name: 'Titan Text Embeddings V2',
1363
+ contextWindow: 0,
1364
+ tier: 'efficient',
1365
+ capabilities: new Set(['embedding']),
1366
+ pricing: {},
1367
+ metadata: {
1368
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-embed-text-v2:0:8k",
1369
+ providerName: "Amazon",
1370
+ responseStreamingSupported: false,
1371
+ customizationsSupported: [],
1372
+ inferenceTypesSupported: [],
1373
+ inputModalities: [
1374
+ "TEXT"
1375
+ ],
1376
+ outputModalities: [
1377
+ "EMBEDDING"
1378
+ ]
1379
+ }
1380
+ }, {
1381
+ id: 'amazon.titan-embed-text-v2:0',
1382
+ provider: 'aws',
1383
+ name: 'Titan Text Embeddings V2',
1384
+ contextWindow: 0,
1385
+ tier: 'efficient',
1386
+ capabilities: new Set(['embedding']),
1387
+ pricing: {},
1388
+ metadata: {
1389
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-embed-text-v2:0",
1390
+ providerName: "Amazon",
1391
+ responseStreamingSupported: false,
1392
+ customizationsSupported: [],
1393
+ inferenceTypesSupported: [
1394
+ "ON_DEMAND"
1395
+ ],
1396
+ inputModalities: [
1397
+ "TEXT"
1398
+ ],
1399
+ outputModalities: [
1400
+ "EMBEDDING"
1401
+ ]
1402
+ }
1403
+ }, {
1404
+ id: 'amazon.titan-embed-image-v1:0',
1405
+ provider: 'aws',
1406
+ name: 'Titan Multimodal Embeddings G1',
1407
+ contextWindow: 0,
1408
+ tier: 'efficient',
1409
+ capabilities: new Set(['embedding']),
1410
+ pricing: {},
1411
+ metadata: {
1412
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-embed-image-v1:0",
1413
+ providerName: "Amazon",
1414
+ customizationsSupported: [
1415
+ "FINE_TUNING"
1416
+ ],
1417
+ inferenceTypesSupported: [
1418
+ "PROVISIONED"
1419
+ ],
1420
+ inputModalities: [
1421
+ "TEXT",
1422
+ "IMAGE"
1423
+ ],
1424
+ outputModalities: [
1425
+ "EMBEDDING"
1426
+ ]
1427
+ }
1428
+ }, {
1429
+ id: 'amazon.titan-embed-image-v1',
1430
+ provider: 'aws',
1431
+ name: 'Titan Multimodal Embeddings G1',
1432
+ contextWindow: 0,
1433
+ tier: 'efficient',
1434
+ capabilities: new Set(['embedding']),
1435
+ pricing: {},
1436
+ metadata: {
1437
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/amazon.titan-embed-image-v1",
1438
+ providerName: "Amazon",
1439
+ customizationsSupported: [],
1440
+ inferenceTypesSupported: [
1441
+ "ON_DEMAND"
1442
+ ],
1443
+ inputModalities: [
1444
+ "TEXT",
1445
+ "IMAGE"
1446
+ ],
1447
+ outputModalities: [
1448
+ "EMBEDDING"
1449
+ ]
1450
+ }
1451
+ }, {
1452
+ id: 'ai21.jamba-1-5-large-v1:0',
1453
+ provider: 'aws',
1454
+ name: 'Jamba 1.5 Large',
1455
+ contextWindow: 0,
1456
+ tier: 'efficient',
1457
+ capabilities: new Set(['chat', 'streaming']),
1458
+ pricing: {},
1459
+ metadata: {
1460
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/ai21.jamba-1-5-large-v1:0",
1461
+ providerName: "AI21 Labs",
1462
+ responseStreamingSupported: true,
1463
+ customizationsSupported: [],
1464
+ inferenceTypesSupported: [
1465
+ "ON_DEMAND"
1466
+ ],
1467
+ inputModalities: [
1468
+ "TEXT"
1469
+ ],
1470
+ outputModalities: [
1471
+ "TEXT"
1472
+ ]
1473
+ }
1474
+ }, {
1475
+ id: 'ai21.jamba-1-5-mini-v1:0',
1476
+ provider: 'aws',
1477
+ name: 'Jamba 1.5 Mini',
1478
+ contextWindow: 0,
1479
+ tier: 'efficient',
1480
+ capabilities: new Set(['chat', 'streaming']),
1481
+ pricing: {},
1482
+ metadata: {
1483
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/ai21.jamba-1-5-mini-v1:0",
1484
+ providerName: "AI21 Labs",
1485
+ responseStreamingSupported: true,
1486
+ customizationsSupported: [],
1487
+ inferenceTypesSupported: [
1488
+ "ON_DEMAND"
1489
+ ],
1490
+ inputModalities: [
1491
+ "TEXT"
1492
+ ],
1493
+ outputModalities: [
1494
+ "TEXT"
1495
+ ]
1496
+ }
1497
+ }, {
1498
+ id: 'anthropic.claude-instant-v1:2:100k',
1499
+ provider: 'aws',
1500
+ name: 'Claude Instant',
1501
+ contextWindow: 0,
1502
+ tier: 'efficient',
1503
+ capabilities: new Set(['chat', 'streaming']),
1504
+ pricing: {},
1505
+ metadata: {
1506
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-instant-v1:2:100k",
1507
+ providerName: "Anthropic",
1508
+ responseStreamingSupported: true,
1509
+ customizationsSupported: [],
1510
+ inferenceTypesSupported: [
1511
+ "PROVISIONED"
1512
+ ],
1513
+ inputModalities: [
1514
+ "TEXT"
1515
+ ],
1516
+ outputModalities: [
1517
+ "TEXT"
1518
+ ]
1519
+ }
1520
+ }, {
1521
+ id: 'anthropic.claude-v2:0:18k',
1522
+ provider: 'aws',
1523
+ name: 'Claude',
1524
+ contextWindow: 0,
1525
+ tier: 'efficient',
1526
+ capabilities: new Set(['chat', 'streaming']),
1527
+ pricing: {},
1528
+ metadata: {
1529
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-v2:0:18k",
1530
+ providerName: "Anthropic",
1531
+ responseStreamingSupported: true,
1532
+ customizationsSupported: [],
1533
+ inferenceTypesSupported: [
1534
+ "PROVISIONED"
1535
+ ],
1536
+ inputModalities: [
1537
+ "TEXT"
1538
+ ],
1539
+ outputModalities: [
1540
+ "TEXT"
1541
+ ]
1542
+ }
1543
+ }, {
1544
+ id: 'anthropic.claude-v2:0:100k',
1545
+ provider: 'aws',
1546
+ name: 'Claude',
1547
+ contextWindow: 0,
1548
+ tier: 'efficient',
1549
+ capabilities: new Set(['chat', 'streaming']),
1550
+ pricing: {},
1551
+ metadata: {
1552
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-v2:0:100k",
1553
+ providerName: "Anthropic",
1554
+ responseStreamingSupported: true,
1555
+ customizationsSupported: [],
1556
+ inferenceTypesSupported: [
1557
+ "PROVISIONED"
1558
+ ],
1559
+ inputModalities: [
1560
+ "TEXT"
1561
+ ],
1562
+ outputModalities: [
1563
+ "TEXT"
1564
+ ]
1565
+ }
1566
+ }, {
1567
+ id: 'anthropic.claude-v2:1:18k',
1568
+ provider: 'aws',
1569
+ name: 'Claude',
1570
+ contextWindow: 0,
1571
+ tier: 'efficient',
1572
+ capabilities: new Set(['chat', 'streaming']),
1573
+ pricing: {},
1574
+ metadata: {
1575
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-v2:1:18k",
1576
+ providerName: "Anthropic",
1577
+ responseStreamingSupported: true,
1578
+ customizationsSupported: [],
1579
+ inferenceTypesSupported: [
1580
+ "PROVISIONED"
1581
+ ],
1582
+ inputModalities: [
1583
+ "TEXT"
1584
+ ],
1585
+ outputModalities: [
1586
+ "TEXT"
1587
+ ]
1588
+ }
1589
+ }, {
1590
+ id: 'anthropic.claude-v2:1:200k',
1591
+ provider: 'aws',
1592
+ name: 'Claude',
1593
+ contextWindow: 0,
1594
+ tier: 'efficient',
1595
+ capabilities: new Set(['chat', 'streaming']),
1596
+ pricing: {},
1597
+ metadata: {
1598
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-v2:1:200k",
1599
+ providerName: "Anthropic",
1600
+ responseStreamingSupported: true,
1601
+ customizationsSupported: [],
1602
+ inferenceTypesSupported: [
1603
+ "PROVISIONED"
1604
+ ],
1605
+ inputModalities: [
1606
+ "TEXT"
1607
+ ],
1608
+ outputModalities: [
1609
+ "TEXT"
1610
+ ]
1611
+ }
1612
+ }, {
1613
+ id: 'anthropic.claude-3-sonnet-20240229-v1:0:28k',
1614
+ provider: 'aws',
1615
+ name: 'Claude 3 Sonnet',
1616
+ contextWindow: 0,
1617
+ tier: 'efficient',
1618
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1619
+ pricing: {},
1620
+ metadata: {
1621
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-sonnet-20240229-v1:0:28k",
1622
+ providerName: "Anthropic",
1623
+ responseStreamingSupported: true,
1624
+ customizationsSupported: [],
1625
+ inferenceTypesSupported: [
1626
+ "PROVISIONED"
1627
+ ],
1628
+ inputModalities: [
1629
+ "TEXT",
1630
+ "IMAGE"
1631
+ ],
1632
+ outputModalities: [
1633
+ "TEXT"
1634
+ ]
1635
+ }
1636
+ }, {
1637
+ id: 'anthropic.claude-3-sonnet-20240229-v1:0:200k',
1638
+ provider: 'aws',
1639
+ name: 'Claude 3 Sonnet',
1640
+ contextWindow: 0,
1641
+ tier: 'efficient',
1642
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1643
+ pricing: {},
1644
+ metadata: {
1645
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-sonnet-20240229-v1:0:200k",
1646
+ providerName: "Anthropic",
1647
+ responseStreamingSupported: true,
1648
+ customizationsSupported: [],
1649
+ inferenceTypesSupported: [
1650
+ "PROVISIONED"
1651
+ ],
1652
+ inputModalities: [
1653
+ "TEXT",
1654
+ "IMAGE"
1655
+ ],
1656
+ outputModalities: [
1657
+ "TEXT"
1658
+ ]
1659
+ }
1660
+ }, {
1661
+ id: 'anthropic.claude-3-sonnet-20240229-v1:0',
1662
+ provider: 'aws',
1663
+ name: 'Claude 3 Sonnet',
1664
+ contextWindow: 200000,
1665
+ maxOutputTokens: 4096,
1666
+ tier: 'efficient',
1667
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1668
+ pricing: {
1669
+ text: {
1670
+ input: 3,
1671
+ output: 15
1672
+ }
1673
+ },
1674
+ metadata: {
1675
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-sonnet-20240229-v1:0",
1676
+ providerName: "Anthropic",
1677
+ responseStreamingSupported: true,
1678
+ customizationsSupported: [],
1679
+ inferenceTypesSupported: [
1680
+ "ON_DEMAND"
1681
+ ],
1682
+ inputModalities: [
1683
+ "TEXT",
1684
+ "IMAGE"
1685
+ ],
1686
+ outputModalities: [
1687
+ "TEXT"
1688
+ ]
1689
+ }
1690
+ }, {
1691
+ id: 'anthropic.claude-3-haiku-20240307-v1:0:48k',
1692
+ provider: 'aws',
1693
+ name: 'Claude 3 Haiku',
1694
+ contextWindow: 0,
1695
+ tier: 'efficient',
1696
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1697
+ pricing: {},
1698
+ metadata: {
1699
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-haiku-20240307-v1:0:48k",
1700
+ providerName: "Anthropic",
1701
+ responseStreamingSupported: true,
1702
+ customizationsSupported: [],
1703
+ inferenceTypesSupported: [
1704
+ "PROVISIONED"
1705
+ ],
1706
+ inputModalities: [
1707
+ "TEXT",
1708
+ "IMAGE"
1709
+ ],
1710
+ outputModalities: [
1711
+ "TEXT"
1712
+ ]
1713
+ }
1714
+ }, {
1715
+ id: 'anthropic.claude-3-haiku-20240307-v1:0:200k',
1716
+ provider: 'aws',
1717
+ name: 'Claude 3 Haiku',
1718
+ contextWindow: 0,
1719
+ tier: 'efficient',
1720
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1721
+ pricing: {},
1722
+ metadata: {
1723
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-haiku-20240307-v1:0:200k",
1724
+ providerName: "Anthropic",
1725
+ responseStreamingSupported: true,
1726
+ customizationsSupported: [],
1727
+ inferenceTypesSupported: [
1728
+ "PROVISIONED"
1729
+ ],
1730
+ inputModalities: [
1731
+ "TEXT",
1732
+ "IMAGE"
1733
+ ],
1734
+ outputModalities: [
1735
+ "TEXT"
1736
+ ]
1737
+ }
1738
+ }, {
1739
+ id: 'anthropic.claude-3-haiku-20240307-v1:0',
1740
+ provider: 'aws',
1741
+ name: 'Claude 3 Haiku',
1742
+ contextWindow: 200000,
1743
+ maxOutputTokens: 4096,
1744
+ tier: 'efficient',
1745
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1746
+ pricing: {
1747
+ text: {
1748
+ input: 0.25,
1749
+ output: 1.25
1750
+ }
1751
+ },
1752
+ metadata: {
1753
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-haiku-20240307-v1:0",
1754
+ providerName: "Anthropic",
1755
+ responseStreamingSupported: true,
1756
+ customizationsSupported: [],
1757
+ inferenceTypesSupported: [
1758
+ "ON_DEMAND"
1759
+ ],
1760
+ inputModalities: [
1761
+ "TEXT",
1762
+ "IMAGE"
1763
+ ],
1764
+ outputModalities: [
1765
+ "TEXT"
1766
+ ]
1767
+ }
1768
+ }, {
1769
+ id: 'anthropic.claude-3-opus-20240229-v1:0:12k',
1770
+ provider: 'aws',
1771
+ name: 'Claude 3 Opus',
1772
+ contextWindow: 0,
1773
+ tier: 'flagship',
1774
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1775
+ pricing: {},
1776
+ metadata: {
1777
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-opus-20240229-v1:0:12k",
1778
+ providerName: "Anthropic",
1779
+ responseStreamingSupported: true,
1780
+ customizationsSupported: [],
1781
+ inferenceTypesSupported: [],
1782
+ inputModalities: [
1783
+ "TEXT",
1784
+ "IMAGE"
1785
+ ],
1786
+ outputModalities: [
1787
+ "TEXT"
1788
+ ]
1789
+ }
1790
+ }, {
1791
+ id: 'anthropic.claude-3-opus-20240229-v1:0:28k',
1792
+ provider: 'aws',
1793
+ name: 'Claude 3 Opus',
1794
+ contextWindow: 0,
1795
+ tier: 'flagship',
1796
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1797
+ pricing: {},
1798
+ metadata: {
1799
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-opus-20240229-v1:0:28k",
1800
+ providerName: "Anthropic",
1801
+ responseStreamingSupported: true,
1802
+ customizationsSupported: [],
1803
+ inferenceTypesSupported: [],
1804
+ inputModalities: [
1805
+ "TEXT",
1806
+ "IMAGE"
1807
+ ],
1808
+ outputModalities: [
1809
+ "TEXT"
1810
+ ]
1811
+ }
1812
+ }, {
1813
+ id: 'anthropic.claude-3-opus-20240229-v1:0:200k',
1814
+ provider: 'aws',
1815
+ name: 'Claude 3 Opus',
1816
+ contextWindow: 0,
1817
+ tier: 'flagship',
1818
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1819
+ pricing: {},
1820
+ metadata: {
1821
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-opus-20240229-v1:0:200k",
1822
+ providerName: "Anthropic",
1823
+ responseStreamingSupported: true,
1824
+ customizationsSupported: [],
1825
+ inferenceTypesSupported: [],
1826
+ inputModalities: [
1827
+ "TEXT",
1828
+ "IMAGE"
1829
+ ],
1830
+ outputModalities: [
1831
+ "TEXT"
1832
+ ]
1833
+ }
1834
+ }, {
1835
+ id: 'anthropic.claude-3-opus-20240229-v1:0',
1836
+ provider: 'aws',
1837
+ name: 'Claude 3 Opus',
1838
+ contextWindow: 200000,
1839
+ maxOutputTokens: 4096,
1840
+ tier: 'flagship',
1841
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1842
+ pricing: {
1843
+ text: {
1844
+ input: 15,
1845
+ output: 75
1846
+ }
1847
+ },
1848
+ metadata: {
1849
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-opus-20240229-v1:0",
1850
+ providerName: "Anthropic",
1851
+ responseStreamingSupported: true,
1852
+ customizationsSupported: [],
1853
+ inferenceTypesSupported: [
1854
+ "INFERENCE_PROFILE"
1855
+ ],
1856
+ inputModalities: [
1857
+ "TEXT",
1858
+ "IMAGE"
1859
+ ],
1860
+ outputModalities: [
1861
+ "TEXT"
1862
+ ]
1863
+ }
1864
+ }, {
1865
+ id: 'anthropic.claude-3-5-sonnet-20240620-v1:0',
1866
+ provider: 'aws',
1867
+ name: 'Claude 3.5 Sonnet',
1868
+ contextWindow: 200000,
1869
+ maxOutputTokens: 8192,
1870
+ tier: 'efficient',
1871
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1872
+ pricing: {
1873
+ text: {
1874
+ input: 3,
1875
+ output: 15
1876
+ }
1877
+ },
1878
+ metadata: {
1879
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-5-sonnet-20240620-v1:0",
1880
+ providerName: "Anthropic",
1881
+ responseStreamingSupported: true,
1882
+ customizationsSupported: [],
1883
+ inferenceTypesSupported: [
1884
+ "ON_DEMAND",
1885
+ "INFERENCE_PROFILE"
1886
+ ],
1887
+ inputModalities: [
1888
+ "TEXT",
1889
+ "IMAGE"
1890
+ ],
1891
+ outputModalities: [
1892
+ "TEXT"
1893
+ ]
1894
+ }
1895
+ }, {
1896
+ id: 'anthropic.claude-3-5-sonnet-20241022-v2:0',
1897
+ provider: 'aws',
1898
+ name: 'Claude 3.5 Sonnet v2',
1899
+ contextWindow: 200000,
1900
+ maxOutputTokens: 8192,
1901
+ tier: 'efficient',
1902
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1903
+ pricing: {
1904
+ text: {
1905
+ input: 3,
1906
+ output: 15
1907
+ }
1908
+ },
1909
+ metadata: {
1910
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-5-sonnet-20241022-v2:0",
1911
+ providerName: "Anthropic",
1912
+ responseStreamingSupported: true,
1913
+ customizationsSupported: [],
1914
+ inferenceTypesSupported: [
1915
+ "INFERENCE_PROFILE"
1916
+ ],
1917
+ inputModalities: [
1918
+ "TEXT",
1919
+ "IMAGE"
1920
+ ],
1921
+ outputModalities: [
1922
+ "TEXT"
1923
+ ]
1924
+ }
1925
+ }, {
1926
+ id: 'anthropic.claude-3-7-sonnet-20250219-v1:0',
1927
+ provider: 'aws',
1928
+ name: 'Claude 3.7 Sonnet',
1929
+ contextWindow: 0,
1930
+ tier: 'efficient',
1931
+ capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
1932
+ pricing: {},
1933
+ metadata: {
1934
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-7-sonnet-20250219-v1:0",
1935
+ providerName: "Anthropic",
1936
+ responseStreamingSupported: true,
1937
+ customizationsSupported: [],
1938
+ inferenceTypesSupported: [
1939
+ "INFERENCE_PROFILE"
1940
+ ],
1941
+ inputModalities: [
1942
+ "TEXT",
1943
+ "IMAGE"
1944
+ ],
1945
+ outputModalities: [
1946
+ "TEXT"
1947
+ ]
1948
+ }
1949
+ }, {
1950
+ id: 'anthropic.claude-3-5-haiku-20241022-v1:0',
1951
+ provider: 'aws',
1952
+ name: 'Claude 3.5 Haiku',
1953
+ contextWindow: 0,
1954
+ tier: 'efficient',
1955
+ capabilities: new Set(['chat', 'streaming', 'tools']),
1956
+ pricing: {},
1957
+ metadata: {
1958
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-3-5-haiku-20241022-v1:0",
1959
+ providerName: "Anthropic",
1960
+ responseStreamingSupported: true,
1961
+ customizationsSupported: [],
1962
+ inferenceTypesSupported: [
1963
+ "INFERENCE_PROFILE"
1964
+ ],
1965
+ inputModalities: [
1966
+ "TEXT"
1967
+ ],
1968
+ outputModalities: [
1969
+ "TEXT"
1970
+ ]
1971
+ }
1972
+ }, {
1973
+ id: 'anthropic.claude-opus-4-20250514-v1:0',
1974
+ provider: 'aws',
1975
+ name: 'Claude Opus 4',
1976
+ contextWindow: 0,
1977
+ tier: 'flagship',
1978
+ capabilities: new Set(['chat', 'streaming', 'vision']),
1979
+ pricing: {},
1980
+ metadata: {
1981
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/anthropic.claude-opus-4-20250514-v1:0",
1982
+ providerName: "Anthropic",
1983
+ responseStreamingSupported: true,
1984
+ customizationsSupported: [],
1985
+ inferenceTypesSupported: [
1986
+ "INFERENCE_PROFILE"
1987
+ ],
1988
+ inputModalities: [
1989
+ "TEXT",
1990
+ "IMAGE"
1991
+ ],
1992
+ outputModalities: [
1993
+ "TEXT"
1994
+ ]
1995
+ }
1996
+ }, {
1997
+ id: 'cohere.command-r-v1:0',
1998
+ provider: 'aws',
1999
+ name: 'Command R',
2000
+ contextWindow: 128000,
2001
+ maxOutputTokens: 4096,
2002
+ tier: 'efficient',
2003
+ capabilities: new Set(['chat', 'streaming']),
2004
+ pricing: {
2005
+ text: {
2006
+ input: 0.5,
2007
+ output: 1.5
2008
+ }
2009
+ },
2010
+ metadata: {
2011
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/cohere.command-r-v1:0",
2012
+ providerName: "Cohere",
2013
+ responseStreamingSupported: true,
2014
+ customizationsSupported: [],
2015
+ inferenceTypesSupported: [
2016
+ "ON_DEMAND"
2017
+ ],
2018
+ inputModalities: [
2019
+ "TEXT"
2020
+ ],
2021
+ outputModalities: [
2022
+ "TEXT"
2023
+ ]
2024
+ }
2025
+ }, {
2026
+ id: 'cohere.command-r-plus-v1:0',
2027
+ provider: 'aws',
2028
+ name: 'Command R+',
2029
+ contextWindow: 128000,
2030
+ maxOutputTokens: 4096,
2031
+ tier: 'flagship',
2032
+ capabilities: new Set(['chat', 'streaming']),
2033
+ pricing: {
2034
+ text: {
2035
+ input: 3,
2036
+ output: 15
2037
+ }
2038
+ },
2039
+ metadata: {
2040
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/cohere.command-r-plus-v1:0",
2041
+ providerName: "Cohere",
2042
+ responseStreamingSupported: true,
2043
+ customizationsSupported: [],
2044
+ inferenceTypesSupported: [
2045
+ "ON_DEMAND"
2046
+ ],
2047
+ inputModalities: [
2048
+ "TEXT"
2049
+ ],
2050
+ outputModalities: [
2051
+ "TEXT"
2052
+ ]
2053
+ }
2054
+ }, {
2055
+ id: 'cohere.embed-english-v3:0:512',
2056
+ provider: 'aws',
2057
+ name: 'Embed English',
2058
+ contextWindow: 0,
2059
+ tier: 'efficient',
2060
+ capabilities: new Set(['embedding']),
2061
+ pricing: {},
2062
+ metadata: {
2063
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/cohere.embed-english-v3:0:512",
2064
+ providerName: "Cohere",
2065
+ responseStreamingSupported: false,
2066
+ customizationsSupported: [],
2067
+ inferenceTypesSupported: [
2068
+ "PROVISIONED"
2069
+ ],
2070
+ inputModalities: [
2071
+ "TEXT"
2072
+ ],
2073
+ outputModalities: [
2074
+ "EMBEDDING"
2075
+ ]
2076
+ }
2077
+ }, {
2078
+ id: 'cohere.embed-english-v3',
2079
+ provider: 'aws',
2080
+ name: 'Embed English',
2081
+ contextWindow: 0,
2082
+ tier: 'efficient',
2083
+ capabilities: new Set(['embedding']),
2084
+ pricing: {},
2085
+ metadata: {
2086
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/cohere.embed-english-v3",
2087
+ providerName: "Cohere",
2088
+ responseStreamingSupported: false,
2089
+ customizationsSupported: [],
2090
+ inferenceTypesSupported: [
2091
+ "ON_DEMAND"
2092
+ ],
2093
+ inputModalities: [
2094
+ "TEXT"
2095
+ ],
2096
+ outputModalities: [
2097
+ "EMBEDDING"
2098
+ ]
2099
+ }
2100
+ }, {
2101
+ id: 'cohere.embed-multilingual-v3:0:512',
2102
+ provider: 'aws',
2103
+ name: 'Embed Multilingual',
2104
+ contextWindow: 0,
2105
+ tier: 'efficient',
2106
+ capabilities: new Set(['embedding']),
2107
+ pricing: {},
2108
+ metadata: {
2109
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/cohere.embed-multilingual-v3:0:512",
2110
+ providerName: "Cohere",
2111
+ responseStreamingSupported: false,
2112
+ customizationsSupported: [],
2113
+ inferenceTypesSupported: [
2114
+ "PROVISIONED"
2115
+ ],
2116
+ inputModalities: [
2117
+ "TEXT"
2118
+ ],
2119
+ outputModalities: [
2120
+ "EMBEDDING"
2121
+ ]
2122
+ }
2123
+ }, {
2124
+ id: 'cohere.embed-multilingual-v3',
2125
+ provider: 'aws',
2126
+ name: 'Embed Multilingual',
2127
+ contextWindow: 0,
2128
+ tier: 'efficient',
2129
+ capabilities: new Set(['embedding']),
2130
+ pricing: {},
2131
+ metadata: {
2132
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/cohere.embed-multilingual-v3",
2133
+ providerName: "Cohere",
2134
+ responseStreamingSupported: false,
2135
+ customizationsSupported: [],
2136
+ inferenceTypesSupported: [
2137
+ "ON_DEMAND"
2138
+ ],
2139
+ inputModalities: [
2140
+ "TEXT"
2141
+ ],
2142
+ outputModalities: [
2143
+ "EMBEDDING"
2144
+ ]
2145
+ }
2146
+ }, {
2147
+ id: 'cohere.rerank-v3-5:0',
2148
+ provider: 'aws',
2149
+ name: 'Rerank 3.5',
2150
+ contextWindow: 0,
2151
+ tier: 'efficient',
2152
+ capabilities: new Set(['chat']),
2153
+ pricing: {},
2154
+ metadata: {
2155
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/cohere.rerank-v3-5:0",
2156
+ providerName: "Cohere",
2157
+ responseStreamingSupported: false,
2158
+ customizationsSupported: [],
2159
+ inferenceTypesSupported: [
2160
+ "ON_DEMAND"
2161
+ ],
2162
+ inputModalities: [
2163
+ "TEXT"
2164
+ ],
2165
+ outputModalities: [
2166
+ "TEXT"
2167
+ ]
2168
+ }
2169
+ }, {
2170
+ id: 'deepseek.r1-v1:0',
2171
+ provider: 'aws',
2172
+ name: 'DeepSeek-R1',
2173
+ contextWindow: 0,
2174
+ tier: 'efficient',
2175
+ capabilities: new Set([]),
2176
+ pricing: {},
2177
+ metadata: {
2178
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/deepseek.r1-v1:0",
2179
+ providerName: "DeepSeek",
2180
+ responseStreamingSupported: true,
2181
+ customizationsSupported: [],
2182
+ inferenceTypesSupported: [
2183
+ "INFERENCE_PROFILE"
2184
+ ],
2185
+ inputModalities: [
2186
+ "TEXT"
2187
+ ],
2188
+ outputModalities: [
2189
+ "TEXT"
2190
+ ]
2191
+ }
2192
+ }, {
2193
+ id: 'meta.llama3-8b-instruct-v1:0',
2194
+ provider: 'aws',
2195
+ name: 'Llama 3 8B Instruct',
2196
+ contextWindow: 8192,
2197
+ maxOutputTokens: 2048,
2198
+ tier: 'efficient',
2199
+ capabilities: new Set(['chat', 'streaming']),
2200
+ pricing: {
2201
+ text: {
2202
+ input: 0.3,
2203
+ output: 0.6
2204
+ }
2205
+ },
2206
+ metadata: {
2207
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-8b-instruct-v1:0",
2208
+ providerName: "Meta",
2209
+ responseStreamingSupported: true,
2210
+ customizationsSupported: [],
2211
+ inferenceTypesSupported: [
2212
+ "ON_DEMAND"
2213
+ ],
2214
+ inputModalities: [
2215
+ "TEXT"
2216
+ ],
2217
+ outputModalities: [
2218
+ "TEXT"
2219
+ ]
2220
+ }
2221
+ }, {
2222
+ id: 'meta.llama3-70b-instruct-v1:0',
2223
+ provider: 'aws',
2224
+ name: 'Llama 3 70B Instruct',
2225
+ contextWindow: 8192,
2226
+ maxOutputTokens: 2048,
2227
+ tier: 'efficient',
2228
+ capabilities: new Set(['chat', 'streaming']),
2229
+ pricing: {
2230
+ text: {
2231
+ input: 2.65,
2232
+ output: 3.5
2233
+ }
2234
+ },
2235
+ metadata: {
2236
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-70b-instruct-v1:0",
2237
+ providerName: "Meta",
2238
+ responseStreamingSupported: true,
2239
+ customizationsSupported: [],
2240
+ inferenceTypesSupported: [
2241
+ "ON_DEMAND"
2242
+ ],
2243
+ inputModalities: [
2244
+ "TEXT"
2245
+ ],
2246
+ outputModalities: [
2247
+ "TEXT"
2248
+ ]
2249
+ }
2250
+ }, {
2251
+ id: 'meta.llama3-1-8b-instruct-v1:0',
2252
+ provider: 'aws',
2253
+ name: 'Llama 3.1 8B Instruct',
2254
+ contextWindow: 128000,
2255
+ maxOutputTokens: 2048,
2256
+ tier: 'efficient',
2257
+ capabilities: new Set(['chat', 'streaming']),
2258
+ pricing: {
2259
+ text: {
2260
+ input: 0.3,
2261
+ output: 0.6
2262
+ }
2263
+ },
2264
+ metadata: {
2265
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-1-8b-instruct-v1:0",
2266
+ providerName: "Meta",
2267
+ responseStreamingSupported: true,
2268
+ customizationsSupported: [],
2269
+ inferenceTypesSupported: [
2270
+ "INFERENCE_PROFILE"
2271
+ ],
2272
+ inputModalities: [
2273
+ "TEXT"
2274
+ ],
2275
+ outputModalities: [
2276
+ "TEXT"
2277
+ ]
2278
+ }
2279
+ }, {
2280
+ id: 'meta.llama3-1-70b-instruct-v1:0',
2281
+ provider: 'aws',
2282
+ name: 'Llama 3.1 70B Instruct',
2283
+ contextWindow: 128000,
2284
+ maxOutputTokens: 2048,
2285
+ tier: 'efficient',
2286
+ capabilities: new Set(['chat', 'streaming']),
2287
+ pricing: {
2288
+ text: {
2289
+ input: 2.65,
2290
+ output: 3.5
2291
+ }
2292
+ },
2293
+ metadata: {
2294
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-1-70b-instruct-v1:0",
2295
+ providerName: "Meta",
2296
+ responseStreamingSupported: true,
2297
+ customizationsSupported: [],
2298
+ inferenceTypesSupported: [
2299
+ "INFERENCE_PROFILE"
2300
+ ],
2301
+ inputModalities: [
2302
+ "TEXT"
2303
+ ],
2304
+ outputModalities: [
2305
+ "TEXT"
2306
+ ]
2307
+ }
2308
+ }, {
2309
+ id: 'meta.llama3-2-11b-instruct-v1:0',
2310
+ provider: 'aws',
2311
+ name: 'Llama 3.2 11B Instruct',
2312
+ contextWindow: 128000,
2313
+ maxOutputTokens: 2048,
2314
+ tier: 'efficient',
2315
+ capabilities: new Set(['chat', 'streaming', 'vision']),
2316
+ pricing: {
2317
+ text: {
2318
+ input: 0.35,
2319
+ output: 0.35
2320
+ }
2321
+ },
2322
+ metadata: {
2323
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-2-11b-instruct-v1:0",
2324
+ providerName: "Meta",
2325
+ responseStreamingSupported: true,
2326
+ customizationsSupported: [],
2327
+ inferenceTypesSupported: [
2328
+ "INFERENCE_PROFILE"
2329
+ ],
2330
+ inputModalities: [
2331
+ "TEXT",
2332
+ "IMAGE"
2333
+ ],
2334
+ outputModalities: [
2335
+ "TEXT"
2336
+ ]
2337
+ }
2338
+ }, {
2339
+ id: 'meta.llama3-2-90b-instruct-v1:0',
2340
+ provider: 'aws',
2341
+ name: 'Llama 3.2 90B Instruct',
2342
+ contextWindow: 128000,
2343
+ maxOutputTokens: 2048,
2344
+ tier: 'flagship',
2345
+ capabilities: new Set(['chat', 'streaming', 'vision']),
2346
+ pricing: {
2347
+ text: {
2348
+ input: 2.65,
2349
+ output: 2.65
2350
+ }
2351
+ },
2352
+ metadata: {
2353
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-2-90b-instruct-v1:0",
2354
+ providerName: "Meta",
2355
+ responseStreamingSupported: true,
2356
+ customizationsSupported: [],
2357
+ inferenceTypesSupported: [
2358
+ "INFERENCE_PROFILE"
2359
+ ],
2360
+ inputModalities: [
2361
+ "TEXT",
2362
+ "IMAGE"
2363
+ ],
2364
+ outputModalities: [
2365
+ "TEXT"
2366
+ ]
2367
+ }
2368
+ }, {
2369
+ id: 'meta.llama3-2-1b-instruct-v1:0',
2370
+ provider: 'aws',
2371
+ name: 'Llama 3.2 1B Instruct',
2372
+ contextWindow: 128000,
2373
+ maxOutputTokens: 2048,
2374
+ tier: 'efficient',
2375
+ capabilities: new Set(['chat', 'streaming']),
2376
+ pricing: {
2377
+ text: {
2378
+ input: 0.1,
2379
+ output: 0.1
2380
+ }
2381
+ },
2382
+ metadata: {
2383
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-2-1b-instruct-v1:0",
2384
+ providerName: "Meta",
2385
+ responseStreamingSupported: true,
2386
+ customizationsSupported: [],
2387
+ inferenceTypesSupported: [
2388
+ "INFERENCE_PROFILE"
2389
+ ],
2390
+ inputModalities: [
2391
+ "TEXT"
2392
+ ],
2393
+ outputModalities: [
2394
+ "TEXT"
2395
+ ]
2396
+ }
2397
+ }, {
2398
+ id: 'meta.llama3-2-3b-instruct-v1:0',
2399
+ provider: 'aws',
2400
+ name: 'Llama 3.2 3B Instruct',
2401
+ contextWindow: 128000,
2402
+ maxOutputTokens: 2048,
2403
+ tier: 'efficient',
2404
+ capabilities: new Set(['chat', 'streaming']),
2405
+ pricing: {
2406
+ text: {
2407
+ input: 0.15,
2408
+ output: 0.15
2409
+ }
2410
+ },
2411
+ metadata: {
2412
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-2-3b-instruct-v1:0",
2413
+ providerName: "Meta",
2414
+ responseStreamingSupported: true,
2415
+ customizationsSupported: [],
2416
+ inferenceTypesSupported: [
2417
+ "INFERENCE_PROFILE"
2418
+ ],
2419
+ inputModalities: [
2420
+ "TEXT"
2421
+ ],
2422
+ outputModalities: [
2423
+ "TEXT"
2424
+ ]
2425
+ }
2426
+ }, {
2427
+ id: 'meta.llama3-3-70b-instruct-v1:0',
2428
+ provider: 'aws',
2429
+ name: 'Llama 3.3 70B Instruct',
2430
+ contextWindow: 0,
2431
+ tier: 'efficient',
2432
+ capabilities: new Set(['chat', 'streaming']),
2433
+ pricing: {},
2434
+ metadata: {
2435
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama3-3-70b-instruct-v1:0",
2436
+ providerName: "Meta",
2437
+ responseStreamingSupported: true,
2438
+ customizationsSupported: [],
2439
+ inferenceTypesSupported: [
2440
+ "INFERENCE_PROFILE"
2441
+ ],
2442
+ inputModalities: [
2443
+ "TEXT"
2444
+ ],
2445
+ outputModalities: [
2446
+ "TEXT"
2447
+ ]
2448
+ }
2449
+ }, {
2450
+ id: 'meta.llama4-scout-17b-instruct-v1:0',
2451
+ provider: 'aws',
2452
+ name: 'Llama 4 Scout 17B Instruct',
2453
+ contextWindow: 0,
2454
+ tier: 'efficient',
2455
+ capabilities: new Set(['chat', 'streaming', 'vision']),
2456
+ pricing: {},
2457
+ metadata: {
2458
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama4-scout-17b-instruct-v1:0",
2459
+ providerName: "Meta",
2460
+ responseStreamingSupported: true,
2461
+ customizationsSupported: [],
2462
+ inferenceTypesSupported: [
2463
+ "INFERENCE_PROFILE"
2464
+ ],
2465
+ inputModalities: [
2466
+ "TEXT",
2467
+ "IMAGE"
2468
+ ],
2469
+ outputModalities: [
2470
+ "TEXT"
2471
+ ]
2472
+ }
2473
+ }, {
2474
+ id: 'meta.llama4-maverick-17b-instruct-v1:0',
2475
+ provider: 'aws',
2476
+ name: 'Llama 4 Maverick 17B Instruct',
2477
+ contextWindow: 0,
2478
+ tier: 'efficient',
2479
+ capabilities: new Set(['chat', 'streaming', 'vision']),
2480
+ pricing: {},
2481
+ metadata: {
2482
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/meta.llama4-maverick-17b-instruct-v1:0",
2483
+ providerName: "Meta",
2484
+ responseStreamingSupported: true,
2485
+ customizationsSupported: [],
2486
+ inferenceTypesSupported: [
2487
+ "INFERENCE_PROFILE"
2488
+ ],
2489
+ inputModalities: [
2490
+ "TEXT",
2491
+ "IMAGE"
2492
+ ],
2493
+ outputModalities: [
2494
+ "TEXT"
2495
+ ]
2496
+ }
2497
+ }, {
2498
+ id: 'mistral.mistral-7b-instruct-v0:2',
2499
+ provider: 'aws',
2500
+ name: 'Mistral 7B Instruct',
2501
+ contextWindow: 32000,
2502
+ maxOutputTokens: 8192,
2503
+ tier: 'efficient',
2504
+ capabilities: new Set(['chat', 'streaming']),
2505
+ pricing: {
2506
+ text: {
2507
+ input: 0.15,
2508
+ output: 0.2
2509
+ }
2510
+ },
2511
+ metadata: {
2512
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/mistral.mistral-7b-instruct-v0:2",
2513
+ providerName: "Mistral AI",
2514
+ responseStreamingSupported: true,
2515
+ customizationsSupported: [],
2516
+ inferenceTypesSupported: [
2517
+ "ON_DEMAND"
2518
+ ],
2519
+ inputModalities: [
2520
+ "TEXT"
2521
+ ],
2522
+ outputModalities: [
2523
+ "TEXT"
2524
+ ]
2525
+ }
2526
+ }, {
2527
+ id: 'mistral.mixtral-8x7b-instruct-v0:1',
2528
+ provider: 'aws',
2529
+ name: 'Mixtral 8x7B Instruct',
2530
+ contextWindow: 32000,
2531
+ maxOutputTokens: 8192,
2532
+ tier: 'efficient',
2533
+ capabilities: new Set(['chat', 'streaming']),
2534
+ pricing: {
2535
+ text: {
2536
+ input: 0.45,
2537
+ output: 0.7
2538
+ }
2539
+ },
2540
+ metadata: {
2541
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/mistral.mixtral-8x7b-instruct-v0:1",
2542
+ providerName: "Mistral AI",
2543
+ responseStreamingSupported: true,
2544
+ customizationsSupported: [],
2545
+ inferenceTypesSupported: [
2546
+ "ON_DEMAND"
2547
+ ],
2548
+ inputModalities: [
2549
+ "TEXT"
2550
+ ],
2551
+ outputModalities: [
2552
+ "TEXT"
2553
+ ]
2554
+ }
2555
+ }, {
2556
+ id: 'mistral.mistral-large-2402-v1:0',
2557
+ provider: 'aws',
2558
+ name: 'Mistral Large (24.02)',
2559
+ contextWindow: 32000,
2560
+ maxOutputTokens: 8192,
2561
+ tier: 'flagship',
2562
+ capabilities: new Set(['chat', 'streaming']),
2563
+ pricing: {
2564
+ text: {
2565
+ input: 4,
2566
+ output: 12
2567
+ }
2568
+ },
2569
+ metadata: {
2570
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/mistral.mistral-large-2402-v1:0",
2571
+ providerName: "Mistral AI",
2572
+ responseStreamingSupported: true,
2573
+ customizationsSupported: [],
2574
+ inferenceTypesSupported: [
2575
+ "ON_DEMAND"
2576
+ ],
2577
+ inputModalities: [
2578
+ "TEXT"
2579
+ ],
2580
+ outputModalities: [
2581
+ "TEXT"
2582
+ ]
2583
+ }
2584
+ }, {
2585
+ id: 'mistral.mistral-small-2402-v1:0',
2586
+ provider: 'aws',
2587
+ name: 'Mistral Small (24.02)',
2588
+ contextWindow: 0,
2589
+ tier: 'efficient',
2590
+ capabilities: new Set(['chat', 'streaming']),
2591
+ pricing: {},
2592
+ metadata: {
2593
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/mistral.mistral-small-2402-v1:0",
2594
+ providerName: "Mistral AI",
2595
+ responseStreamingSupported: true,
2596
+ customizationsSupported: [],
2597
+ inferenceTypesSupported: [
2598
+ "ON_DEMAND"
2599
+ ],
2600
+ inputModalities: [
2601
+ "TEXT"
2602
+ ],
2603
+ outputModalities: [
2604
+ "TEXT"
2605
+ ]
2606
+ }
2607
+ }, {
2608
+ id: 'mistral.pixtral-large-2502-v1:0',
2609
+ provider: 'aws',
2610
+ name: 'Pixtral Large (25.02)',
2611
+ contextWindow: 0,
2612
+ tier: 'flagship',
2613
+ capabilities: new Set(['chat', 'streaming', 'vision']),
2614
+ pricing: {},
2615
+ metadata: {
2616
+ modelArn: "arn:aws:bedrock:us-east-1::foundation-model/mistral.pixtral-large-2502-v1:0",
2617
+ providerName: "Mistral AI",
2618
+ responseStreamingSupported: true,
2619
+ customizationsSupported: [],
2620
+ inferenceTypesSupported: [
2621
+ "INFERENCE_PROFILE"
2622
+ ],
2623
+ inputModalities: [
2624
+ "TEXT",
2625
+ "IMAGE"
2626
+ ],
2627
+ outputModalities: [
2628
+ "TEXT"
2629
+ ]
2630
+ }
2631
+ }];
2632
+ //# sourceMappingURL=aws.js.map