diff --git a/litellm/proxy/auth/route_checks.py b/litellm/proxy/auth/route_checks.py index c75c1e66c..9496776a8 100644 --- a/litellm/proxy/auth/route_checks.py +++ b/litellm/proxy/auth/route_checks.py @@ -192,6 +192,10 @@ class RouteChecks: return True if "/langfuse/" in route: return True + if "/anthropic/" in route: + return True + if "/azure/" in route: + return True return False @staticmethod