@otto-code/protocol 0.7.1 → 0.7.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/dist/model-tiers.js +10 -3
- package/package.json +1 -1
package/dist/model-tiers.js
CHANGED
|
@@ -24,17 +24,24 @@ export const KNOWN_MODEL_TIERS = {
|
|
|
24
24
|
// Opus variants are "deep", non-1M Opus and Sonnet are "standard", Haiku is
|
|
25
25
|
// "fast". Fable (1M, most powerful) is "deep".
|
|
26
26
|
"claude-fable-5": "deep",
|
|
27
|
+
// Opus 4.7/4.8/5 are natively 1M, so the plain ids are "deep" and the manifest
|
|
28
|
+
// ships no `[1m]` row for them. The decorated ids stay mapped here because the
|
|
29
|
+
// CLI still accepts them and a user's settings.json or an older agent record
|
|
30
|
+
// may carry one.
|
|
27
31
|
"claude-opus-5[1m]": "deep",
|
|
28
|
-
"claude-opus-5": "
|
|
32
|
+
"claude-opus-5": "deep",
|
|
29
33
|
"claude-opus-4-8[1m]": "deep",
|
|
30
|
-
"claude-opus-4-8": "
|
|
34
|
+
"claude-opus-4-8": "deep",
|
|
31
35
|
"claude-opus-4-7[1m]": "deep",
|
|
32
|
-
"claude-opus-4-7": "
|
|
36
|
+
"claude-opus-4-7": "deep",
|
|
33
37
|
"claude-opus-4-6[1m]": "deep",
|
|
34
38
|
"claude-opus-4-6": "standard",
|
|
39
|
+
"claude-opus-4-5": "standard",
|
|
35
40
|
"claude-sonnet-5": "standard",
|
|
36
41
|
"claude-sonnet-4-6[1m]": "standard",
|
|
37
42
|
"claude-sonnet-4-6": "standard",
|
|
43
|
+
"claude-sonnet-4-5[1m]": "standard",
|
|
44
|
+
"claude-sonnet-4-5": "standard",
|
|
38
45
|
"claude-haiku-4-5": "fast",
|
|
39
46
|
"claude-haiku-4-5-20251001": "fast",
|
|
40
47
|
// OpenAI (GPT / o-series)
|