From 68b3b6f4695bf75b50ed7e58ec1dca269d2f221c Mon Sep 17 00:00:00 2001 From: Kade Heckel <51248168+kmheckel@users.noreply.github.com> Date: Sat, 11 May 2024 18:05:10 +0100 Subject: [PATCH] changed error message --- litellm/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/utils.py b/litellm/utils.py index fab8beb14..f97694d8f 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -6620,7 +6620,7 @@ def get_max_tokens(model: str): raise Exception() except: raise Exception( - f"Model {model} from provider {custom_llm_provider} isn't mapped yet. Add it here - https://github.com/BerriAI/litellm/blob/main/model_prices_and_context_window.json" + f"Model {model} isn't mapped yet. Add it here - https://github.com/BerriAI/litellm/blob/main/model_prices_and_context_window.json" )