@dcdr/contracts 2.5.0 → 2.5.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/catalog/anthropic.contract.d.ts.map +1 -1
- package/dist/catalog/anthropic.contract.js +83 -1
- package/dist/catalog/gemini.contract.d.ts.map +1 -1
- package/dist/catalog/gemini.contract.js +58 -0
- package/dist/catalog/grok.contract.d.ts.map +1 -1
- package/dist/catalog/grok.contract.js +36 -0
- package/dist/catalog/mistral.contract.d.ts +1 -1
- package/dist/catalog/mistral.contract.d.ts.map +1 -1
- package/dist/catalog/mistral.contract.js +224 -4
- package/dist/intent.contract.d.ts +8 -0
- package/dist/intent.contract.d.ts.map +1 -1
- package/dist/intent.contract.js +8 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"anthropic.contract.d.ts","sourceRoot":"","sources":["../../src/catalog/anthropic.contract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,wBAAwB,EACxB,2BAA2B,EAC5B,MAAM,8BAA8B,CAAC;AAKtC,eAAO,MAAM,yCAAyC,EAAE,2BAA2B,EAMhF,CAAC;AAEJ;;GAEG;AACH,wBAAgB,sCAAsC,CACpD,IAAI,EAAE,8BAA8B,GACnC,4BAA4B,EAAE,
|
|
1
|
+
{"version":3,"file":"anthropic.contract.d.ts","sourceRoot":"","sources":["../../src/catalog/anthropic.contract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,wBAAwB,EACxB,2BAA2B,EAC5B,MAAM,8BAA8B,CAAC;AAKtC,eAAO,MAAM,yCAAyC,EAAE,2BAA2B,EAMhF,CAAC;AAEJ;;GAEG;AACH,wBAAgB,sCAAsC,CACpD,IAAI,EAAE,8BAA8B,GACnC,4BAA4B,EAAE,CAqahC;AAED;;GAEG;AACH,wBAAgB,uCAAuC,CACrD,IAAI,EAAE,8BAA8B,GACnC,MAAM,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAQ1C"}
|
|
@@ -257,6 +257,49 @@ function buildAnthropicProviderModelDefinitions(args) {
|
|
|
257
257
|
updatedAt: "2026-05-04",
|
|
258
258
|
},
|
|
259
259
|
},
|
|
260
|
+
{
|
|
261
|
+
id: "claude-sonnet-5",
|
|
262
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
263
|
+
tokenUsageCovered: true,
|
|
264
|
+
pricing: args.pricingPerMillionTokens({
|
|
265
|
+
input: 2.0,
|
|
266
|
+
output: 10.0,
|
|
267
|
+
tiers: [
|
|
268
|
+
{
|
|
269
|
+
name: "standard",
|
|
270
|
+
condition: "Standard pricing from 2026-09-01 (promotional pricing through 2026-08-31)",
|
|
271
|
+
input: 3.0,
|
|
272
|
+
output: 15.0,
|
|
273
|
+
},
|
|
274
|
+
],
|
|
275
|
+
sourceUrl: ANTHROPIC_PRICING_URL,
|
|
276
|
+
notes: "Anthropic pricing page snapshot 2026-07-04. Base values reflect the promotional Sonnet 5 rate shown as active through 2026-08-31.",
|
|
277
|
+
}),
|
|
278
|
+
parameterSupport: {
|
|
279
|
+
parameters: {
|
|
280
|
+
[args.catalogEnums.promptParameterKey.TEMPERATURE]: args.catalogEnums.parameterSupportStatus.NOT_SUPPORTED,
|
|
281
|
+
[args.catalogEnums.promptParameterKey.TOP_P]: args.catalogEnums.parameterSupportStatus.NOT_SUPPORTED,
|
|
282
|
+
},
|
|
283
|
+
notes: "Sonnet 5 rejects explicit temperature/top_p on the current Anthropic Messages API path in provider E2E.",
|
|
284
|
+
updatedAt: "2026-07-04",
|
|
285
|
+
},
|
|
286
|
+
runtimeSupport: {
|
|
287
|
+
status: args.catalogEnums.runtimeSupportStatus.SUPPORTED,
|
|
288
|
+
reason: "Validated via provider E2E (text + structured) with the 1024-token baseline.",
|
|
289
|
+
inputParts: {
|
|
290
|
+
status: args.catalogEnums.runtimeSupportStatus.SUPPORTED,
|
|
291
|
+
supportedAssetTypes: [asset_contract_1.AssetType.IMAGE, asset_contract_1.AssetType.DOCUMENT],
|
|
292
|
+
supportedSourceKinds: [
|
|
293
|
+
execution_contract_1.ExecutionPartSourceKind.INLINE,
|
|
294
|
+
execution_contract_1.ExecutionPartSourceKind.URL,
|
|
295
|
+
execution_contract_1.ExecutionPartSourceKind.ASSET,
|
|
296
|
+
],
|
|
297
|
+
notes: "Re-curated on 2026-07-04 with the canonical 15-cell Anthropic harness and the 1024-token baseline. IMAGE and DOCUMENT pass across INLINE/URL/ASSET. TEXT passes on INLINE and ASSET but still fails the canonical comprehension assertion on URL, so it is intentionally not promoted by the current catalog shape. AUDIO and VIDEO are rejected deterministically with MODEL_UNSUPPORTED by the current Anthropic Messages provider path.",
|
|
298
|
+
updatedAt: "2026-07-04",
|
|
299
|
+
},
|
|
300
|
+
updatedAt: "2026-07-04",
|
|
301
|
+
},
|
|
302
|
+
},
|
|
260
303
|
// Haiku is the cheapest/default smoke-test model.
|
|
261
304
|
{
|
|
262
305
|
id: "claude-haiku-4-5",
|
|
@@ -303,6 +346,40 @@ function buildAnthropicProviderModelDefinitions(args) {
|
|
|
303
346
|
updatedAt: "2026-05-04",
|
|
304
347
|
},
|
|
305
348
|
},
|
|
349
|
+
{
|
|
350
|
+
id: "claude-fable-5",
|
|
351
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
352
|
+
pricing: args.pricingPerMillionTokens({
|
|
353
|
+
input: 10.0,
|
|
354
|
+
output: 50.0,
|
|
355
|
+
sourceUrl: ANTHROPIC_PRICING_URL,
|
|
356
|
+
notes: "Anthropic pricing page snapshot 2026-07-04.",
|
|
357
|
+
}),
|
|
358
|
+
parameterSupport: {
|
|
359
|
+
parameters: {
|
|
360
|
+
[args.catalogEnums.promptParameterKey.TEMPERATURE]: args.catalogEnums.parameterSupportStatus.NOT_SUPPORTED,
|
|
361
|
+
[args.catalogEnums.promptParameterKey.TOP_P]: args.catalogEnums.parameterSupportStatus.NOT_SUPPORTED,
|
|
362
|
+
},
|
|
363
|
+
notes: "Fable 5 rejects explicit temperature/top_p on the current Anthropic Messages API path in provider E2E.",
|
|
364
|
+
updatedAt: "2026-07-04",
|
|
365
|
+
},
|
|
366
|
+
runtimeSupport: {
|
|
367
|
+
status: args.catalogEnums.runtimeSupportStatus.SUPPORTED,
|
|
368
|
+
reason: "Validated via provider E2E (text + structured) with the 1024-token baseline. Lower output budgets can spend tokens on thinking before any visible text is emitted.",
|
|
369
|
+
inputParts: {
|
|
370
|
+
status: args.catalogEnums.runtimeSupportStatus.SUPPORTED,
|
|
371
|
+
supportedAssetTypes: [asset_contract_1.AssetType.TEXT, asset_contract_1.AssetType.IMAGE, asset_contract_1.AssetType.DOCUMENT],
|
|
372
|
+
supportedSourceKinds: [
|
|
373
|
+
execution_contract_1.ExecutionPartSourceKind.INLINE,
|
|
374
|
+
execution_contract_1.ExecutionPartSourceKind.URL,
|
|
375
|
+
execution_contract_1.ExecutionPartSourceKind.ASSET,
|
|
376
|
+
],
|
|
377
|
+
notes: "Re-curated on 2026-07-04 with the canonical 15-cell Anthropic harness and the 1024-token baseline. TEXT, IMAGE, and DOCUMENT pass across INLINE/URL/ASSET. AUDIO and VIDEO are rejected deterministically with MODEL_UNSUPPORTED by the current Anthropic Messages provider path. With very small text budgets (for example 16 tokens), this model can spend the full budget on thinking before emitting visible text.",
|
|
378
|
+
updatedAt: "2026-07-04",
|
|
379
|
+
},
|
|
380
|
+
updatedAt: "2026-07-04",
|
|
381
|
+
},
|
|
382
|
+
},
|
|
306
383
|
{
|
|
307
384
|
id: "claude-haiku-4-5-20251001",
|
|
308
385
|
types: [intent_contract_1.IntentType.CHAT],
|
|
@@ -338,5 +415,10 @@ function buildAnthropicProviderModelDefinitions(args) {
|
|
|
338
415
|
* Returns the E2E override map for Anthropic provider models.
|
|
339
416
|
*/
|
|
340
417
|
function buildAnthropicProviderModelE2EOverrides(args) {
|
|
341
|
-
return {
|
|
418
|
+
return {
|
|
419
|
+
"claude-haiku-4-5": {
|
|
420
|
+
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
421
|
+
reason: "Compatibility alias retained locally but no longer listed by Anthropic /v1/models",
|
|
422
|
+
},
|
|
423
|
+
};
|
|
342
424
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gemini.contract.d.ts","sourceRoot":"","sources":["../../src/catalog/gemini.contract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,wBAAwB,EAIzB,MAAM,8BAA8B,CAAC;AA4BtC;;GAEG;AACH,wBAAgB,mCAAmC,CACjD,IAAI,EAAE,8BAA8B,GACnC,4BAA4B,EAAE,
|
|
1
|
+
{"version":3,"file":"gemini.contract.d.ts","sourceRoot":"","sources":["../../src/catalog/gemini.contract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,wBAAwB,EAIzB,MAAM,8BAA8B,CAAC;AA4BtC;;GAEG;AACH,wBAAgB,mCAAmC,CACjD,IAAI,EAAE,8BAA8B,GACnC,4BAA4B,EAAE,CA0lChC;AAED;;GAEG;AACH,wBAAgB,oCAAoC,CAClD,IAAI,EAAE,8BAA8B,GACnC,MAAM,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAwE1C"}
|
|
@@ -391,6 +391,56 @@ function buildGeminiProviderModelDefinitions(args) {
|
|
|
391
391
|
updatedAt: "2026-06-07",
|
|
392
392
|
},
|
|
393
393
|
},
|
|
394
|
+
{
|
|
395
|
+
id: "gemini-3.1-flash-lite-image",
|
|
396
|
+
types: [intent_contract_1.IntentType.IMAGE_GENERATION],
|
|
397
|
+
pricing: pricingGemini({
|
|
398
|
+
input: 0.15,
|
|
399
|
+
output: 0.0195,
|
|
400
|
+
notes: "Image generation model; docs list image output pricing separately and text/structured runtime support is still partial.",
|
|
401
|
+
}),
|
|
402
|
+
runtimeSupport: {
|
|
403
|
+
status: args.catalogEnums.runtimeSupportStatus.FAILING,
|
|
404
|
+
reason: "Provider E2E passes simple text but structured output returns INVALID_ARGUMENT (400).",
|
|
405
|
+
updatedAt: "2026-07-04",
|
|
406
|
+
},
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
id: "gemini-3.5-live-translate-preview",
|
|
410
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
411
|
+
pricing: pricingGemini({
|
|
412
|
+
input: 3.5,
|
|
413
|
+
output: 21.0,
|
|
414
|
+
notes: "Live speech-to-speech translation model; docs also publish per-minute audio rates.",
|
|
415
|
+
}),
|
|
416
|
+
runtimeSupport: {
|
|
417
|
+
status: args.catalogEnums.runtimeSupportStatus.FAILING,
|
|
418
|
+
reason: "Provider E2E returns MODEL_NOT_FOUND (upstream 404) for this account/endpoint.",
|
|
419
|
+
updatedAt: "2026-07-04",
|
|
420
|
+
},
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
id: "gemini-omni-flash-preview",
|
|
424
|
+
types: [intent_contract_1.IntentType.VIDEO_GENERATION],
|
|
425
|
+
pricing: pricingGemini({
|
|
426
|
+
input: 1.5,
|
|
427
|
+
output: 9.0,
|
|
428
|
+
tiers: [
|
|
429
|
+
{
|
|
430
|
+
name: "video output",
|
|
431
|
+
condition: "video",
|
|
432
|
+
input: 1.5,
|
|
433
|
+
output: 17.5,
|
|
434
|
+
},
|
|
435
|
+
],
|
|
436
|
+
notes: "Omni/video generation preview; docs list a higher output price for generated video than for text output.",
|
|
437
|
+
}),
|
|
438
|
+
runtimeSupport: {
|
|
439
|
+
status: args.catalogEnums.runtimeSupportStatus.NOT_SUPPORTED,
|
|
440
|
+
reason: "Provider E2E returns upstream 400: model only supports the Gemini Interactions API, not the current runtime path.",
|
|
441
|
+
updatedAt: "2026-07-04",
|
|
442
|
+
},
|
|
443
|
+
},
|
|
394
444
|
{
|
|
395
445
|
id: "gemini-3-pro-preview",
|
|
396
446
|
types: [intent_contract_1.IntentType.CHAT],
|
|
@@ -1028,6 +1078,10 @@ function buildGeminiProviderModelE2EOverrides(args) {
|
|
|
1028
1078
|
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
1029
1079
|
reason: "Model/endpoint not found (404) in provider E2E",
|
|
1030
1080
|
},
|
|
1081
|
+
"gemini-3.5-live-translate-preview": {
|
|
1082
|
+
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
1083
|
+
reason: "Model/endpoint not found (404) in provider E2E for this account",
|
|
1084
|
+
},
|
|
1031
1085
|
"gemini-3-pro-preview": {
|
|
1032
1086
|
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
1033
1087
|
reason: "Model/endpoint not found (404) in provider E2E for this account",
|
|
@@ -1037,6 +1091,10 @@ function buildGeminiProviderModelE2EOverrides(args) {
|
|
|
1037
1091
|
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
1038
1092
|
reason: "Requires Computer Use tool wiring (not supported in runtime v1)",
|
|
1039
1093
|
},
|
|
1094
|
+
"gemini-omni-flash-preview": {
|
|
1095
|
+
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
1096
|
+
reason: "Requires the Gemini Interactions API (not supported in runtime v1)",
|
|
1097
|
+
},
|
|
1040
1098
|
// Audio-only response modalities (runtime v1 is text-only).
|
|
1041
1099
|
"gemini-2.5-pro-preview-tts": {
|
|
1042
1100
|
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grok.contract.d.ts","sourceRoot":"","sources":["../../src/catalog/grok.contract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,wBAAwB,EAEzB,MAAM,8BAA8B,CAAC;AAKtC;;GAEG;AACH,wBAAgB,iCAAiC,CAC/C,IAAI,EAAE,8BAA8B,GACnC,4BAA4B,EAAE,
|
|
1
|
+
{"version":3,"file":"grok.contract.d.ts","sourceRoot":"","sources":["../../src/catalog/grok.contract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,wBAAwB,EAEzB,MAAM,8BAA8B,CAAC;AAKtC;;GAEG;AACH,wBAAgB,iCAAiC,CAC/C,IAAI,EAAE,8BAA8B,GACnC,4BAA4B,EAAE,CAgOhC;AAED;;GAEG;AACH,wBAAgB,kCAAkC,CAChD,IAAI,EAAE,8BAA8B,GACnC,MAAM,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAE1C"}
|
|
@@ -184,6 +184,42 @@ function buildGrokProviderModelDefinitions(args) {
|
|
|
184
184
|
updatedAt: "2026-06-07",
|
|
185
185
|
},
|
|
186
186
|
},
|
|
187
|
+
{
|
|
188
|
+
id: "grok-imagine-image",
|
|
189
|
+
types: [intent_contract_1.IntentType.IMAGE_GENERATION],
|
|
190
|
+
runtimeSupport: {
|
|
191
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
192
|
+
reason: "Discovered via xAI /v1/models; image generation runtime adapter and curation are not implemented yet.",
|
|
193
|
+
updatedAt: "2026-07-04",
|
|
194
|
+
},
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
id: "grok-imagine-image-quality",
|
|
198
|
+
types: [intent_contract_1.IntentType.IMAGE_GENERATION],
|
|
199
|
+
runtimeSupport: {
|
|
200
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
201
|
+
reason: "Discovered via xAI /v1/models; image generation runtime adapter and curation are not implemented yet.",
|
|
202
|
+
updatedAt: "2026-07-04",
|
|
203
|
+
},
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
id: "grok-imagine-video",
|
|
207
|
+
types: [intent_contract_1.IntentType.VIDEO_GENERATION],
|
|
208
|
+
runtimeSupport: {
|
|
209
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
210
|
+
reason: "Discovered via xAI /v1/models; video generation runtime adapter and curation are not implemented yet.",
|
|
211
|
+
updatedAt: "2026-07-04",
|
|
212
|
+
},
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
id: "grok-imagine-video-1.5",
|
|
216
|
+
types: [intent_contract_1.IntentType.VIDEO_GENERATION],
|
|
217
|
+
runtimeSupport: {
|
|
218
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
219
|
+
reason: "Discovered via xAI /v1/models; video generation runtime adapter and curation are not implemented yet.",
|
|
220
|
+
updatedAt: "2026-07-04",
|
|
221
|
+
},
|
|
222
|
+
},
|
|
187
223
|
];
|
|
188
224
|
}
|
|
189
225
|
/**
|
|
@@ -6,5 +6,5 @@ export declare function buildMistralProviderModelDefinitions(args: ProviderCatal
|
|
|
6
6
|
/**
|
|
7
7
|
* Returns the E2E override map for Mistral provider models.
|
|
8
8
|
*/
|
|
9
|
-
export declare function buildMistralProviderModelE2EOverrides(
|
|
9
|
+
export declare function buildMistralProviderModelE2EOverrides(args: ProviderCatalogModuleBuildArgs): Record<string, ProviderModelE2EOverride>;
|
|
10
10
|
//# sourceMappingURL=mistral.contract.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mistral.contract.d.ts","sourceRoot":"","sources":["../../src/catalog/mistral.contract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,wBAAwB,EAEzB,MAAM,8BAA8B,CAAC;AAMtC;;GAEG;AACH,wBAAgB,oCAAoC,CAClD,IAAI,EAAE,8BAA8B,GACnC,4BAA4B,EAAE,
|
|
1
|
+
{"version":3,"file":"mistral.contract.d.ts","sourceRoot":"","sources":["../../src/catalog/mistral.contract.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,8BAA8B,EAC9B,4BAA4B,EAC5B,wBAAwB,EAEzB,MAAM,8BAA8B,CAAC;AAMtC;;GAEG;AACH,wBAAgB,oCAAoC,CAClD,IAAI,EAAE,8BAA8B,GACnC,4BAA4B,EAAE,CAuchC;AAED;;GAEG;AACH,wBAAgB,qCAAqC,CACnD,IAAI,EAAE,8BAA8B,GACnC,MAAM,CAAC,MAAM,EAAE,wBAAwB,CAAC,CAe1C"}
|
|
@@ -13,8 +13,8 @@ const MISTRAL_PRICING_UPDATED_AT_20260522 = Date.UTC(2026, 4, 22);
|
|
|
13
13
|
*/
|
|
14
14
|
function buildMistralProviderModelDefinitions(args) {
|
|
15
15
|
return [
|
|
16
|
-
// Source: Mistral API pricing page + models API snapshot (2026-
|
|
17
|
-
// Keep this catalog
|
|
16
|
+
// Source: Mistral API pricing page + models API snapshot (2026-07-04).
|
|
17
|
+
// Keep this catalog focused on CHAT + EMBEDDING for runtime v1; moderation/ocr families are intentionally excluded.
|
|
18
18
|
{
|
|
19
19
|
id: "mistral-large-latest",
|
|
20
20
|
types: [intent_contract_1.IntentType.CHAT],
|
|
@@ -224,11 +224,231 @@ function buildMistralProviderModelDefinitions(args) {
|
|
|
224
224
|
updatedAt: "2026-06-29",
|
|
225
225
|
},
|
|
226
226
|
},
|
|
227
|
+
{
|
|
228
|
+
id: "codestral-2508",
|
|
229
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
230
|
+
runtimeSupport: {
|
|
231
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
232
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this code-specialised chat alias.",
|
|
233
|
+
updatedAt: "2026-07-04",
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
id: "codestral-embed",
|
|
238
|
+
types: [intent_contract_1.IntentType.EMBEDDING],
|
|
239
|
+
runtimeSupport: {
|
|
240
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
241
|
+
reason: "Discovered via Mistral /v1/models; embedding adapter and curation are not implemented yet.",
|
|
242
|
+
updatedAt: "2026-07-04",
|
|
243
|
+
},
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
id: "codestral-embed-2505",
|
|
247
|
+
types: [intent_contract_1.IntentType.EMBEDDING],
|
|
248
|
+
runtimeSupport: {
|
|
249
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
250
|
+
reason: "Discovered via Mistral /v1/models; embedding adapter and curation are not implemented yet.",
|
|
251
|
+
updatedAt: "2026-07-04",
|
|
252
|
+
},
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
id: "ministral-14b-2512",
|
|
256
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
257
|
+
runtimeSupport: {
|
|
258
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
259
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this dated chat alias.",
|
|
260
|
+
updatedAt: "2026-07-04",
|
|
261
|
+
},
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
id: "ministral-3b-2512",
|
|
265
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
266
|
+
runtimeSupport: {
|
|
267
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
268
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this dated chat alias.",
|
|
269
|
+
updatedAt: "2026-07-04",
|
|
270
|
+
},
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
id: "ministral-8b-2512",
|
|
274
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
275
|
+
runtimeSupport: {
|
|
276
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
277
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this dated chat alias.",
|
|
278
|
+
updatedAt: "2026-07-04",
|
|
279
|
+
},
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
id: "mistral-code-agent-latest",
|
|
283
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
284
|
+
runtimeSupport: {
|
|
285
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
286
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this code-agent chat family.",
|
|
287
|
+
updatedAt: "2026-07-04",
|
|
288
|
+
},
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
id: "mistral-code-fim-latest",
|
|
292
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
293
|
+
runtimeSupport: {
|
|
294
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
295
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this code-completion chat family.",
|
|
296
|
+
updatedAt: "2026-07-04",
|
|
297
|
+
},
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
id: "mistral-embed",
|
|
301
|
+
types: [intent_contract_1.IntentType.EMBEDDING],
|
|
302
|
+
runtimeSupport: {
|
|
303
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
304
|
+
reason: "Discovered via Mistral /v1/models; embedding adapter and curation are not implemented yet.",
|
|
305
|
+
updatedAt: "2026-07-04",
|
|
306
|
+
},
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
id: "mistral-embed-2312",
|
|
310
|
+
types: [intent_contract_1.IntentType.EMBEDDING],
|
|
311
|
+
runtimeSupport: {
|
|
312
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
313
|
+
reason: "Discovered via Mistral /v1/models; embedding adapter and curation are not implemented yet.",
|
|
314
|
+
updatedAt: "2026-07-04",
|
|
315
|
+
},
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
id: "mistral-large-2512",
|
|
319
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
320
|
+
runtimeSupport: {
|
|
321
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
322
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this dated chat alias.",
|
|
323
|
+
updatedAt: "2026-07-04",
|
|
324
|
+
},
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
id: "mistral-medium",
|
|
328
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
329
|
+
runtimeSupport: {
|
|
330
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
331
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this chat alias.",
|
|
332
|
+
updatedAt: "2026-07-04",
|
|
333
|
+
},
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
id: "mistral-medium-2505",
|
|
337
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
338
|
+
runtimeSupport: {
|
|
339
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
340
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this legacy dated chat alias.",
|
|
341
|
+
updatedAt: "2026-07-04",
|
|
342
|
+
},
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
id: "mistral-medium-2508",
|
|
346
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
347
|
+
runtimeSupport: {
|
|
348
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
349
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this legacy dated chat alias.",
|
|
350
|
+
updatedAt: "2026-07-04",
|
|
351
|
+
},
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
id: "mistral-medium-2604",
|
|
355
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
356
|
+
runtimeSupport: {
|
|
357
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
358
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this dated chat alias.",
|
|
359
|
+
updatedAt: "2026-07-04",
|
|
360
|
+
},
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
id: "mistral-medium-3",
|
|
364
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
365
|
+
runtimeSupport: {
|
|
366
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
367
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this chat family.",
|
|
368
|
+
updatedAt: "2026-07-04",
|
|
369
|
+
},
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
id: "mistral-medium-3-5",
|
|
373
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
374
|
+
runtimeSupport: {
|
|
375
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
376
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this chat family alias.",
|
|
377
|
+
updatedAt: "2026-07-04",
|
|
378
|
+
},
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
id: "mistral-medium-3.5",
|
|
382
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
383
|
+
runtimeSupport: {
|
|
384
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
385
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this chat family alias.",
|
|
386
|
+
updatedAt: "2026-07-04",
|
|
387
|
+
},
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
id: "mistral-small-2506",
|
|
391
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
392
|
+
runtimeSupport: {
|
|
393
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
394
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this legacy dated chat alias.",
|
|
395
|
+
updatedAt: "2026-07-04",
|
|
396
|
+
},
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
id: "mistral-small-2603",
|
|
400
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
401
|
+
runtimeSupport: {
|
|
402
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
403
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this dated chat alias.",
|
|
404
|
+
updatedAt: "2026-07-04",
|
|
405
|
+
},
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
id: "mistral-tiny-2407",
|
|
409
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
410
|
+
runtimeSupport: {
|
|
411
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
412
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this dated chat alias.",
|
|
413
|
+
updatedAt: "2026-07-04",
|
|
414
|
+
},
|
|
415
|
+
},
|
|
416
|
+
{
|
|
417
|
+
id: "mistral-vibe-cli-fast",
|
|
418
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
419
|
+
runtimeSupport: {
|
|
420
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
421
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this chat/tooling family.",
|
|
422
|
+
updatedAt: "2026-07-04",
|
|
423
|
+
},
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
id: "mistral-vibe-cli-with-tools",
|
|
427
|
+
types: [intent_contract_1.IntentType.CHAT],
|
|
428
|
+
runtimeSupport: {
|
|
429
|
+
status: args.catalogEnums.runtimeSupportStatus.IN_PROGRESS,
|
|
430
|
+
reason: "Discovered via Mistral /v1/models; pending provider E2E curation for this chat/tooling family.",
|
|
431
|
+
updatedAt: "2026-07-04",
|
|
432
|
+
},
|
|
433
|
+
},
|
|
227
434
|
];
|
|
228
435
|
}
|
|
229
436
|
/**
|
|
230
437
|
* Returns the E2E override map for Mistral provider models.
|
|
231
438
|
*/
|
|
232
|
-
function buildMistralProviderModelE2EOverrides(
|
|
233
|
-
return {
|
|
439
|
+
function buildMistralProviderModelE2EOverrides(args) {
|
|
440
|
+
return {
|
|
441
|
+
"mistral-medium-2505": {
|
|
442
|
+
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
443
|
+
reason: "Legacy/deprecated in current Mistral models documentation",
|
|
444
|
+
},
|
|
445
|
+
"mistral-medium-2508": {
|
|
446
|
+
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
447
|
+
reason: "Legacy/deprecated in current Mistral models documentation",
|
|
448
|
+
},
|
|
449
|
+
"mistral-small-2506": {
|
|
450
|
+
status: args.catalogEnums.e2eStatus.LEGACY,
|
|
451
|
+
reason: "Legacy/deprecated in current Mistral models documentation",
|
|
452
|
+
},
|
|
453
|
+
};
|
|
234
454
|
}
|
|
@@ -36,6 +36,14 @@ export declare enum IntentType {
|
|
|
36
36
|
* - diffusion models
|
|
37
37
|
*/
|
|
38
38
|
IMAGE_GENERATION = "IMAGE_GENERATION",
|
|
39
|
+
/**
|
|
40
|
+
* Video generation.
|
|
41
|
+
*
|
|
42
|
+
* Examples:
|
|
43
|
+
* - text-to-video models
|
|
44
|
+
* - image-to-video models
|
|
45
|
+
*/
|
|
46
|
+
VIDEO_GENERATION = "VIDEO_GENERATION",
|
|
39
47
|
/**
|
|
40
48
|
* Image understanding / multimodal analysis.
|
|
41
49
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"intent.contract.d.ts","sourceRoot":"","sources":["../src/intent.contract.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAAE,WAAW,EAAoB,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACrF,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAIpE,MAAM,MAAM,MAAM,GAAG,MAAM,CAAC;AAG5B;;;;;GAKG;AACH,oBAAY,UAAU;IAEpB;;;;;;;;OAQG;IACH,IAAI,SAAS;IAEb;;;;;;;OAOG;IACH,SAAS,cAAc;IAEvB;;;;;;OAMG;IACH,gBAAgB,qBAAqB;IAErC;;;;;;OAMG;IACH,cAAc,mBAAmB;IAEjC;;;;;;OAMG;IACH,cAAc,mBAAmB;IAEjC;;OAEG;IACH,cAAc,mBAAmB;IAEjC;;OAEG;IACH,UAAU,eAAe;IAEzB;;;;;;;OAOG;IACH,IAAI,SAAS;IAEb;;OAEG;IACH,WAAW,gBAAgB;CAC5B;AAID;;;GAGG;AACH,MAAM,WAAW,cAAc;IAE7B,EAAE,EAAE,MAAM,CAAC;IAEX,iEAAiE;IACjE,MAAM,EAAE,MAAM,CAAC;IAEf,4BAA4B;IAC5B,IAAI,EAAE,UAAU,CAAC;IAEjB,0EAA0E;IAC1E,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,6CAA6C;IAC7C,MAAM,EAAE,OAAO,CAAC;IAEhB,kDAAkD;IAClD,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAE7C;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAE9C;;;OAGG;IACH,aAAa,EAAE,cAAc,CAAC;IAE9B;;OAEG;IACH,YAAY,CAAC,EAAE,cAAc,CAAC;IAE9B;;;OAGG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B;;OAEG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC;IAElC;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAC;IAEzB;;;;OAIG;IACH,eAAe,EAAE,sBAAsB,EAAE,CAAC;IAE1C;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;CACjB"}
|
|
1
|
+
{"version":3,"file":"intent.contract.d.ts","sourceRoot":"","sources":["../src/intent.contract.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAAE,WAAW,EAAoB,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACrF,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,MAAM,oBAAoB,CAAC;AAIpE,MAAM,MAAM,MAAM,GAAG,MAAM,CAAC;AAG5B;;;;;GAKG;AACH,oBAAY,UAAU;IAEpB;;;;;;;;OAQG;IACH,IAAI,SAAS;IAEb;;;;;;;OAOG;IACH,SAAS,cAAc;IAEvB;;;;;;OAMG;IACH,gBAAgB,qBAAqB;IAErC;;;;;;OAMG;IACH,gBAAgB,qBAAqB;IAErC;;;;;;OAMG;IACH,cAAc,mBAAmB;IAEjC;;;;;;OAMG;IACH,cAAc,mBAAmB;IAEjC;;OAEG;IACH,cAAc,mBAAmB;IAEjC;;OAEG;IACH,UAAU,eAAe;IAEzB;;;;;;;OAOG;IACH,IAAI,SAAS;IAEb;;OAEG;IACH,WAAW,gBAAgB;CAC5B;AAID;;;GAGG;AACH,MAAM,WAAW,cAAc;IAE7B,EAAE,EAAE,MAAM,CAAC;IAEX,iEAAiE;IACjE,MAAM,EAAE,MAAM,CAAC;IAEf,4BAA4B;IAC5B,IAAI,EAAE,UAAU,CAAC;IAEjB,0EAA0E;IAC1E,IAAI,CAAC,EAAE,MAAM,CAAC;IAEd,6CAA6C;IAC7C,MAAM,EAAE,OAAO,CAAC;IAEhB,kDAAkD;IAClD,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAE7C;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,cAAc,CAAC,CAAC;IAE9C;;;OAGG;IACH,aAAa,EAAE,cAAc,CAAC;IAE9B;;OAEG;IACH,YAAY,CAAC,EAAE,cAAc,CAAC;IAE9B;;;OAGG;IACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAE5B;;OAEG;IACH,eAAe,CAAC,EAAE,eAAe,CAAC;IAElC;;;OAGG;IACH,WAAW,EAAE,WAAW,CAAC;IAEzB;;;;OAIG;IACH,eAAe,EAAE,sBAAsB,EAAE,CAAC;IAE1C;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;CACjB"}
|
package/dist/intent.contract.js
CHANGED
|
@@ -36,6 +36,14 @@ var IntentType;
|
|
|
36
36
|
* - diffusion models
|
|
37
37
|
*/
|
|
38
38
|
IntentType["IMAGE_GENERATION"] = "IMAGE_GENERATION";
|
|
39
|
+
/**
|
|
40
|
+
* Video generation.
|
|
41
|
+
*
|
|
42
|
+
* Examples:
|
|
43
|
+
* - text-to-video models
|
|
44
|
+
* - image-to-video models
|
|
45
|
+
*/
|
|
46
|
+
IntentType["VIDEO_GENERATION"] = "VIDEO_GENERATION";
|
|
39
47
|
/**
|
|
40
48
|
* Image understanding / multimodal analysis.
|
|
41
49
|
*
|