From 4b953353795e1ef4d7cc6e5b7c7c3a688783b9cf Mon Sep 17 00:00:00 2001 From: Owen Date: Mon, 31 Aug 2026 17:11:15 -0400 Subject: [PATCH] Correct to be per token --- manage/ai/model-catalog.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manage/ai/model-catalog.mdx b/manage/ai/model-catalog.mdx index 8777d04..da5f1e7 100644 --- a/manage/ai/model-catalog.mdx +++ b/manage/ai/model-catalog.mdx @@ -30,7 +30,7 @@ Unmapped types skip Known Models and wildcard expansion against the catalog. Ent ## Pricing and Budgets -Each catalog entry can include token rates: `in`, `out`, `cache`, and `reasoning`. [Budget](/manage/ai/budgets) enforcement and usage analytics use those rates when the requested model matches a catalog id. Unknown keys have no catalog price, so they do not count toward USD budgets. Add custom models to the catalog if you need cost tracking for them. Token budgets still sum usage for unknown ids. +Each catalog entry can include token rates: `in`, `out`, `cache`, and `reasoning`. [Budget](/manage/ai/budgets) enforcement and usage analytics use those rates when the requested model matches a catalog id. Unknown keys have no catalog price, so they do not count toward USD budgets. Add custom models to the catalog if you need cost tracking for them. Token budgets still sum usage for unknown ids. Cost is per token. ## Loading a Custom Catalog @@ -64,9 +64,9 @@ Catalog files and API responses are JSON: "model": "gpt-4o", "provider": "openai", "pricing": { - "in": 2.5, - "out": 10, - "cache": 1.25, + "in": 0.0000188, + "out": 0.0000188, + "cache": null, "reasoning": null } }