From 1da99a8adf3b5613eb57d003367df7d93e237ea7 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 17 Dec 2024 16:23:34 -0800 Subject: [PATCH] fix _select_model_name_for_cost_calc docstring --- litellm/cost_calculator.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/litellm/cost_calculator.py b/litellm/cost_calculator.py index 6f176e12c3..45bd24aab3 100644 --- a/litellm/cost_calculator.py +++ b/litellm/cost_calculator.py @@ -373,8 +373,7 @@ def _select_model_name_for_cost_calc( 1. If custom pricing is true, return received model name 2. If base_model is set (e.g. for azure models), return that 3. If completion response has model set return that - 4. Check if compl - 4. If model is passed in return that + 4. Check if model is passed in return that """ return_model: Optional[str] = None region_name: Optional[str] = None