diff --git a/litellm/tests/test_proxy_routes.py b/litellm/tests/test_proxy_routes.py index 0e3f6339c7e..6f5774d3e73 100644 --- a/litellm/tests/test_proxy_routes.py +++ b/litellm/tests/test_proxy_routes.py @@ -93,3 +93,8 @@ def test_is_llm_api_route(route: str, expected: bool): ) def test_is_llm_api_route_similar_but_false(route: str): assert is_llm_api_route(route) == False + + +def test_anthropic_api_routes(): + # allow non proxy admins to call anthropic api routes + assert is_llm_api_route(route="/v1/messages") is True