@ian2018cs/agenthub 0.1.13 → 0.1.14
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/package.json
CHANGED
|
@@ -10,7 +10,15 @@
|
|
|
10
10
|
// Cache pricing: read = 0.1x base, write (5min) = 1.25x base, write (1h) = 2x base
|
|
11
11
|
const PRICING_PER_MILLION = {
|
|
12
12
|
// ============ Latest Models ============
|
|
13
|
-
// Claude Opus 4.
|
|
13
|
+
// Claude Opus 4.6 (latest flagship)
|
|
14
|
+
'claude-opus-4-6': {
|
|
15
|
+
input: 5.00,
|
|
16
|
+
output: 25.00,
|
|
17
|
+
cacheRead: 0.50,
|
|
18
|
+
cacheCreate5m: 6.25, // 1.25x base (5-minute ephemeral cache)
|
|
19
|
+
cacheCreate1h: 10.00 // 2x base (1-hour extended cache)
|
|
20
|
+
},
|
|
21
|
+
// Claude Opus 4.5
|
|
14
22
|
'claude-opus-4-5-20251101': {
|
|
15
23
|
input: 5.00,
|
|
16
24
|
output: 25.00,
|