@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.js
CHANGED
|
@@ -237,7 +237,7 @@ async function getRemotePrices() {
|
|
|
237
237
|
|
|
238
238
|
// prices.json
|
|
239
239
|
var prices_default = {
|
|
240
|
-
updated_at: "2026-04-
|
|
240
|
+
updated_at: "2026-04-24",
|
|
241
241
|
source: "https://raw.githubusercontent.com/BerriAI/litellm/main/model_prices_and_context_window.json",
|
|
242
242
|
models: {
|
|
243
243
|
"gpt-4o": {
|
|
@@ -1554,6 +1554,12 @@ var prices_default = {
|
|
|
1554
1554
|
cachedInput: 0.3,
|
|
1555
1555
|
cacheCreationInput: 3.75,
|
|
1556
1556
|
maxInputTokens: 1e6
|
|
1557
|
+
},
|
|
1558
|
+
"gpt-5.5": {
|
|
1559
|
+
input: 5,
|
|
1560
|
+
output: 30,
|
|
1561
|
+
cachedInput: 0.5,
|
|
1562
|
+
maxInputTokens: 272e3
|
|
1557
1563
|
}
|
|
1558
1564
|
}
|
|
1559
1565
|
};
|