@aeye/models 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/scripts/scrapers/aws.d.ts.map +1 -1
- package/dist/scripts/scrapers/aws.js +24 -14
- package/dist/scripts/scrapers/aws.js.map +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +1 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/models/aws.d.ts.map +1 -1
- package/dist/src/models/aws.js +266 -1478
- package/dist/src/models/aws.js.map +1 -1
- package/dist/src/models/index.d.ts +2 -1
- package/dist/src/models/index.d.ts.map +1 -1
- package/dist/src/models/index.js +3 -1
- package/dist/src/models/index.js.map +1 -1
- package/package.json +4 -3
- package/scripts/scrapers/aws.ts +3 -266
- package/src/index.ts +1 -1
- package/src/models/aws.ts +266 -1478
- package/src/models/index.ts +3 -1
- package/tsconfig.json +2 -1
package/dist/src/models/aws.js
CHANGED
|
@@ -15,7 +15,7 @@ export const awsModels = [{
|
|
|
15
15
|
capabilities: new Set(['image']),
|
|
16
16
|
pricing: {},
|
|
17
17
|
metadata: {
|
|
18
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
18
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-fast-upscale-v1:0",
|
|
19
19
|
providerName: "Stability AI",
|
|
20
20
|
responseStreamingSupported: false,
|
|
21
21
|
customizationsSupported: [],
|
|
@@ -34,12 +34,18 @@ export const awsModels = [{
|
|
|
34
34
|
id: 'anthropic.claude-sonnet-4-20250514-v1:0',
|
|
35
35
|
provider: 'aws',
|
|
36
36
|
name: 'Claude Sonnet 4',
|
|
37
|
-
contextWindow:
|
|
37
|
+
contextWindow: 200000,
|
|
38
|
+
maxOutputTokens: 16384,
|
|
38
39
|
tier: 'efficient',
|
|
39
|
-
capabilities: new Set(['chat', 'streaming', 'vision']),
|
|
40
|
-
pricing: {
|
|
40
|
+
capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
|
|
41
|
+
pricing: {
|
|
42
|
+
text: {
|
|
43
|
+
input: 3,
|
|
44
|
+
output: 15
|
|
45
|
+
}
|
|
46
|
+
},
|
|
41
47
|
metadata: {
|
|
42
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
48
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-sonnet-4-20250514-v1:0",
|
|
43
49
|
providerName: "Anthropic",
|
|
44
50
|
responseStreamingSupported: true,
|
|
45
51
|
customizationsSupported: [],
|
|
@@ -58,12 +64,18 @@ export const awsModels = [{
|
|
|
58
64
|
id: 'anthropic.claude-haiku-4-5-20251001-v1:0',
|
|
59
65
|
provider: 'aws',
|
|
60
66
|
name: 'Claude Haiku 4.5',
|
|
61
|
-
contextWindow:
|
|
67
|
+
contextWindow: 200000,
|
|
68
|
+
maxOutputTokens: 16384,
|
|
62
69
|
tier: 'efficient',
|
|
63
|
-
capabilities: new Set(['chat', 'streaming', 'vision']),
|
|
64
|
-
pricing: {
|
|
70
|
+
capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
|
|
71
|
+
pricing: {
|
|
72
|
+
text: {
|
|
73
|
+
input: 1,
|
|
74
|
+
output: 5
|
|
75
|
+
}
|
|
76
|
+
},
|
|
65
77
|
metadata: {
|
|
66
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
78
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-haiku-4-5-20251001-v1:0",
|
|
67
79
|
providerName: "Anthropic",
|
|
68
80
|
responseStreamingSupported: true,
|
|
69
81
|
customizationsSupported: [],
|
|
@@ -87,31 +99,7 @@ export const awsModels = [{
|
|
|
87
99
|
capabilities: new Set(['image']),
|
|
88
100
|
pricing: {},
|
|
89
101
|
metadata: {
|
|
90
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
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",
|
|
102
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-image-erase-object-v1:0",
|
|
115
103
|
providerName: "Stability AI",
|
|
116
104
|
responseStreamingSupported: false,
|
|
117
105
|
customizationsSupported: [],
|
|
@@ -127,16 +115,16 @@ export const awsModels = [{
|
|
|
127
115
|
]
|
|
128
116
|
}
|
|
129
117
|
}, {
|
|
130
|
-
id: '
|
|
118
|
+
id: 'qwen.qwen3-235b-a22b-2507-v1:0',
|
|
131
119
|
provider: 'aws',
|
|
132
|
-
name: '
|
|
120
|
+
name: 'Qwen3 235B A22B 2507',
|
|
133
121
|
contextWindow: 0,
|
|
134
122
|
tier: 'efficient',
|
|
135
123
|
capabilities: new Set([]),
|
|
136
124
|
pricing: {},
|
|
137
125
|
metadata: {
|
|
138
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
139
|
-
providerName: "
|
|
126
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/qwen.qwen3-235b-a22b-2507-v1:0",
|
|
127
|
+
providerName: "Qwen",
|
|
140
128
|
responseStreamingSupported: true,
|
|
141
129
|
customizationsSupported: [],
|
|
142
130
|
inferenceTypesSupported: [
|
|
@@ -150,80 +138,79 @@ export const awsModels = [{
|
|
|
150
138
|
]
|
|
151
139
|
}
|
|
152
140
|
}, {
|
|
153
|
-
id: '
|
|
141
|
+
id: 'stability.stable-image-control-structure-v1:0',
|
|
154
142
|
provider: 'aws',
|
|
155
|
-
name: '
|
|
143
|
+
name: 'Stable Image Control Structure',
|
|
156
144
|
contextWindow: 0,
|
|
157
145
|
tier: 'efficient',
|
|
158
|
-
capabilities: new Set([]),
|
|
146
|
+
capabilities: new Set(['image']),
|
|
159
147
|
pricing: {},
|
|
160
148
|
metadata: {
|
|
161
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
162
|
-
providerName: "
|
|
149
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-image-control-structure-v1:0",
|
|
150
|
+
providerName: "Stability AI",
|
|
163
151
|
responseStreamingSupported: false,
|
|
164
152
|
customizationsSupported: [],
|
|
165
153
|
inferenceTypesSupported: [
|
|
166
|
-
"INFERENCE_PROFILE"
|
|
167
|
-
"ON_DEMAND"
|
|
154
|
+
"INFERENCE_PROFILE"
|
|
168
155
|
],
|
|
169
156
|
inputModalities: [
|
|
170
157
|
"TEXT",
|
|
171
|
-
"IMAGE"
|
|
172
|
-
"SPEECH",
|
|
173
|
-
"VIDEO"
|
|
158
|
+
"IMAGE"
|
|
174
159
|
],
|
|
175
160
|
outputModalities: [
|
|
176
|
-
"
|
|
161
|
+
"IMAGE"
|
|
177
162
|
]
|
|
178
163
|
}
|
|
179
164
|
}, {
|
|
180
|
-
id: '
|
|
165
|
+
id: 'openai.gpt-oss-120b-1:0',
|
|
181
166
|
provider: 'aws',
|
|
182
|
-
name: '
|
|
167
|
+
name: 'gpt-oss-120b',
|
|
183
168
|
contextWindow: 0,
|
|
184
169
|
tier: 'efficient',
|
|
185
|
-
capabilities: new Set([
|
|
170
|
+
capabilities: new Set([]),
|
|
186
171
|
pricing: {},
|
|
187
172
|
metadata: {
|
|
188
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
189
|
-
providerName: "
|
|
173
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/openai.gpt-oss-120b-1:0",
|
|
174
|
+
providerName: "OpenAI",
|
|
190
175
|
responseStreamingSupported: true,
|
|
191
176
|
customizationsSupported: [],
|
|
192
177
|
inferenceTypesSupported: [
|
|
193
|
-
"
|
|
178
|
+
"ON_DEMAND"
|
|
194
179
|
],
|
|
195
180
|
inputModalities: [
|
|
196
|
-
"TEXT"
|
|
197
|
-
"IMAGE"
|
|
181
|
+
"TEXT"
|
|
198
182
|
],
|
|
199
183
|
outputModalities: [
|
|
200
184
|
"TEXT"
|
|
201
185
|
]
|
|
202
186
|
}
|
|
203
187
|
}, {
|
|
204
|
-
id: '
|
|
188
|
+
id: 'anthropic.claude-sonnet-4-5-20250929-v1:0',
|
|
205
189
|
provider: 'aws',
|
|
206
|
-
name: '
|
|
190
|
+
name: 'Claude Sonnet 4.5',
|
|
207
191
|
contextWindow: 0,
|
|
208
192
|
tier: 'efficient',
|
|
209
|
-
capabilities: new Set([]),
|
|
210
|
-
pricing: {
|
|
193
|
+
capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
|
|
194
|
+
pricing: {
|
|
195
|
+
text: {
|
|
196
|
+
input: 3,
|
|
197
|
+
output: 15
|
|
198
|
+
}
|
|
199
|
+
},
|
|
211
200
|
metadata: {
|
|
212
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
213
|
-
providerName: "
|
|
214
|
-
responseStreamingSupported:
|
|
201
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-sonnet-4-5-20250929-v1:0",
|
|
202
|
+
providerName: "Anthropic",
|
|
203
|
+
responseStreamingSupported: true,
|
|
215
204
|
customizationsSupported: [],
|
|
216
205
|
inferenceTypesSupported: [
|
|
217
206
|
"INFERENCE_PROFILE"
|
|
218
207
|
],
|
|
219
208
|
inputModalities: [
|
|
220
209
|
"TEXT",
|
|
221
|
-
"IMAGE"
|
|
222
|
-
"SPEECH",
|
|
223
|
-
"VIDEO"
|
|
210
|
+
"IMAGE"
|
|
224
211
|
],
|
|
225
212
|
outputModalities: [
|
|
226
|
-
"
|
|
213
|
+
"TEXT"
|
|
227
214
|
]
|
|
228
215
|
}
|
|
229
216
|
}, {
|
|
@@ -235,7 +222,7 @@ export const awsModels = [{
|
|
|
235
222
|
capabilities: new Set(['image']),
|
|
236
223
|
pricing: {},
|
|
237
224
|
metadata: {
|
|
238
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
225
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-creative-upscale-v1:0",
|
|
239
226
|
providerName: "Stability AI",
|
|
240
227
|
responseStreamingSupported: false,
|
|
241
228
|
customizationsSupported: [],
|
|
@@ -250,32 +237,6 @@ export const awsModels = [{
|
|
|
250
237
|
"IMAGE"
|
|
251
238
|
]
|
|
252
239
|
}
|
|
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
240
|
}, {
|
|
280
241
|
id: 'stability.stable-outpaint-v1:0',
|
|
281
242
|
provider: 'aws',
|
|
@@ -285,7 +246,7 @@ export const awsModels = [{
|
|
|
285
246
|
capabilities: new Set(['image']),
|
|
286
247
|
pricing: {},
|
|
287
248
|
metadata: {
|
|
288
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
249
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-outpaint-v1:0",
|
|
289
250
|
providerName: "Stability AI",
|
|
290
251
|
responseStreamingSupported: false,
|
|
291
252
|
customizationsSupported: [],
|
|
@@ -309,7 +270,7 @@ export const awsModels = [{
|
|
|
309
270
|
capabilities: new Set(['image']),
|
|
310
271
|
pricing: {},
|
|
311
272
|
metadata: {
|
|
312
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
273
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-image-inpaint-v1:0",
|
|
313
274
|
providerName: "Stability AI",
|
|
314
275
|
responseStreamingSupported: false,
|
|
315
276
|
customizationsSupported: [],
|
|
@@ -328,12 +289,18 @@ export const awsModels = [{
|
|
|
328
289
|
id: 'anthropic.claude-opus-4-1-20250805-v1:0',
|
|
329
290
|
provider: 'aws',
|
|
330
291
|
name: 'Claude Opus 4.1',
|
|
331
|
-
contextWindow:
|
|
292
|
+
contextWindow: 200000,
|
|
293
|
+
maxOutputTokens: 16384,
|
|
332
294
|
tier: 'flagship',
|
|
333
|
-
capabilities: new Set(['chat', 'streaming', 'vision']),
|
|
334
|
-
pricing: {
|
|
295
|
+
capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
|
|
296
|
+
pricing: {
|
|
297
|
+
text: {
|
|
298
|
+
input: 15,
|
|
299
|
+
output: 75
|
|
300
|
+
}
|
|
301
|
+
},
|
|
335
302
|
metadata: {
|
|
336
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
303
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-opus-4-1-20250805-v1:0",
|
|
337
304
|
providerName: "Anthropic",
|
|
338
305
|
responseStreamingSupported: true,
|
|
339
306
|
customizationsSupported: [],
|
|
@@ -357,12 +324,11 @@ export const awsModels = [{
|
|
|
357
324
|
capabilities: new Set(['vision']),
|
|
358
325
|
pricing: {},
|
|
359
326
|
metadata: {
|
|
360
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
327
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.nova-pro-v1:0",
|
|
361
328
|
providerName: "Amazon",
|
|
362
329
|
responseStreamingSupported: true,
|
|
363
330
|
customizationsSupported: [],
|
|
364
331
|
inferenceTypesSupported: [
|
|
365
|
-
"ON_DEMAND",
|
|
366
332
|
"INFERENCE_PROFILE"
|
|
367
333
|
],
|
|
368
334
|
inputModalities: [
|
|
@@ -383,7 +349,7 @@ export const awsModels = [{
|
|
|
383
349
|
capabilities: new Set(['image']),
|
|
384
350
|
pricing: {},
|
|
385
351
|
metadata: {
|
|
386
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
352
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-image-remove-background-v1:0",
|
|
387
353
|
providerName: "Stability AI",
|
|
388
354
|
responseStreamingSupported: false,
|
|
389
355
|
customizationsSupported: [],
|
|
@@ -398,6 +364,29 @@ export const awsModels = [{
|
|
|
398
364
|
"IMAGE"
|
|
399
365
|
]
|
|
400
366
|
}
|
|
367
|
+
}, {
|
|
368
|
+
id: 'qwen.qwen3-coder-480b-a35b-v1:0',
|
|
369
|
+
provider: 'aws',
|
|
370
|
+
name: 'Qwen3 Coder 480B A35B Instruct',
|
|
371
|
+
contextWindow: 0,
|
|
372
|
+
tier: 'efficient',
|
|
373
|
+
capabilities: new Set([]),
|
|
374
|
+
pricing: {},
|
|
375
|
+
metadata: {
|
|
376
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/qwen.qwen3-coder-480b-a35b-v1:0",
|
|
377
|
+
providerName: "Qwen",
|
|
378
|
+
responseStreamingSupported: true,
|
|
379
|
+
customizationsSupported: [],
|
|
380
|
+
inferenceTypesSupported: [
|
|
381
|
+
"ON_DEMAND"
|
|
382
|
+
],
|
|
383
|
+
inputModalities: [
|
|
384
|
+
"TEXT"
|
|
385
|
+
],
|
|
386
|
+
outputModalities: [
|
|
387
|
+
"TEXT"
|
|
388
|
+
]
|
|
389
|
+
}
|
|
401
390
|
}, {
|
|
402
391
|
id: 'stability.stable-image-style-guide-v1:0',
|
|
403
392
|
provider: 'aws',
|
|
@@ -407,7 +396,7 @@ export const awsModels = [{
|
|
|
407
396
|
capabilities: new Set(['image']),
|
|
408
397
|
pricing: {},
|
|
409
398
|
metadata: {
|
|
410
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
399
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-image-style-guide-v1:0",
|
|
411
400
|
providerName: "Stability AI",
|
|
412
401
|
responseStreamingSupported: false,
|
|
413
402
|
customizationsSupported: [],
|
|
@@ -431,7 +420,7 @@ export const awsModels = [{
|
|
|
431
420
|
capabilities: new Set(['image']),
|
|
432
421
|
pricing: {},
|
|
433
422
|
metadata: {
|
|
434
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
423
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-image-control-sketch-v1:0",
|
|
435
424
|
providerName: "Stability AI",
|
|
436
425
|
responseStreamingSupported: false,
|
|
437
426
|
customizationsSupported: [],
|
|
@@ -455,7 +444,7 @@ export const awsModels = [{
|
|
|
455
444
|
capabilities: new Set(['image']),
|
|
456
445
|
pricing: {},
|
|
457
446
|
metadata: {
|
|
458
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
447
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-conservative-upscale-v1:0",
|
|
459
448
|
providerName: "Stability AI",
|
|
460
449
|
responseStreamingSupported: false,
|
|
461
450
|
customizationsSupported: [],
|
|
@@ -479,7 +468,7 @@ export const awsModels = [{
|
|
|
479
468
|
capabilities: new Set(['image']),
|
|
480
469
|
pricing: {},
|
|
481
470
|
metadata: {
|
|
482
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
471
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-image-search-recolor-v1:0",
|
|
483
472
|
providerName: "Stability AI",
|
|
484
473
|
responseStreamingSupported: false,
|
|
485
474
|
customizationsSupported: [],
|
|
@@ -503,7 +492,7 @@ export const awsModels = [{
|
|
|
503
492
|
capabilities: new Set([]),
|
|
504
493
|
pricing: {},
|
|
505
494
|
metadata: {
|
|
506
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
495
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/twelvelabs.pegasus-1-2-v1:0",
|
|
507
496
|
providerName: "TwelveLabs",
|
|
508
497
|
responseStreamingSupported: true,
|
|
509
498
|
customizationsSupported: [],
|
|
@@ -527,7 +516,7 @@ export const awsModels = [{
|
|
|
527
516
|
capabilities: new Set(['image']),
|
|
528
517
|
pricing: {},
|
|
529
518
|
metadata: {
|
|
530
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
519
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-style-transfer-v1:0",
|
|
531
520
|
providerName: "Stability AI",
|
|
532
521
|
responseStreamingSupported: false,
|
|
533
522
|
customizationsSupported: [],
|
|
@@ -551,12 +540,11 @@ export const awsModels = [{
|
|
|
551
540
|
capabilities: new Set(['embedding']),
|
|
552
541
|
pricing: {},
|
|
553
542
|
metadata: {
|
|
554
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
543
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/cohere.embed-v4:0",
|
|
555
544
|
providerName: "Cohere",
|
|
556
545
|
responseStreamingSupported: false,
|
|
557
546
|
customizationsSupported: [],
|
|
558
547
|
inferenceTypesSupported: [
|
|
559
|
-
"ON_DEMAND",
|
|
560
548
|
"INFERENCE_PROFILE"
|
|
561
549
|
],
|
|
562
550
|
inputModalities: [
|
|
@@ -567,6 +555,29 @@ export const awsModels = [{
|
|
|
567
555
|
"EMBEDDING"
|
|
568
556
|
]
|
|
569
557
|
}
|
|
558
|
+
}, {
|
|
559
|
+
id: 'deepseek.v3-v1:0',
|
|
560
|
+
provider: 'aws',
|
|
561
|
+
name: 'DeepSeek-V3.1',
|
|
562
|
+
contextWindow: 0,
|
|
563
|
+
tier: 'efficient',
|
|
564
|
+
capabilities: new Set([]),
|
|
565
|
+
pricing: {},
|
|
566
|
+
metadata: {
|
|
567
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/deepseek.v3-v1:0",
|
|
568
|
+
providerName: "DeepSeek",
|
|
569
|
+
responseStreamingSupported: true,
|
|
570
|
+
customizationsSupported: [],
|
|
571
|
+
inferenceTypesSupported: [
|
|
572
|
+
"ON_DEMAND"
|
|
573
|
+
],
|
|
574
|
+
inputModalities: [
|
|
575
|
+
"TEXT"
|
|
576
|
+
],
|
|
577
|
+
outputModalities: [
|
|
578
|
+
"TEXT"
|
|
579
|
+
]
|
|
580
|
+
}
|
|
570
581
|
}, {
|
|
571
582
|
id: 'stability.stable-image-search-replace-v1:0',
|
|
572
583
|
provider: 'aws',
|
|
@@ -576,7 +587,7 @@ export const awsModels = [{
|
|
|
576
587
|
capabilities: new Set(['image']),
|
|
577
588
|
pricing: {},
|
|
578
589
|
metadata: {
|
|
579
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
590
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/stability.stable-image-search-replace-v1:0",
|
|
580
591
|
providerName: "Stability AI",
|
|
581
592
|
responseStreamingSupported: false,
|
|
582
593
|
customizationsSupported: [],
|
|
@@ -600,7 +611,7 @@ export const awsModels = [{
|
|
|
600
611
|
capabilities: new Set([]),
|
|
601
612
|
pricing: {},
|
|
602
613
|
metadata: {
|
|
603
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
614
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/qwen.qwen3-coder-30b-a3b-v1:0",
|
|
604
615
|
providerName: "Qwen",
|
|
605
616
|
responseStreamingSupported: true,
|
|
606
617
|
customizationsSupported: [],
|
|
@@ -623,7 +634,7 @@ export const awsModels = [{
|
|
|
623
634
|
capabilities: new Set([]),
|
|
624
635
|
pricing: {},
|
|
625
636
|
metadata: {
|
|
626
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
637
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/qwen.qwen3-32b-v1:0",
|
|
627
638
|
providerName: "Qwen",
|
|
628
639
|
responseStreamingSupported: true,
|
|
629
640
|
customizationsSupported: [],
|
|
@@ -646,7 +657,7 @@ export const awsModels = [{
|
|
|
646
657
|
capabilities: new Set([]),
|
|
647
658
|
pricing: {},
|
|
648
659
|
metadata: {
|
|
649
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
660
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/openai.gpt-oss-20b-1:0",
|
|
650
661
|
providerName: "OpenAI",
|
|
651
662
|
responseStreamingSupported: true,
|
|
652
663
|
customizationsSupported: [],
|
|
@@ -661,17 +672,17 @@ export const awsModels = [{
|
|
|
661
672
|
]
|
|
662
673
|
}
|
|
663
674
|
}, {
|
|
664
|
-
id: 'amazon.titan-
|
|
675
|
+
id: 'amazon.titan-embed-text-v2:0',
|
|
665
676
|
provider: 'aws',
|
|
666
|
-
name: 'Titan Text
|
|
677
|
+
name: 'Titan Text Embeddings V2',
|
|
667
678
|
contextWindow: 0,
|
|
668
679
|
tier: 'efficient',
|
|
669
|
-
capabilities: new Set([]),
|
|
680
|
+
capabilities: new Set(['embedding']),
|
|
670
681
|
pricing: {},
|
|
671
682
|
metadata: {
|
|
672
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
683
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.titan-embed-text-v2:0",
|
|
673
684
|
providerName: "Amazon",
|
|
674
|
-
responseStreamingSupported:
|
|
685
|
+
responseStreamingSupported: false,
|
|
675
686
|
customizationsSupported: [],
|
|
676
687
|
inferenceTypesSupported: [
|
|
677
688
|
"ON_DEMAND"
|
|
@@ -680,81 +691,7 @@ export const awsModels = [{
|
|
|
680
691
|
"TEXT"
|
|
681
692
|
],
|
|
682
693
|
outputModalities: [
|
|
683
|
-
"
|
|
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"
|
|
694
|
+
"EMBEDDING"
|
|
758
695
|
]
|
|
759
696
|
}
|
|
760
697
|
}, {
|
|
@@ -766,7 +703,7 @@ export const awsModels = [{
|
|
|
766
703
|
capabilities: new Set(['vision']),
|
|
767
704
|
pricing: {},
|
|
768
705
|
metadata: {
|
|
769
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
706
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.nova-premier-v1:0:8k",
|
|
770
707
|
providerName: "Amazon",
|
|
771
708
|
responseStreamingSupported: true,
|
|
772
709
|
customizationsSupported: [],
|
|
@@ -789,7 +726,7 @@ export const awsModels = [{
|
|
|
789
726
|
capabilities: new Set(['vision']),
|
|
790
727
|
pricing: {},
|
|
791
728
|
metadata: {
|
|
792
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
729
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.nova-premier-v1:0:20k",
|
|
793
730
|
providerName: "Amazon",
|
|
794
731
|
responseStreamingSupported: true,
|
|
795
732
|
customizationsSupported: [],
|
|
@@ -812,7 +749,7 @@ export const awsModels = [{
|
|
|
812
749
|
capabilities: new Set(['vision']),
|
|
813
750
|
pricing: {},
|
|
814
751
|
metadata: {
|
|
815
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
752
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.nova-premier-v1:0:1000k",
|
|
816
753
|
providerName: "Amazon",
|
|
817
754
|
responseStreamingSupported: true,
|
|
818
755
|
customizationsSupported: [],
|
|
@@ -835,7 +772,7 @@ export const awsModels = [{
|
|
|
835
772
|
capabilities: new Set(['vision']),
|
|
836
773
|
pricing: {},
|
|
837
774
|
metadata: {
|
|
838
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
775
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.nova-premier-v1:0:mm",
|
|
839
776
|
providerName: "Amazon",
|
|
840
777
|
responseStreamingSupported: true,
|
|
841
778
|
customizationsSupported: [],
|
|
@@ -858,7 +795,7 @@ export const awsModels = [{
|
|
|
858
795
|
capabilities: new Set(['vision']),
|
|
859
796
|
pricing: {},
|
|
860
797
|
metadata: {
|
|
861
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
798
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.nova-premier-v1:0",
|
|
862
799
|
providerName: "Amazon",
|
|
863
800
|
responseStreamingSupported: true,
|
|
864
801
|
customizationsSupported: [],
|
|
@@ -875,20 +812,20 @@ export const awsModels = [{
|
|
|
875
812
|
]
|
|
876
813
|
}
|
|
877
814
|
}, {
|
|
878
|
-
id: 'amazon.nova-
|
|
815
|
+
id: 'amazon.nova-lite-v1:0',
|
|
879
816
|
provider: 'aws',
|
|
880
|
-
name: 'Nova
|
|
817
|
+
name: 'Nova Lite',
|
|
881
818
|
contextWindow: 0,
|
|
882
819
|
tier: 'efficient',
|
|
883
820
|
capabilities: new Set(['vision']),
|
|
884
821
|
pricing: {},
|
|
885
822
|
metadata: {
|
|
886
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
823
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.nova-lite-v1:0",
|
|
887
824
|
providerName: "Amazon",
|
|
888
825
|
responseStreamingSupported: true,
|
|
889
826
|
customizationsSupported: [],
|
|
890
827
|
inferenceTypesSupported: [
|
|
891
|
-
"
|
|
828
|
+
"INFERENCE_PROFILE"
|
|
892
829
|
],
|
|
893
830
|
inputModalities: [
|
|
894
831
|
"TEXT",
|
|
@@ -900,969 +837,30 @@ export const awsModels = [{
|
|
|
900
837
|
]
|
|
901
838
|
}
|
|
902
839
|
}, {
|
|
903
|
-
id: 'amazon.nova-
|
|
840
|
+
id: 'amazon.nova-micro-v1:0',
|
|
904
841
|
provider: 'aws',
|
|
905
|
-
name: 'Nova
|
|
842
|
+
name: 'Nova Micro',
|
|
906
843
|
contextWindow: 0,
|
|
907
844
|
tier: 'efficient',
|
|
908
|
-
capabilities: new Set([
|
|
845
|
+
capabilities: new Set([]),
|
|
909
846
|
pricing: {},
|
|
910
847
|
metadata: {
|
|
911
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
848
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/amazon.nova-micro-v1:0",
|
|
912
849
|
providerName: "Amazon",
|
|
913
850
|
responseStreamingSupported: true,
|
|
914
|
-
customizationsSupported: [
|
|
915
|
-
"FINE_TUNING",
|
|
916
|
-
"DISTILLATION"
|
|
917
|
-
],
|
|
851
|
+
customizationsSupported: [],
|
|
918
852
|
inferenceTypesSupported: [
|
|
919
|
-
"
|
|
853
|
+
"INFERENCE_PROFILE"
|
|
920
854
|
],
|
|
921
855
|
inputModalities: [
|
|
922
|
-
"TEXT"
|
|
923
|
-
"IMAGE",
|
|
924
|
-
"VIDEO"
|
|
856
|
+
"TEXT"
|
|
925
857
|
],
|
|
926
858
|
outputModalities: [
|
|
927
859
|
"TEXT"
|
|
928
860
|
]
|
|
929
861
|
}
|
|
930
862
|
}, {
|
|
931
|
-
id: '
|
|
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',
|
|
863
|
+
id: 'anthropic.claude-3-5-sonnet-20240620-v1:0',
|
|
1866
864
|
provider: 'aws',
|
|
1867
865
|
name: 'Claude 3.5 Sonnet',
|
|
1868
866
|
contextWindow: 200000,
|
|
@@ -1876,12 +874,11 @@ export const awsModels = [{
|
|
|
1876
874
|
}
|
|
1877
875
|
},
|
|
1878
876
|
metadata: {
|
|
1879
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
877
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-3-5-sonnet-20240620-v1:0",
|
|
1880
878
|
providerName: "Anthropic",
|
|
1881
879
|
responseStreamingSupported: true,
|
|
1882
880
|
customizationsSupported: [],
|
|
1883
881
|
inferenceTypesSupported: [
|
|
1884
|
-
"ON_DEMAND",
|
|
1885
882
|
"INFERENCE_PROFILE"
|
|
1886
883
|
],
|
|
1887
884
|
inputModalities: [
|
|
@@ -1893,9 +890,9 @@ export const awsModels = [{
|
|
|
1893
890
|
]
|
|
1894
891
|
}
|
|
1895
892
|
}, {
|
|
1896
|
-
id: 'anthropic.claude-3-
|
|
893
|
+
id: 'anthropic.claude-3-7-sonnet-20250219-v1:0',
|
|
1897
894
|
provider: 'aws',
|
|
1898
|
-
name: 'Claude 3.
|
|
895
|
+
name: 'Claude 3.7 Sonnet',
|
|
1899
896
|
contextWindow: 200000,
|
|
1900
897
|
maxOutputTokens: 8192,
|
|
1901
898
|
tier: 'efficient',
|
|
@@ -1907,7 +904,7 @@ export const awsModels = [{
|
|
|
1907
904
|
}
|
|
1908
905
|
},
|
|
1909
906
|
metadata: {
|
|
1910
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
907
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-3-7-sonnet-20250219-v1:0",
|
|
1911
908
|
providerName: "Anthropic",
|
|
1912
909
|
responseStreamingSupported: true,
|
|
1913
910
|
customizationsSupported: [],
|
|
@@ -1923,68 +920,19 @@ export const awsModels = [{
|
|
|
1923
920
|
]
|
|
1924
921
|
}
|
|
1925
922
|
}, {
|
|
1926
|
-
id: 'anthropic.claude-3-
|
|
923
|
+
id: 'anthropic.claude-3-haiku-20240307-v1:0:200k',
|
|
1927
924
|
provider: 'aws',
|
|
1928
|
-
name: 'Claude 3
|
|
925
|
+
name: 'Claude 3 Haiku',
|
|
1929
926
|
contextWindow: 0,
|
|
1930
927
|
tier: 'efficient',
|
|
1931
928
|
capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
|
|
1932
929
|
pricing: {},
|
|
1933
930
|
metadata: {
|
|
1934
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
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",
|
|
931
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-3-haiku-20240307-v1:0:200k",
|
|
1982
932
|
providerName: "Anthropic",
|
|
1983
933
|
responseStreamingSupported: true,
|
|
1984
934
|
customizationsSupported: [],
|
|
1985
|
-
inferenceTypesSupported: [
|
|
1986
|
-
"INFERENCE_PROFILE"
|
|
1987
|
-
],
|
|
935
|
+
inferenceTypesSupported: [],
|
|
1988
936
|
inputModalities: [
|
|
1989
937
|
"TEXT",
|
|
1990
938
|
"IMAGE"
|
|
@@ -1994,194 +942,175 @@ export const awsModels = [{
|
|
|
1994
942
|
]
|
|
1995
943
|
}
|
|
1996
944
|
}, {
|
|
1997
|
-
id: '
|
|
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',
|
|
945
|
+
id: 'anthropic.claude-3-haiku-20240307-v1:0',
|
|
2027
946
|
provider: 'aws',
|
|
2028
|
-
name: '
|
|
2029
|
-
contextWindow:
|
|
947
|
+
name: 'Claude 3 Haiku',
|
|
948
|
+
contextWindow: 200000,
|
|
2030
949
|
maxOutputTokens: 4096,
|
|
2031
|
-
tier: '
|
|
2032
|
-
capabilities: new Set(['chat', 'streaming']),
|
|
950
|
+
tier: 'efficient',
|
|
951
|
+
capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
|
|
2033
952
|
pricing: {
|
|
2034
953
|
text: {
|
|
2035
|
-
input:
|
|
2036
|
-
output:
|
|
954
|
+
input: 0.25,
|
|
955
|
+
output: 1.25
|
|
2037
956
|
}
|
|
2038
957
|
},
|
|
2039
958
|
metadata: {
|
|
2040
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
2041
|
-
providerName: "
|
|
959
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-3-haiku-20240307-v1:0",
|
|
960
|
+
providerName: "Anthropic",
|
|
2042
961
|
responseStreamingSupported: true,
|
|
2043
962
|
customizationsSupported: [],
|
|
2044
963
|
inferenceTypesSupported: [
|
|
2045
|
-
"
|
|
964
|
+
"INFERENCE_PROFILE"
|
|
2046
965
|
],
|
|
2047
966
|
inputModalities: [
|
|
2048
|
-
"TEXT"
|
|
967
|
+
"TEXT",
|
|
968
|
+
"IMAGE"
|
|
2049
969
|
],
|
|
2050
970
|
outputModalities: [
|
|
2051
971
|
"TEXT"
|
|
2052
972
|
]
|
|
2053
973
|
}
|
|
2054
974
|
}, {
|
|
2055
|
-
id: '
|
|
975
|
+
id: 'anthropic.claude-3-5-sonnet-20241022-v2:0',
|
|
2056
976
|
provider: 'aws',
|
|
2057
|
-
name: '
|
|
2058
|
-
contextWindow:
|
|
977
|
+
name: 'Claude 3.5 Sonnet v2',
|
|
978
|
+
contextWindow: 200000,
|
|
979
|
+
maxOutputTokens: 8192,
|
|
2059
980
|
tier: 'efficient',
|
|
2060
|
-
capabilities: new Set(['
|
|
2061
|
-
pricing: {
|
|
981
|
+
capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
|
|
982
|
+
pricing: {
|
|
983
|
+
text: {
|
|
984
|
+
input: 3,
|
|
985
|
+
output: 15
|
|
986
|
+
}
|
|
987
|
+
},
|
|
2062
988
|
metadata: {
|
|
2063
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
2064
|
-
providerName: "
|
|
2065
|
-
responseStreamingSupported:
|
|
989
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-3-5-sonnet-20241022-v2:0",
|
|
990
|
+
providerName: "Anthropic",
|
|
991
|
+
responseStreamingSupported: true,
|
|
2066
992
|
customizationsSupported: [],
|
|
2067
993
|
inferenceTypesSupported: [
|
|
2068
|
-
"
|
|
994
|
+
"INFERENCE_PROFILE"
|
|
2069
995
|
],
|
|
2070
996
|
inputModalities: [
|
|
2071
|
-
"TEXT"
|
|
997
|
+
"TEXT",
|
|
998
|
+
"IMAGE"
|
|
2072
999
|
],
|
|
2073
1000
|
outputModalities: [
|
|
2074
|
-
"
|
|
1001
|
+
"TEXT"
|
|
2075
1002
|
]
|
|
2076
1003
|
}
|
|
2077
1004
|
}, {
|
|
2078
|
-
id: '
|
|
1005
|
+
id: 'anthropic.claude-3-5-haiku-20241022-v1:0',
|
|
2079
1006
|
provider: 'aws',
|
|
2080
|
-
name: '
|
|
2081
|
-
contextWindow:
|
|
1007
|
+
name: 'Claude 3.5 Haiku',
|
|
1008
|
+
contextWindow: 200000,
|
|
1009
|
+
maxOutputTokens: 8192,
|
|
2082
1010
|
tier: 'efficient',
|
|
2083
|
-
capabilities: new Set(['
|
|
1011
|
+
capabilities: new Set(['chat', 'streaming', 'tools']),
|
|
2084
1012
|
pricing: {},
|
|
2085
1013
|
metadata: {
|
|
2086
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
2087
|
-
providerName: "
|
|
2088
|
-
responseStreamingSupported:
|
|
1014
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-3-5-haiku-20241022-v1:0",
|
|
1015
|
+
providerName: "Anthropic",
|
|
1016
|
+
responseStreamingSupported: true,
|
|
2089
1017
|
customizationsSupported: [],
|
|
2090
1018
|
inferenceTypesSupported: [
|
|
2091
|
-
"
|
|
1019
|
+
"INFERENCE_PROFILE"
|
|
2092
1020
|
],
|
|
2093
1021
|
inputModalities: [
|
|
2094
1022
|
"TEXT"
|
|
2095
1023
|
],
|
|
2096
1024
|
outputModalities: [
|
|
2097
|
-
"
|
|
1025
|
+
"TEXT"
|
|
2098
1026
|
]
|
|
2099
1027
|
}
|
|
2100
1028
|
}, {
|
|
2101
|
-
id: '
|
|
1029
|
+
id: 'anthropic.claude-opus-4-20250514-v1:0',
|
|
2102
1030
|
provider: 'aws',
|
|
2103
|
-
name: '
|
|
2104
|
-
contextWindow:
|
|
2105
|
-
|
|
2106
|
-
|
|
1031
|
+
name: 'Claude Opus 4',
|
|
1032
|
+
contextWindow: 200000,
|
|
1033
|
+
maxOutputTokens: 16384,
|
|
1034
|
+
tier: 'flagship',
|
|
1035
|
+
capabilities: new Set(['chat', 'streaming', 'vision', 'tools']),
|
|
2107
1036
|
pricing: {},
|
|
2108
1037
|
metadata: {
|
|
2109
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
2110
|
-
providerName: "
|
|
2111
|
-
responseStreamingSupported:
|
|
1038
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/anthropic.claude-opus-4-20250514-v1:0",
|
|
1039
|
+
providerName: "Anthropic",
|
|
1040
|
+
responseStreamingSupported: true,
|
|
2112
1041
|
customizationsSupported: [],
|
|
2113
1042
|
inferenceTypesSupported: [
|
|
2114
|
-
"
|
|
1043
|
+
"INFERENCE_PROFILE"
|
|
2115
1044
|
],
|
|
2116
1045
|
inputModalities: [
|
|
2117
|
-
"TEXT"
|
|
1046
|
+
"TEXT",
|
|
1047
|
+
"IMAGE"
|
|
2118
1048
|
],
|
|
2119
1049
|
outputModalities: [
|
|
2120
|
-
"
|
|
1050
|
+
"TEXT"
|
|
2121
1051
|
]
|
|
2122
1052
|
}
|
|
2123
1053
|
}, {
|
|
2124
|
-
id: '
|
|
1054
|
+
id: 'deepseek.r1-v1:0',
|
|
2125
1055
|
provider: 'aws',
|
|
2126
|
-
name: '
|
|
1056
|
+
name: 'DeepSeek-R1',
|
|
2127
1057
|
contextWindow: 0,
|
|
2128
1058
|
tier: 'efficient',
|
|
2129
|
-
capabilities: new Set([
|
|
1059
|
+
capabilities: new Set([]),
|
|
2130
1060
|
pricing: {},
|
|
2131
1061
|
metadata: {
|
|
2132
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
2133
|
-
providerName: "
|
|
2134
|
-
responseStreamingSupported:
|
|
1062
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/deepseek.r1-v1:0",
|
|
1063
|
+
providerName: "DeepSeek",
|
|
1064
|
+
responseStreamingSupported: true,
|
|
2135
1065
|
customizationsSupported: [],
|
|
2136
1066
|
inferenceTypesSupported: [
|
|
2137
|
-
"
|
|
1067
|
+
"INFERENCE_PROFILE"
|
|
2138
1068
|
],
|
|
2139
1069
|
inputModalities: [
|
|
2140
1070
|
"TEXT"
|
|
2141
1071
|
],
|
|
2142
1072
|
outputModalities: [
|
|
2143
|
-
"
|
|
1073
|
+
"TEXT"
|
|
2144
1074
|
]
|
|
2145
1075
|
}
|
|
2146
1076
|
}, {
|
|
2147
|
-
id: '
|
|
1077
|
+
id: 'mistral.pixtral-large-2502-v1:0',
|
|
2148
1078
|
provider: 'aws',
|
|
2149
|
-
name: '
|
|
1079
|
+
name: 'Pixtral Large (25.02)',
|
|
2150
1080
|
contextWindow: 0,
|
|
2151
|
-
tier: '
|
|
2152
|
-
capabilities: new Set(['chat']),
|
|
1081
|
+
tier: 'flagship',
|
|
1082
|
+
capabilities: new Set(['chat', 'streaming', 'vision']),
|
|
2153
1083
|
pricing: {},
|
|
2154
1084
|
metadata: {
|
|
2155
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
2156
|
-
providerName: "
|
|
2157
|
-
responseStreamingSupported:
|
|
1085
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/mistral.pixtral-large-2502-v1:0",
|
|
1086
|
+
providerName: "Mistral AI",
|
|
1087
|
+
responseStreamingSupported: true,
|
|
2158
1088
|
customizationsSupported: [],
|
|
2159
1089
|
inferenceTypesSupported: [
|
|
2160
|
-
"
|
|
1090
|
+
"INFERENCE_PROFILE"
|
|
2161
1091
|
],
|
|
2162
1092
|
inputModalities: [
|
|
2163
|
-
"TEXT"
|
|
1093
|
+
"TEXT",
|
|
1094
|
+
"IMAGE"
|
|
2164
1095
|
],
|
|
2165
1096
|
outputModalities: [
|
|
2166
1097
|
"TEXT"
|
|
2167
1098
|
]
|
|
2168
1099
|
}
|
|
2169
1100
|
}, {
|
|
2170
|
-
id: '
|
|
1101
|
+
id: 'meta.llama3-1-8b-instruct-v1:0:128k',
|
|
2171
1102
|
provider: 'aws',
|
|
2172
|
-
name: '
|
|
1103
|
+
name: 'Llama 3.1 8B Instruct',
|
|
2173
1104
|
contextWindow: 0,
|
|
2174
1105
|
tier: 'efficient',
|
|
2175
|
-
capabilities: new Set([]),
|
|
1106
|
+
capabilities: new Set(['chat', 'streaming']),
|
|
2176
1107
|
pricing: {},
|
|
2177
1108
|
metadata: {
|
|
2178
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
2179
|
-
providerName: "
|
|
1109
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-1-8b-instruct-v1:0:128k",
|
|
1110
|
+
providerName: "Meta",
|
|
2180
1111
|
responseStreamingSupported: true,
|
|
2181
1112
|
customizationsSupported: [],
|
|
2182
|
-
inferenceTypesSupported: [
|
|
2183
|
-
"INFERENCE_PROFILE"
|
|
2184
|
-
],
|
|
1113
|
+
inferenceTypesSupported: [],
|
|
2185
1114
|
inputModalities: [
|
|
2186
1115
|
"TEXT"
|
|
2187
1116
|
],
|
|
@@ -2190,10 +1119,10 @@ export const awsModels = [{
|
|
|
2190
1119
|
]
|
|
2191
1120
|
}
|
|
2192
1121
|
}, {
|
|
2193
|
-
id: 'meta.llama3-8b-instruct-v1:0',
|
|
1122
|
+
id: 'meta.llama3-1-8b-instruct-v1:0',
|
|
2194
1123
|
provider: 'aws',
|
|
2195
|
-
name: 'Llama 3 8B Instruct',
|
|
2196
|
-
contextWindow:
|
|
1124
|
+
name: 'Llama 3.1 8B Instruct',
|
|
1125
|
+
contextWindow: 128000,
|
|
2197
1126
|
maxOutputTokens: 2048,
|
|
2198
1127
|
tier: 'efficient',
|
|
2199
1128
|
capabilities: new Set(['chat', 'streaming']),
|
|
@@ -2204,12 +1133,12 @@ export const awsModels = [{
|
|
|
2204
1133
|
}
|
|
2205
1134
|
},
|
|
2206
1135
|
metadata: {
|
|
2207
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1136
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-1-8b-instruct-v1:0",
|
|
2208
1137
|
providerName: "Meta",
|
|
2209
1138
|
responseStreamingSupported: true,
|
|
2210
1139
|
customizationsSupported: [],
|
|
2211
1140
|
inferenceTypesSupported: [
|
|
2212
|
-
"
|
|
1141
|
+
"INFERENCE_PROFILE"
|
|
2213
1142
|
],
|
|
2214
1143
|
inputModalities: [
|
|
2215
1144
|
"TEXT"
|
|
@@ -2219,27 +1148,19 @@ export const awsModels = [{
|
|
|
2219
1148
|
]
|
|
2220
1149
|
}
|
|
2221
1150
|
}, {
|
|
2222
|
-
id: 'meta.llama3-70b-instruct-v1:0',
|
|
1151
|
+
id: 'meta.llama3-1-70b-instruct-v1:0:128k',
|
|
2223
1152
|
provider: 'aws',
|
|
2224
|
-
name: 'Llama 3 70B Instruct',
|
|
2225
|
-
contextWindow:
|
|
2226
|
-
maxOutputTokens: 2048,
|
|
1153
|
+
name: 'Llama 3.1 70B Instruct',
|
|
1154
|
+
contextWindow: 0,
|
|
2227
1155
|
tier: 'efficient',
|
|
2228
1156
|
capabilities: new Set(['chat', 'streaming']),
|
|
2229
|
-
pricing: {
|
|
2230
|
-
text: {
|
|
2231
|
-
input: 2.65,
|
|
2232
|
-
output: 3.5
|
|
2233
|
-
}
|
|
2234
|
-
},
|
|
1157
|
+
pricing: {},
|
|
2235
1158
|
metadata: {
|
|
2236
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1159
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-1-70b-instruct-v1:0:128k",
|
|
2237
1160
|
providerName: "Meta",
|
|
2238
1161
|
responseStreamingSupported: true,
|
|
2239
1162
|
customizationsSupported: [],
|
|
2240
|
-
inferenceTypesSupported: [
|
|
2241
|
-
"ON_DEMAND"
|
|
2242
|
-
],
|
|
1163
|
+
inferenceTypesSupported: [],
|
|
2243
1164
|
inputModalities: [
|
|
2244
1165
|
"TEXT"
|
|
2245
1166
|
],
|
|
@@ -2248,21 +1169,21 @@ export const awsModels = [{
|
|
|
2248
1169
|
]
|
|
2249
1170
|
}
|
|
2250
1171
|
}, {
|
|
2251
|
-
id: 'meta.llama3-1-
|
|
1172
|
+
id: 'meta.llama3-1-70b-instruct-v1:0',
|
|
2252
1173
|
provider: 'aws',
|
|
2253
|
-
name: 'Llama 3.1
|
|
1174
|
+
name: 'Llama 3.1 70B Instruct',
|
|
2254
1175
|
contextWindow: 128000,
|
|
2255
1176
|
maxOutputTokens: 2048,
|
|
2256
1177
|
tier: 'efficient',
|
|
2257
1178
|
capabilities: new Set(['chat', 'streaming']),
|
|
2258
1179
|
pricing: {
|
|
2259
1180
|
text: {
|
|
2260
|
-
input:
|
|
2261
|
-
output:
|
|
1181
|
+
input: 2.65,
|
|
1182
|
+
output: 3.5
|
|
2262
1183
|
}
|
|
2263
1184
|
},
|
|
2264
1185
|
metadata: {
|
|
2265
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1186
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-1-70b-instruct-v1:0",
|
|
2266
1187
|
providerName: "Meta",
|
|
2267
1188
|
responseStreamingSupported: true,
|
|
2268
1189
|
customizationsSupported: [],
|
|
@@ -2277,21 +1198,21 @@ export const awsModels = [{
|
|
|
2277
1198
|
]
|
|
2278
1199
|
}
|
|
2279
1200
|
}, {
|
|
2280
|
-
id: 'meta.llama3-1-
|
|
1201
|
+
id: 'meta.llama3-1-405b-instruct-v1:0',
|
|
2281
1202
|
provider: 'aws',
|
|
2282
|
-
name: 'Llama 3.1
|
|
1203
|
+
name: 'Llama 3.1 405B Instruct',
|
|
2283
1204
|
contextWindow: 128000,
|
|
2284
|
-
maxOutputTokens:
|
|
2285
|
-
tier: '
|
|
1205
|
+
maxOutputTokens: 4096,
|
|
1206
|
+
tier: 'flagship',
|
|
2286
1207
|
capabilities: new Set(['chat', 'streaming']),
|
|
2287
1208
|
pricing: {
|
|
2288
1209
|
text: {
|
|
2289
|
-
input:
|
|
2290
|
-
output:
|
|
1210
|
+
input: 5.32,
|
|
1211
|
+
output: 16
|
|
2291
1212
|
}
|
|
2292
1213
|
},
|
|
2293
1214
|
metadata: {
|
|
2294
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1215
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-1-405b-instruct-v1:0",
|
|
2295
1216
|
providerName: "Meta",
|
|
2296
1217
|
responseStreamingSupported: true,
|
|
2297
1218
|
customizationsSupported: [],
|
|
@@ -2320,7 +1241,7 @@ export const awsModels = [{
|
|
|
2320
1241
|
}
|
|
2321
1242
|
},
|
|
2322
1243
|
metadata: {
|
|
2323
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1244
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-2-11b-instruct-v1:0",
|
|
2324
1245
|
providerName: "Meta",
|
|
2325
1246
|
responseStreamingSupported: true,
|
|
2326
1247
|
customizationsSupported: [],
|
|
@@ -2350,7 +1271,7 @@ export const awsModels = [{
|
|
|
2350
1271
|
}
|
|
2351
1272
|
},
|
|
2352
1273
|
metadata: {
|
|
2353
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1274
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-2-90b-instruct-v1:0",
|
|
2354
1275
|
providerName: "Meta",
|
|
2355
1276
|
responseStreamingSupported: true,
|
|
2356
1277
|
customizationsSupported: [],
|
|
@@ -2380,7 +1301,7 @@ export const awsModels = [{
|
|
|
2380
1301
|
}
|
|
2381
1302
|
},
|
|
2382
1303
|
metadata: {
|
|
2383
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1304
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-2-1b-instruct-v1:0",
|
|
2384
1305
|
providerName: "Meta",
|
|
2385
1306
|
responseStreamingSupported: true,
|
|
2386
1307
|
customizationsSupported: [],
|
|
@@ -2409,7 +1330,7 @@ export const awsModels = [{
|
|
|
2409
1330
|
}
|
|
2410
1331
|
},
|
|
2411
1332
|
metadata: {
|
|
2412
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1333
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-2-3b-instruct-v1:0",
|
|
2413
1334
|
providerName: "Meta",
|
|
2414
1335
|
responseStreamingSupported: true,
|
|
2415
1336
|
customizationsSupported: [],
|
|
@@ -2432,11 +1353,12 @@ export const awsModels = [{
|
|
|
2432
1353
|
capabilities: new Set(['chat', 'streaming']),
|
|
2433
1354
|
pricing: {},
|
|
2434
1355
|
metadata: {
|
|
2435
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1356
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama3-3-70b-instruct-v1:0",
|
|
2436
1357
|
providerName: "Meta",
|
|
2437
1358
|
responseStreamingSupported: true,
|
|
2438
1359
|
customizationsSupported: [],
|
|
2439
1360
|
inferenceTypesSupported: [
|
|
1361
|
+
"ON_DEMAND",
|
|
2440
1362
|
"INFERENCE_PROFILE"
|
|
2441
1363
|
],
|
|
2442
1364
|
inputModalities: [
|
|
@@ -2455,7 +1377,7 @@ export const awsModels = [{
|
|
|
2455
1377
|
capabilities: new Set(['chat', 'streaming', 'vision']),
|
|
2456
1378
|
pricing: {},
|
|
2457
1379
|
metadata: {
|
|
2458
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1380
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama4-scout-17b-instruct-v1:0",
|
|
2459
1381
|
providerName: "Meta",
|
|
2460
1382
|
responseStreamingSupported: true,
|
|
2461
1383
|
customizationsSupported: [],
|
|
@@ -2479,7 +1401,7 @@ export const awsModels = [{
|
|
|
2479
1401
|
capabilities: new Set(['chat', 'streaming', 'vision']),
|
|
2480
1402
|
pricing: {},
|
|
2481
1403
|
metadata: {
|
|
2482
|
-
modelArn: "arn:aws:bedrock:us-east-
|
|
1404
|
+
modelArn: "arn:aws:bedrock:us-east-2::foundation-model/meta.llama4-maverick-17b-instruct-v1:0",
|
|
2483
1405
|
providerName: "Meta",
|
|
2484
1406
|
responseStreamingSupported: true,
|
|
2485
1407
|
customizationsSupported: [],
|
|
@@ -2494,139 +1416,5 @@ export const awsModels = [{
|
|
|
2494
1416
|
"TEXT"
|
|
2495
1417
|
]
|
|
2496
1418
|
}
|
|
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
1419
|
}];
|
|
2632
1420
|
//# sourceMappingURL=aws.js.map
|