diff --git a/litellm/proxy/auth/auth_checks.py b/litellm/proxy/auth/auth_checks.py index db794c5ac3..f5d6bb25bb 100644 --- a/litellm/proxy/auth/auth_checks.py +++ b/litellm/proxy/auth/auth_checks.py @@ -388,7 +388,7 @@ async def common_checks( # noqa: PLR0915 # 1. If team is blocked if team_object is not None and team_object.blocked is True: raise Exception( - f"Team={team_object.team_id} is blocked. Update via `/team/unblock` if your admin." + f"Team={team_object.team_id} is blocked. Update via `/team/unblock` if you're an admin." ) # 2. If team can call model diff --git a/litellm/proxy/auth/user_api_key_auth.py b/litellm/proxy/auth/user_api_key_auth.py index c992cfb53e..177245143b 100644 --- a/litellm/proxy/auth/user_api_key_auth.py +++ b/litellm/proxy/auth/user_api_key_auth.py @@ -1145,7 +1145,7 @@ async def _user_api_key_auth_builder( # noqa: PLR0915 ## base case ## key is disabled if valid_token.blocked is True: raise Exception( - "Key is blocked. Update via `/key/unblock` if you're admin." + "Key is blocked. Update via `/key/unblock` if you're an admin." ) config = valid_token.config