From 2f65c950fea232bac4093ffe9e6c0b368ab15724 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Mon, 22 Jul 2024 14:00:33 -0700 Subject: [PATCH] fix(vertex_httpx.py): Change non-blocking vertex error to warning Fixes https://github.com/BerriAI/litellm/issues/4825 --- litellm/llms/vertex_httpx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/llms/vertex_httpx.py b/litellm/llms/vertex_httpx.py index 03b0a56ccd7..a8de79affc8 100644 --- a/litellm/llms/vertex_httpx.py +++ b/litellm/llms/vertex_httpx.py @@ -1033,7 +1033,7 @@ class VertexLLM(BaseLLM): model=model, custom_llm_provider=_custom_llm_provider ) except Exception as e: - verbose_logger.error( + verbose_logger.warning( "Unable to identify if system message supported. Defaulting to 'False'. Received error message - {}\nAdd it here - https://github.com/BerriAI/litellm/blob/main/model_prices_and_context_window.json".format( str(e) )