@hiper2d/ai-agents 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/README.md +3 -0
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -803,10 +803,10 @@ var LLM_CONSTANTS = {
|
|
|
803
803
|
};
|
|
804
804
|
var DEFAULT_MAX_OUTPUT_TOKENS = 8192;
|
|
805
805
|
var SupportedAiModels = {
|
|
806
|
-
// Claude Fable - frontier reasoning model. Thinking is always on (no non-thinking variant).
|
|
806
|
+
// Claude Fable 5.1 (2026-09-02, was Fable 5) - frontier reasoning model. Thinking is always on (no non-thinking variant).
|
|
807
807
|
[LLM_CONSTANTS.CLAUDE_FABLE]: {
|
|
808
|
-
displayName: "Claude Fable 5",
|
|
809
|
-
modelApiName: "claude-fable-5",
|
|
808
|
+
displayName: "Claude Fable 5.1",
|
|
809
|
+
modelApiName: "claude-fable-5-1",
|
|
810
810
|
apiKeyName: API_KEY_CONSTANTS.ANTHROPIC,
|
|
811
811
|
hasThinking: true,
|
|
812
812
|
reasoningEffort: "high",
|
|
@@ -1204,10 +1204,11 @@ var MODEL_PRICING = {
|
|
|
1204
1204
|
},
|
|
1205
1205
|
// Anthropic models
|
|
1206
1206
|
[SupportedAiModels[LLM_CONSTANTS.CLAUDE_FABLE].modelApiName]: {
|
|
1207
|
-
// Full 1M context window at standard pricing (no extended-context premium)
|
|
1207
|
+
// Full 1M context window at standard pricing (no extended-context premium).
|
|
1208
|
+
// Fable 5.1 (2026-09-02): same $10/$50 as Fable 5, but cache reads dropped to $0.25/MTok.
|
|
1208
1209
|
inputPrice: 10,
|
|
1209
1210
|
outputPrice: 50,
|
|
1210
|
-
cacheHitPrice:
|
|
1211
|
+
cacheHitPrice: 0.25
|
|
1211
1212
|
},
|
|
1212
1213
|
[SupportedAiModels[LLM_CONSTANTS.CLAUDE_OPUS].modelApiName]: {
|
|
1213
1214
|
inputPrice: 5,
|