From ea30be2d91a57b1a3cc1eea36f808689885a363c Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 2 Sep 2024 12:51:30 -0700 Subject: [PATCH] fix pass through construct_target_url when vertex_proj is None --- litellm/proxy/vertex_ai_endpoints/vertex_endpoints.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/litellm/proxy/vertex_ai_endpoints/vertex_endpoints.py b/litellm/proxy/vertex_ai_endpoints/vertex_endpoints.py index 4a3a97e679..4e33ee497c 100644 --- a/litellm/proxy/vertex_ai_endpoints/vertex_endpoints.py +++ b/litellm/proxy/vertex_ai_endpoints/vertex_endpoints.py @@ -127,6 +127,9 @@ async def vertex_proxy_route( verbose_proxy_logger.debug("requested endpoint %s", endpoint) headers: dict = {} + + vertex_project = None + vertex_location = None # Use headers from the incoming request if default_vertex_config is not set if default_vertex_config is None: headers = dict(request.headers) or {}