From 3dea1ebb32c96560f9f10171d0597ca30d4bea40 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Sat, 5 Sep 2026 23:18:25 -0700 Subject: [PATCH] fix(cost-map): keep the prompt cache breakpoint flag on the foundry gpt-6-astra row The openai gpt-6-astra card carries supports_prompt_cache_breakpoint, so a Foundry deployment reported it as true until the azure_ai row took over the lookup. The cache control hook still honours breakpoints for that deployment through the bare name, so /model/info was the only thing that changed, and it now agrees with the hook again. --- litellm/model_prices_and_context_window_backup.json | 1 + model_prices_and_context_window.json | 1 + 2 files changed, 2 insertions(+) diff --git a/litellm/model_prices_and_context_window_backup.json b/litellm/model_prices_and_context_window_backup.json index 48c51f8bbf5..2f86deffe54 100644 --- a/litellm/model_prices_and_context_window_backup.json +++ b/litellm/model_prices_and_context_window_backup.json @@ -3524,6 +3524,7 @@ "supports_none_reasoning_effort": true, "supports_parallel_function_calling": true, "supports_pdf_input": true, + "supports_prompt_cache_breakpoint": true, "supports_prompt_caching": true, "supports_reasoning": true, "supports_response_schema": true, diff --git a/model_prices_and_context_window.json b/model_prices_and_context_window.json index 48c51f8bbf5..2f86deffe54 100644 --- a/model_prices_and_context_window.json +++ b/model_prices_and_context_window.json @@ -3524,6 +3524,7 @@ "supports_none_reasoning_effort": true, "supports_parallel_function_calling": true, "supports_pdf_input": true, + "supports_prompt_cache_breakpoint": true, "supports_prompt_caching": true, "supports_reasoning": true, "supports_response_schema": true,