@oh-my-pi/pi-catalog 18.1.1 → 18.1.2
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/CHANGELOG.md +12 -0
- package/dist/types/types.d.ts +17 -4
- package/package.json +4 -4
- package/src/compat/axes.ts +5 -0
- package/src/compat/resolve.ts +10 -1
- package/src/compat/rules/classes/anthropic.kdl +43 -0
- package/src/compat/rules.json +186 -33
- package/src/models.json +3591 -182
- package/src/types.ts +17 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [18.1.2] - 2026-09-01
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added support for turn-scoped system messages, changing tools during a conversation, and setting effort on individual messages.
|
|
10
|
+
- Added support for Claude Fable 5.1 models, with improved thinking-prefix handling across supported Claude models.
|
|
11
|
+
- Added DeepSeek V4 Flash Vision Exp, Mercury 2.5 Preview, and Xiaomi MiMo V2.5 Pro UltraSpeed models.
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- Updated model pricing and context-window limits.
|
|
16
|
+
|
|
5
17
|
## [18.1.0] - 2026-09-01
|
|
6
18
|
|
|
7
19
|
### Added
|
package/dist/types/types.d.ts
CHANGED
|
@@ -29,6 +29,11 @@ export interface ThinkingConfig {
|
|
|
29
29
|
* 5). Also implies native interleaved thinking — no beta header needed.
|
|
30
30
|
*/
|
|
31
31
|
supportsDisplay?: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Thinking signatures bind each block to its preceding conversation prefix.
|
|
34
|
+
* Requests that rewrite the prefix must opt into the provider's drop/error control.
|
|
35
|
+
*/
|
|
36
|
+
prefixBinding?: boolean;
|
|
32
37
|
/**
|
|
33
38
|
* Per-effort upstream wire-id routing for collapsed effort-tier variants
|
|
34
39
|
* (`compat/collapse.ts`). Keyed by pi effort; `"off"` applies when
|
|
@@ -437,12 +442,20 @@ export interface AnthropicCompat {
|
|
|
437
442
|
supportsLongCacheRetention?: boolean;
|
|
438
443
|
/**
|
|
439
444
|
* Whether mid-conversation `role: "system"` messages are accepted in the
|
|
440
|
-
* `messages` array
|
|
441
|
-
* first-party Claude API and Claude Platform on AWS). When unset,
|
|
442
|
-
* auto-detected from the model id and base URL. Not available on Bedrock,
|
|
443
|
-
* Vertex AI, or Microsoft Foundry.
|
|
445
|
+
* `messages` array. When unset, auto-detected from model and deployment policy.
|
|
444
446
|
*/
|
|
445
447
|
supportsMidConversationSystem?: boolean;
|
|
448
|
+
/** Whether turn-scoped system messages accept `clear_at`. */
|
|
449
|
+
supportsTurnScopedSystem?: boolean;
|
|
450
|
+
/** Whether tool availability can change through system-message tool references. */
|
|
451
|
+
supportsMidConversationToolChanges?: boolean;
|
|
452
|
+
/** Whether effort can change through a per-message `output_config`. */
|
|
453
|
+
supportsPerMessageEffort?: boolean;
|
|
454
|
+
/**
|
|
455
|
+
* Whether the endpoint accepts `thinking.block_binding` and reports
|
|
456
|
+
* `input_transformations` under the thinking-binding-controls beta.
|
|
457
|
+
*/
|
|
458
|
+
supportsThinkingBindingControls?: boolean;
|
|
446
459
|
/**
|
|
447
460
|
* Whether the model accepts a forced `tool_choice` (`{ type: "any" }` or
|
|
448
461
|
* `{ type: "tool", name }`). Claude Fable/Mythos 5 reject forced tool use
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-catalog",
|
|
4
|
-
"version": "18.1.
|
|
4
|
+
"version": "18.1.2",
|
|
5
5
|
"description": "Model catalog for omp: bundled model database, provider discovery descriptors, model identity, classification, and equivalence",
|
|
6
6
|
"homepage": "https://omp.sh",
|
|
7
7
|
"author": "Stencil Labs, Inc.",
|
|
@@ -35,12 +35,12 @@
|
|
|
35
35
|
"gen:proto": "bun scripts/generate-protocols.ts"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@oh-my-pi/omptype": "18.1.
|
|
39
|
-
"@oh-my-pi/pi-utils": "18.1.
|
|
38
|
+
"@oh-my-pi/omptype": "18.1.2",
|
|
39
|
+
"@oh-my-pi/pi-utils": "18.1.2"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@bgotink/kdl": "0.4.0",
|
|
43
|
-
"@oh-my-pi/pi-ai": "18.1.
|
|
43
|
+
"@oh-my-pi/pi-ai": "18.1.2",
|
|
44
44
|
"@types/bun": "^1.3.14"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
package/src/compat/axes.ts
CHANGED
|
@@ -193,6 +193,10 @@ export const AXES: Readonly<Record<string, AxisDef>> = {
|
|
|
193
193
|
"supports-eager-tool-input-streaming": wire("supportsEagerToolInputStreaming", ["anthropic"]),
|
|
194
194
|
"supports-long-cache-retention": wire("supportsLongCacheRetention", ["anthropic"]),
|
|
195
195
|
"supports-mid-conversation-system": wire("supportsMidConversationSystem", ["anthropic"]),
|
|
196
|
+
"supports-mid-conversation-tool-changes": wire("supportsMidConversationToolChanges", ["anthropic"]),
|
|
197
|
+
"supports-per-message-effort": wire("supportsPerMessageEffort", ["anthropic"]),
|
|
198
|
+
"supports-thinking-binding-controls": wire("supportsThinkingBindingControls", ["anthropic"]),
|
|
199
|
+
"supports-turn-scoped-system": wire("supportsTurnScopedSystem", ["anthropic"]),
|
|
196
200
|
|
|
197
201
|
// ── wire: bedrock-converse-stream ──
|
|
198
202
|
"prompt-cache-maximum-checkpoints": wire("promptCacheMaximumCheckpoints", ["bedrock"]),
|
|
@@ -239,6 +243,7 @@ export const AXES: Readonly<Record<string, AxisDef>> = {
|
|
|
239
243
|
values: THINKING_MODES,
|
|
240
244
|
},
|
|
241
245
|
"thinking-requires-effort": { key: "requiresEffort", set: "thinking", shape: "scalar" },
|
|
246
|
+
"thinking-prefix-binding": { key: "prefixBinding", set: "thinking", shape: "scalar" },
|
|
242
247
|
"thinking-suppress-when-off": { key: "suppressWhenOff", set: "thinking", shape: "scalar" },
|
|
243
248
|
"thinking-supports-display": { key: "supportsDisplay", set: "thinking", shape: "scalar" },
|
|
244
249
|
|
package/src/compat/resolve.ts
CHANGED
|
@@ -847,6 +847,10 @@ function resolveAnthropicPolicy(
|
|
|
847
847
|
supportsEagerToolInputStreaming: official,
|
|
848
848
|
supportsLongCacheRetention: official,
|
|
849
849
|
supportsMidConversationSystem: official && facts.anthropicAdaptiveGenAtLeast("4.8"),
|
|
850
|
+
supportsTurnScopedSystem: false,
|
|
851
|
+
supportsMidConversationToolChanges: false,
|
|
852
|
+
supportsPerMessageEffort: false,
|
|
853
|
+
supportsThinkingBindingControls: false,
|
|
850
854
|
supportsForcedToolChoice: !requiresThinkingEnabled && !facts.family("fable", "mythos"),
|
|
851
855
|
supportsSamplingParams: !facts.anthropicAdaptiveGenAtLeast("4.7"),
|
|
852
856
|
requiresToolResultId: false,
|
|
@@ -1012,6 +1016,7 @@ interface RuleThinking {
|
|
|
1012
1016
|
requiresEffort?: boolean;
|
|
1013
1017
|
suppressWhenOff?: boolean;
|
|
1014
1018
|
supportsDisplay?: boolean;
|
|
1019
|
+
prefixBinding?: boolean;
|
|
1015
1020
|
}
|
|
1016
1021
|
|
|
1017
1022
|
function readRuleThinking(axes: ResolvedAxes): RuleThinking {
|
|
@@ -1030,6 +1035,7 @@ function readRuleThinking(axes: ResolvedAxes): RuleThinking {
|
|
|
1030
1035
|
if (typeof raw.requiresEffort === "boolean") out.requiresEffort = raw.requiresEffort;
|
|
1031
1036
|
if (typeof raw.suppressWhenOff === "boolean") out.suppressWhenOff = raw.suppressWhenOff;
|
|
1032
1037
|
if (typeof raw.supportsDisplay === "boolean") out.supportsDisplay = raw.supportsDisplay;
|
|
1038
|
+
if (typeof raw.prefixBinding === "boolean") out.prefixBinding = raw.prefixBinding;
|
|
1033
1039
|
return out;
|
|
1034
1040
|
}
|
|
1035
1041
|
|
|
@@ -1085,6 +1091,7 @@ function resolveThinkingPolicy<TApi extends Api>(
|
|
|
1085
1091
|
if (rule.effortBudgets !== undefined) config.effortBudgets = rule.effortBudgets;
|
|
1086
1092
|
const supportsDisplay = rule.supportsDisplay ?? defaultSupportsDisplay(spec, facts);
|
|
1087
1093
|
if (supportsDisplay) config.supportsDisplay = true;
|
|
1094
|
+
if (rule.prefixBinding) config.prefixBinding = true;
|
|
1088
1095
|
const requiresEffort =
|
|
1089
1096
|
rule.requiresEffort ?? (impliesMandatoryReasoning(facts, spec.id) || isQwenTemplateReasoningEffortCompat(compat));
|
|
1090
1097
|
if (requiresEffort) config.requiresEffort = true;
|
|
@@ -1142,7 +1149,8 @@ function fillExplicitThinking<TApi extends Api>(
|
|
|
1142
1149
|
(rule.requiresEffort ??
|
|
1143
1150
|
(impliesMandatoryReasoning(facts, spec.id) || isQwenTemplateReasoningEffortCompat(compat)));
|
|
1144
1151
|
const needsDefaultLevel = thinking.defaultLevel === undefined && rule.defaultLevel !== undefined;
|
|
1145
|
-
|
|
1152
|
+
const needsPrefixBinding = thinking.prefixBinding === undefined && rule.prefixBinding === true;
|
|
1153
|
+
if (effortMap === undefined && !needsDisplay && !needsRequiresEffort && !needsDefaultLevel && !needsPrefixBinding) {
|
|
1146
1154
|
return thinking;
|
|
1147
1155
|
}
|
|
1148
1156
|
const filled: ThinkingConfig = { ...thinking };
|
|
@@ -1150,6 +1158,7 @@ function fillExplicitThinking<TApi extends Api>(
|
|
|
1150
1158
|
if (needsDisplay) filled.supportsDisplay = true;
|
|
1151
1159
|
if (needsDefaultLevel && rule.defaultLevel !== undefined) filled.defaultLevel = rule.defaultLevel;
|
|
1152
1160
|
if (needsRequiresEffort) filled.requiresEffort = true;
|
|
1161
|
+
if (needsPrefixBinding) filled.prefixBinding = true;
|
|
1153
1162
|
return filled;
|
|
1154
1163
|
}
|
|
1155
1164
|
|
|
@@ -1,6 +1,49 @@
|
|
|
1
1
|
// Model-lineage compat for "anthropic"; regenerated from the frozen census using class taxonomy selectors.
|
|
2
2
|
|
|
3
3
|
class "anthropic" {
|
|
4
|
+
family "fable" {
|
|
5
|
+
revision ">=5.1" {
|
|
6
|
+
// Fable 5.1+ binds signed thinking to the exact preceding conversation.
|
|
7
|
+
thinking-prefix-binding #true
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
on "anthropic" "cloudflare-ai-gateway" "google-vertex" {
|
|
11
|
+
family "fable" {
|
|
12
|
+
revision ">=5" {
|
|
13
|
+
supports-mid-conversation-system #true
|
|
14
|
+
supports-mid-conversation-tool-changes #true
|
|
15
|
+
supports-turn-scoped-system #true
|
|
16
|
+
}
|
|
17
|
+
revision ">=5.1" {
|
|
18
|
+
supports-per-message-effort #true
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
family "mythos" {
|
|
22
|
+
revision ">=5" {
|
|
23
|
+
supports-mid-conversation-system #true
|
|
24
|
+
supports-mid-conversation-tool-changes #true
|
|
25
|
+
supports-turn-scoped-system #true
|
|
26
|
+
}
|
|
27
|
+
revision ">=5.1" {
|
|
28
|
+
supports-per-message-effort #true
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
family "fable" {
|
|
32
|
+
revision ">=5.1" {
|
|
33
|
+
supports-thinking-binding-controls #true
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
family "opus" {
|
|
37
|
+
revision ">=4.8" {
|
|
38
|
+
supports-mid-conversation-system #true
|
|
39
|
+
supports-mid-conversation-tool-changes #true
|
|
40
|
+
supports-turn-scoped-system #true
|
|
41
|
+
}
|
|
42
|
+
revision ">=5" {
|
|
43
|
+
supports-per-message-effort #true
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
4
47
|
on "aimlapi" "gitlab-duo" "kilo" "nanogpt" "venice" {
|
|
5
48
|
thinking-efforts "minimal" "low" "medium" "high" "xhigh"
|
|
6
49
|
}
|
package/src/compat/rules.json
CHANGED
|
@@ -3282,7 +3282,160 @@
|
|
|
3282
3282
|
}
|
|
3283
3283
|
},
|
|
3284
3284
|
{
|
|
3285
|
-
"source": "classes/anthropic.kdl:
|
|
3285
|
+
"source": "classes/anthropic.kdl:5",
|
|
3286
|
+
"class": "anthropic",
|
|
3287
|
+
"family": "fable",
|
|
3288
|
+
"revision": [
|
|
3289
|
+
{
|
|
3290
|
+
"op": ">=",
|
|
3291
|
+
"revision": "5.1.0"
|
|
3292
|
+
}
|
|
3293
|
+
],
|
|
3294
|
+
"thinking": {
|
|
3295
|
+
"prefixBinding": true
|
|
3296
|
+
}
|
|
3297
|
+
},
|
|
3298
|
+
{
|
|
3299
|
+
"source": "classes/anthropic.kdl:12",
|
|
3300
|
+
"class": "anthropic",
|
|
3301
|
+
"providers": [
|
|
3302
|
+
"anthropic",
|
|
3303
|
+
"cloudflare-ai-gateway",
|
|
3304
|
+
"google-vertex"
|
|
3305
|
+
],
|
|
3306
|
+
"family": "fable",
|
|
3307
|
+
"revision": [
|
|
3308
|
+
{
|
|
3309
|
+
"op": ">=",
|
|
3310
|
+
"revision": "5.0.0"
|
|
3311
|
+
}
|
|
3312
|
+
],
|
|
3313
|
+
"wire": {
|
|
3314
|
+
"supportsMidConversationSystem": true,
|
|
3315
|
+
"supportsMidConversationToolChanges": true,
|
|
3316
|
+
"supportsTurnScopedSystem": true
|
|
3317
|
+
}
|
|
3318
|
+
},
|
|
3319
|
+
{
|
|
3320
|
+
"source": "classes/anthropic.kdl:17",
|
|
3321
|
+
"class": "anthropic",
|
|
3322
|
+
"providers": [
|
|
3323
|
+
"anthropic",
|
|
3324
|
+
"cloudflare-ai-gateway",
|
|
3325
|
+
"google-vertex"
|
|
3326
|
+
],
|
|
3327
|
+
"family": "fable",
|
|
3328
|
+
"revision": [
|
|
3329
|
+
{
|
|
3330
|
+
"op": ">=",
|
|
3331
|
+
"revision": "5.1.0"
|
|
3332
|
+
}
|
|
3333
|
+
],
|
|
3334
|
+
"wire": {
|
|
3335
|
+
"supportsPerMessageEffort": true
|
|
3336
|
+
}
|
|
3337
|
+
},
|
|
3338
|
+
{
|
|
3339
|
+
"source": "classes/anthropic.kdl:22",
|
|
3340
|
+
"class": "anthropic",
|
|
3341
|
+
"providers": [
|
|
3342
|
+
"anthropic",
|
|
3343
|
+
"cloudflare-ai-gateway",
|
|
3344
|
+
"google-vertex"
|
|
3345
|
+
],
|
|
3346
|
+
"family": "mythos",
|
|
3347
|
+
"revision": [
|
|
3348
|
+
{
|
|
3349
|
+
"op": ">=",
|
|
3350
|
+
"revision": "5.0.0"
|
|
3351
|
+
}
|
|
3352
|
+
],
|
|
3353
|
+
"wire": {
|
|
3354
|
+
"supportsMidConversationSystem": true,
|
|
3355
|
+
"supportsMidConversationToolChanges": true,
|
|
3356
|
+
"supportsTurnScopedSystem": true
|
|
3357
|
+
}
|
|
3358
|
+
},
|
|
3359
|
+
{
|
|
3360
|
+
"source": "classes/anthropic.kdl:27",
|
|
3361
|
+
"class": "anthropic",
|
|
3362
|
+
"providers": [
|
|
3363
|
+
"anthropic",
|
|
3364
|
+
"cloudflare-ai-gateway",
|
|
3365
|
+
"google-vertex"
|
|
3366
|
+
],
|
|
3367
|
+
"family": "mythos",
|
|
3368
|
+
"revision": [
|
|
3369
|
+
{
|
|
3370
|
+
"op": ">=",
|
|
3371
|
+
"revision": "5.1.0"
|
|
3372
|
+
}
|
|
3373
|
+
],
|
|
3374
|
+
"wire": {
|
|
3375
|
+
"supportsPerMessageEffort": true
|
|
3376
|
+
}
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"source": "classes/anthropic.kdl:32",
|
|
3380
|
+
"class": "anthropic",
|
|
3381
|
+
"providers": [
|
|
3382
|
+
"anthropic",
|
|
3383
|
+
"cloudflare-ai-gateway",
|
|
3384
|
+
"google-vertex"
|
|
3385
|
+
],
|
|
3386
|
+
"family": "fable",
|
|
3387
|
+
"revision": [
|
|
3388
|
+
{
|
|
3389
|
+
"op": ">=",
|
|
3390
|
+
"revision": "5.1.0"
|
|
3391
|
+
}
|
|
3392
|
+
],
|
|
3393
|
+
"wire": {
|
|
3394
|
+
"supportsThinkingBindingControls": true
|
|
3395
|
+
}
|
|
3396
|
+
},
|
|
3397
|
+
{
|
|
3398
|
+
"source": "classes/anthropic.kdl:37",
|
|
3399
|
+
"class": "anthropic",
|
|
3400
|
+
"providers": [
|
|
3401
|
+
"anthropic",
|
|
3402
|
+
"cloudflare-ai-gateway",
|
|
3403
|
+
"google-vertex"
|
|
3404
|
+
],
|
|
3405
|
+
"family": "opus",
|
|
3406
|
+
"revision": [
|
|
3407
|
+
{
|
|
3408
|
+
"op": ">=",
|
|
3409
|
+
"revision": "4.8.0"
|
|
3410
|
+
}
|
|
3411
|
+
],
|
|
3412
|
+
"wire": {
|
|
3413
|
+
"supportsMidConversationSystem": true,
|
|
3414
|
+
"supportsMidConversationToolChanges": true,
|
|
3415
|
+
"supportsTurnScopedSystem": true
|
|
3416
|
+
}
|
|
3417
|
+
},
|
|
3418
|
+
{
|
|
3419
|
+
"source": "classes/anthropic.kdl:42",
|
|
3420
|
+
"class": "anthropic",
|
|
3421
|
+
"providers": [
|
|
3422
|
+
"anthropic",
|
|
3423
|
+
"cloudflare-ai-gateway",
|
|
3424
|
+
"google-vertex"
|
|
3425
|
+
],
|
|
3426
|
+
"family": "opus",
|
|
3427
|
+
"revision": [
|
|
3428
|
+
{
|
|
3429
|
+
"op": ">=",
|
|
3430
|
+
"revision": "5.0.0"
|
|
3431
|
+
}
|
|
3432
|
+
],
|
|
3433
|
+
"wire": {
|
|
3434
|
+
"supportsPerMessageEffort": true
|
|
3435
|
+
}
|
|
3436
|
+
},
|
|
3437
|
+
{
|
|
3438
|
+
"source": "classes/anthropic.kdl:47",
|
|
3286
3439
|
"class": "anthropic",
|
|
3287
3440
|
"providers": [
|
|
3288
3441
|
"aimlapi",
|
|
@@ -3302,7 +3455,7 @@
|
|
|
3302
3455
|
}
|
|
3303
3456
|
},
|
|
3304
3457
|
{
|
|
3305
|
-
"source": "classes/anthropic.kdl:
|
|
3458
|
+
"source": "classes/anthropic.kdl:53",
|
|
3306
3459
|
"class": "anthropic",
|
|
3307
3460
|
"providers": [
|
|
3308
3461
|
"amazon-bedrock",
|
|
@@ -3332,7 +3485,7 @@
|
|
|
3332
3485
|
}
|
|
3333
3486
|
},
|
|
3334
3487
|
{
|
|
3335
|
-
"source": "classes/anthropic.kdl:
|
|
3488
|
+
"source": "classes/anthropic.kdl:60",
|
|
3336
3489
|
"class": "anthropic",
|
|
3337
3490
|
"providers": [
|
|
3338
3491
|
"amazon-bedrock",
|
|
@@ -3350,7 +3503,7 @@
|
|
|
3350
3503
|
}
|
|
3351
3504
|
},
|
|
3352
3505
|
{
|
|
3353
|
-
"source": "classes/anthropic.kdl:
|
|
3506
|
+
"source": "classes/anthropic.kdl:67",
|
|
3354
3507
|
"class": "anthropic",
|
|
3355
3508
|
"providers": [
|
|
3356
3509
|
"amazon-bedrock",
|
|
@@ -3379,7 +3532,7 @@
|
|
|
3379
3532
|
}
|
|
3380
3533
|
},
|
|
3381
3534
|
{
|
|
3382
|
-
"source": "classes/anthropic.kdl:
|
|
3535
|
+
"source": "classes/anthropic.kdl:75",
|
|
3383
3536
|
"class": "anthropic",
|
|
3384
3537
|
"providers": [
|
|
3385
3538
|
"amazon-bedrock",
|
|
@@ -3413,7 +3566,7 @@
|
|
|
3413
3566
|
}
|
|
3414
3567
|
},
|
|
3415
3568
|
{
|
|
3416
|
-
"source": "classes/anthropic.kdl:
|
|
3569
|
+
"source": "classes/anthropic.kdl:82",
|
|
3417
3570
|
"class": "anthropic",
|
|
3418
3571
|
"providers": [
|
|
3419
3572
|
"amazon-bedrock",
|
|
@@ -3440,7 +3593,7 @@
|
|
|
3440
3593
|
}
|
|
3441
3594
|
},
|
|
3442
3595
|
{
|
|
3443
|
-
"source": "classes/anthropic.kdl:
|
|
3596
|
+
"source": "classes/anthropic.kdl:89",
|
|
3444
3597
|
"class": "anthropic",
|
|
3445
3598
|
"providers": [
|
|
3446
3599
|
"amazon-bedrock",
|
|
@@ -3466,7 +3619,7 @@
|
|
|
3466
3619
|
}
|
|
3467
3620
|
},
|
|
3468
3621
|
{
|
|
3469
|
-
"source": "classes/anthropic.kdl:
|
|
3622
|
+
"source": "classes/anthropic.kdl:96",
|
|
3470
3623
|
"class": "anthropic",
|
|
3471
3624
|
"providers": [
|
|
3472
3625
|
"amazon-bedrock",
|
|
@@ -3495,7 +3648,7 @@
|
|
|
3495
3648
|
}
|
|
3496
3649
|
},
|
|
3497
3650
|
{
|
|
3498
|
-
"source": "classes/anthropic.kdl:
|
|
3651
|
+
"source": "classes/anthropic.kdl:100",
|
|
3499
3652
|
"class": "anthropic",
|
|
3500
3653
|
"providers": [
|
|
3501
3654
|
"amazon-bedrock",
|
|
@@ -3523,7 +3676,7 @@
|
|
|
3523
3676
|
}
|
|
3524
3677
|
},
|
|
3525
3678
|
{
|
|
3526
|
-
"source": "classes/anthropic.kdl:
|
|
3679
|
+
"source": "classes/anthropic.kdl:106",
|
|
3527
3680
|
"class": "anthropic",
|
|
3528
3681
|
"providers": [
|
|
3529
3682
|
"amazon-bedrock",
|
|
@@ -3545,7 +3698,7 @@
|
|
|
3545
3698
|
}
|
|
3546
3699
|
},
|
|
3547
3700
|
{
|
|
3548
|
-
"source": "classes/anthropic.kdl:
|
|
3701
|
+
"source": "classes/anthropic.kdl:113",
|
|
3549
3702
|
"class": "anthropic",
|
|
3550
3703
|
"providers": [
|
|
3551
3704
|
"anthropic",
|
|
@@ -3578,7 +3731,7 @@
|
|
|
3578
3731
|
}
|
|
3579
3732
|
},
|
|
3580
3733
|
{
|
|
3581
|
-
"source": "classes/anthropic.kdl:
|
|
3734
|
+
"source": "classes/anthropic.kdl:120",
|
|
3582
3735
|
"class": "anthropic",
|
|
3583
3736
|
"providers": [
|
|
3584
3737
|
"anthropic",
|
|
@@ -3609,7 +3762,7 @@
|
|
|
3609
3762
|
}
|
|
3610
3763
|
},
|
|
3611
3764
|
{
|
|
3612
|
-
"source": "classes/anthropic.kdl:
|
|
3765
|
+
"source": "classes/anthropic.kdl:124",
|
|
3613
3766
|
"class": "anthropic",
|
|
3614
3767
|
"providers": [
|
|
3615
3768
|
"anthropic",
|
|
@@ -3635,7 +3788,7 @@
|
|
|
3635
3788
|
}
|
|
3636
3789
|
},
|
|
3637
3790
|
{
|
|
3638
|
-
"source": "classes/anthropic.kdl:
|
|
3791
|
+
"source": "classes/anthropic.kdl:131",
|
|
3639
3792
|
"class": "anthropic",
|
|
3640
3793
|
"providers": [
|
|
3641
3794
|
"anthropic"
|
|
@@ -3655,7 +3808,7 @@
|
|
|
3655
3808
|
}
|
|
3656
3809
|
},
|
|
3657
3810
|
{
|
|
3658
|
-
"source": "classes/anthropic.kdl:
|
|
3811
|
+
"source": "classes/anthropic.kdl:141",
|
|
3659
3812
|
"class": "anthropic",
|
|
3660
3813
|
"providers": [
|
|
3661
3814
|
"anthropic"
|
|
@@ -3675,7 +3828,7 @@
|
|
|
3675
3828
|
}
|
|
3676
3829
|
},
|
|
3677
3830
|
{
|
|
3678
|
-
"source": "classes/anthropic.kdl:
|
|
3831
|
+
"source": "classes/anthropic.kdl:153",
|
|
3679
3832
|
"class": "anthropic",
|
|
3680
3833
|
"providers": [
|
|
3681
3834
|
"anthropic"
|
|
@@ -3695,7 +3848,7 @@
|
|
|
3695
3848
|
}
|
|
3696
3849
|
},
|
|
3697
3850
|
{
|
|
3698
|
-
"source": "classes/anthropic.kdl:
|
|
3851
|
+
"source": "classes/anthropic.kdl:171",
|
|
3699
3852
|
"class": "anthropic",
|
|
3700
3853
|
"providers": [
|
|
3701
3854
|
"amazon-bedrock"
|
|
@@ -3718,7 +3871,7 @@
|
|
|
3718
3871
|
}
|
|
3719
3872
|
},
|
|
3720
3873
|
{
|
|
3721
|
-
"source": "classes/anthropic.kdl:
|
|
3874
|
+
"source": "classes/anthropic.kdl:176",
|
|
3722
3875
|
"class": "anthropic",
|
|
3723
3876
|
"providers": [
|
|
3724
3877
|
"amazon-bedrock"
|
|
@@ -3738,7 +3891,7 @@
|
|
|
3738
3891
|
}
|
|
3739
3892
|
},
|
|
3740
3893
|
{
|
|
3741
|
-
"source": "classes/anthropic.kdl:
|
|
3894
|
+
"source": "classes/anthropic.kdl:182",
|
|
3742
3895
|
"class": "anthropic",
|
|
3743
3896
|
"providers": [
|
|
3744
3897
|
"amazon-bedrock"
|
|
@@ -3767,7 +3920,7 @@
|
|
|
3767
3920
|
}
|
|
3768
3921
|
},
|
|
3769
3922
|
{
|
|
3770
|
-
"source": "classes/anthropic.kdl:
|
|
3923
|
+
"source": "classes/anthropic.kdl:196",
|
|
3771
3924
|
"class": "anthropic",
|
|
3772
3925
|
"providers": [
|
|
3773
3926
|
"amazon-bedrock"
|
|
@@ -3791,7 +3944,7 @@
|
|
|
3791
3944
|
}
|
|
3792
3945
|
},
|
|
3793
3946
|
{
|
|
3794
|
-
"source": "classes/anthropic.kdl:
|
|
3947
|
+
"source": "classes/anthropic.kdl:202",
|
|
3795
3948
|
"class": "anthropic",
|
|
3796
3949
|
"providers": [
|
|
3797
3950
|
"amazon-bedrock"
|
|
@@ -3811,7 +3964,7 @@
|
|
|
3811
3964
|
}
|
|
3812
3965
|
},
|
|
3813
3966
|
{
|
|
3814
|
-
"source": "classes/anthropic.kdl:
|
|
3967
|
+
"source": "classes/anthropic.kdl:211",
|
|
3815
3968
|
"class": "anthropic",
|
|
3816
3969
|
"providers": [
|
|
3817
3970
|
"amazon-bedrock"
|
|
@@ -3836,7 +3989,7 @@
|
|
|
3836
3989
|
}
|
|
3837
3990
|
},
|
|
3838
3991
|
{
|
|
3839
|
-
"source": "classes/anthropic.kdl:
|
|
3992
|
+
"source": "classes/anthropic.kdl:217",
|
|
3840
3993
|
"class": "anthropic",
|
|
3841
3994
|
"providers": [
|
|
3842
3995
|
"amazon-bedrock"
|
|
@@ -3855,7 +4008,7 @@
|
|
|
3855
4008
|
}
|
|
3856
4009
|
},
|
|
3857
4010
|
{
|
|
3858
|
-
"source": "classes/anthropic.kdl:
|
|
4011
|
+
"source": "classes/anthropic.kdl:222",
|
|
3859
4012
|
"class": "anthropic",
|
|
3860
4013
|
"providers": [
|
|
3861
4014
|
"amazon-bedrock"
|
|
@@ -3878,7 +4031,7 @@
|
|
|
3878
4031
|
}
|
|
3879
4032
|
},
|
|
3880
4033
|
{
|
|
3881
|
-
"source": "classes/anthropic.kdl:
|
|
4034
|
+
"source": "classes/anthropic.kdl:227",
|
|
3882
4035
|
"class": "anthropic",
|
|
3883
4036
|
"providers": [
|
|
3884
4037
|
"amazon-bedrock"
|
|
@@ -3898,7 +4051,7 @@
|
|
|
3898
4051
|
}
|
|
3899
4052
|
},
|
|
3900
4053
|
{
|
|
3901
|
-
"source": "classes/anthropic.kdl:
|
|
4054
|
+
"source": "classes/anthropic.kdl:233",
|
|
3902
4055
|
"class": "anthropic",
|
|
3903
4056
|
"providers": [
|
|
3904
4057
|
"amazon-bedrock"
|
|
@@ -3917,7 +4070,7 @@
|
|
|
3917
4070
|
}
|
|
3918
4071
|
},
|
|
3919
4072
|
{
|
|
3920
|
-
"source": "classes/anthropic.kdl:
|
|
4073
|
+
"source": "classes/anthropic.kdl:238",
|
|
3921
4074
|
"class": "anthropic",
|
|
3922
4075
|
"providers": [
|
|
3923
4076
|
"amazon-bedrock"
|
|
@@ -3937,7 +4090,7 @@
|
|
|
3937
4090
|
}
|
|
3938
4091
|
},
|
|
3939
4092
|
{
|
|
3940
|
-
"source": "classes/anthropic.kdl:
|
|
4093
|
+
"source": "classes/anthropic.kdl:246",
|
|
3941
4094
|
"class": "anthropic",
|
|
3942
4095
|
"providers": [
|
|
3943
4096
|
"amazon-bedrock"
|
|
@@ -3956,7 +4109,7 @@
|
|
|
3956
4109
|
}
|
|
3957
4110
|
},
|
|
3958
4111
|
{
|
|
3959
|
-
"source": "classes/anthropic.kdl:
|
|
4112
|
+
"source": "classes/anthropic.kdl:251",
|
|
3960
4113
|
"class": "anthropic",
|
|
3961
4114
|
"providers": [
|
|
3962
4115
|
"amazon-bedrock"
|
|
@@ -3976,7 +4129,7 @@
|
|
|
3976
4129
|
}
|
|
3977
4130
|
},
|
|
3978
4131
|
{
|
|
3979
|
-
"source": "classes/anthropic.kdl:
|
|
4132
|
+
"source": "classes/anthropic.kdl:259",
|
|
3980
4133
|
"class": "anthropic",
|
|
3981
4134
|
"providers": [
|
|
3982
4135
|
"amazon-bedrock"
|
|
@@ -3996,7 +4149,7 @@
|
|
|
3996
4149
|
}
|
|
3997
4150
|
},
|
|
3998
4151
|
{
|
|
3999
|
-
"source": "classes/anthropic.kdl:
|
|
4152
|
+
"source": "classes/anthropic.kdl:269",
|
|
4000
4153
|
"class": "anthropic",
|
|
4001
4154
|
"family": "haiku",
|
|
4002
4155
|
"revision": [
|
|
@@ -4010,7 +4163,7 @@
|
|
|
4010
4163
|
}
|
|
4011
4164
|
},
|
|
4012
4165
|
{
|
|
4013
|
-
"source": "classes/anthropic.kdl:
|
|
4166
|
+
"source": "classes/anthropic.kdl:275",
|
|
4014
4167
|
"class": "anthropic",
|
|
4015
4168
|
"providers": [
|
|
4016
4169
|
"google-antigravity",
|
|
@@ -4022,7 +4175,7 @@
|
|
|
4022
4175
|
}
|
|
4023
4176
|
},
|
|
4024
4177
|
{
|
|
4025
|
-
"source": "classes/anthropic.kdl:
|
|
4178
|
+
"source": "classes/anthropic.kdl:279",
|
|
4026
4179
|
"class": "anthropic",
|
|
4027
4180
|
"providers": [
|
|
4028
4181
|
"google-antigravity"
|