From 23aa7f81b562b4cd96079e05733acb56b7c0bd1b Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 26 Mar 2025 15:53:33 -0700 Subject: [PATCH] fix ProxyException --- litellm/proxy/auth/auth_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/proxy/auth/auth_checks.py b/litellm/proxy/auth/auth_checks.py index 7f75272bbd7..efbfe8d90cb 100644 --- a/litellm/proxy/auth/auth_checks.py +++ b/litellm/proxy/auth/auth_checks.py @@ -993,7 +993,7 @@ async def get_key_object( if _valid_token is None: raise ProxyException( - message="Invalid proxy server token passed. key={}, not found in db. Create key via `/key/generate` call.".format( + message="Authentication Error, Invalid proxy server token passed. key={}, not found in db. Create key via `/key/generate` call.".format( hashed_token ), type=ProxyErrorTypes.token_not_found_in_db,