@diogonzafe/tokenwatch 0.6.0 → 0.7.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/README.md +26 -2
- package/dist/cli.js +405 -39
- package/dist/cli.js.map +1 -1
- package/dist/index.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/prices.json +7 -1
package/dist/index.cjs
CHANGED
|
@@ -269,7 +269,7 @@ async function getRemotePrices() {
|
|
|
269
269
|
|
|
270
270
|
// prices.json
|
|
271
271
|
var prices_default = {
|
|
272
|
-
updated_at: "2026-04-
|
|
272
|
+
updated_at: "2026-04-24",
|
|
273
273
|
source: "https://raw.githubusercontent.com/BerriAI/litellm/main/model_prices_and_context_window.json",
|
|
274
274
|
models: {
|
|
275
275
|
"gpt-4o": {
|
|
@@ -1586,6 +1586,12 @@ var prices_default = {
|
|
|
1586
1586
|
cachedInput: 0.3,
|
|
1587
1587
|
cacheCreationInput: 3.75,
|
|
1588
1588
|
maxInputTokens: 1e6
|
|
1589
|
+
},
|
|
1590
|
+
"gpt-5.5": {
|
|
1591
|
+
input: 5,
|
|
1592
|
+
output: 30,
|
|
1593
|
+
cachedInput: 0.5,
|
|
1594
|
+
maxInputTokens: 272e3
|
|
1589
1595
|
}
|
|
1590
1596
|
}
|
|
1591
1597
|
};
|