From 5d24b47d2b621153fab0e0936bc84bf53a3eef36 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 20 May 2024 16:23:48 -0700 Subject: [PATCH] fix standardize llm exception alert to msg: `value` --- litellm/proxy/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 09e772e10..3dac1563c 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -436,7 +436,7 @@ class ProxyLogging: asyncio.create_task( self.alerting_handler( - message=f"LLM API call failed: {exception_str}", + message=f"LLM API call failed: `{exception_str}`", level="High", alert_type="llm_exceptions", request_data=request_data,