ccsidekick 1.7.0 → 1.9.0
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/ccsidekick-render.js +21 -0
- package/dist/ccsidekick.js +21 -0
- package/package.json +1 -1
|
@@ -336,6 +336,27 @@ var pricing_default = [
|
|
|
336
336
|
cache_read: 1.5,
|
|
337
337
|
batch_input: 7.5,
|
|
338
338
|
batch_output: 37.5
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
key: "claude-fable-5-1",
|
|
342
|
+
input: 10,
|
|
343
|
+
output: 50,
|
|
344
|
+
cache_write_5m: 12.5,
|
|
345
|
+
cache_write_1h: 20,
|
|
346
|
+
cache_read: 0.25,
|
|
347
|
+
batch_input: 5,
|
|
348
|
+
batch_output: 25
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
key: "claude-opus-5-5",
|
|
352
|
+
input: 4,
|
|
353
|
+
output: 20,
|
|
354
|
+
cache_write_5m: 5,
|
|
355
|
+
cache_write_1h: 8,
|
|
356
|
+
cache_read: 0.2,
|
|
357
|
+
batch_input: 2,
|
|
358
|
+
batch_output: 10,
|
|
359
|
+
fast_mult: 2
|
|
339
360
|
}
|
|
340
361
|
];
|
|
341
362
|
|
package/dist/ccsidekick.js
CHANGED
|
@@ -2753,6 +2753,27 @@ var init_pricing = __esm(() => {
|
|
|
2753
2753
|
cache_read: 1.5,
|
|
2754
2754
|
batch_input: 7.5,
|
|
2755
2755
|
batch_output: 37.5
|
|
2756
|
+
},
|
|
2757
|
+
{
|
|
2758
|
+
key: "claude-fable-5-1",
|
|
2759
|
+
input: 10,
|
|
2760
|
+
output: 50,
|
|
2761
|
+
cache_write_5m: 12.5,
|
|
2762
|
+
cache_write_1h: 20,
|
|
2763
|
+
cache_read: 0.25,
|
|
2764
|
+
batch_input: 5,
|
|
2765
|
+
batch_output: 25
|
|
2766
|
+
},
|
|
2767
|
+
{
|
|
2768
|
+
key: "claude-opus-5-5",
|
|
2769
|
+
input: 4,
|
|
2770
|
+
output: 20,
|
|
2771
|
+
cache_write_5m: 5,
|
|
2772
|
+
cache_write_1h: 8,
|
|
2773
|
+
cache_read: 0.2,
|
|
2774
|
+
batch_input: 2,
|
|
2775
|
+
batch_output: 10,
|
|
2776
|
+
fast_mult: 2
|
|
2756
2777
|
}
|
|
2757
2778
|
];
|
|
2758
2779
|
});
|