From 36f03f1087ed2f657f18824da8de1e64bdcdaf90 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Fri, 1 May 2026 23:01:43 +0000 Subject: [PATCH] Fix syntax errors from botched merge in router.py --- litellm/router.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/litellm/router.py b/litellm/router.py index d01397fd0f..32e852db84 100644 --- a/litellm/router.py +++ b/litellm/router.py @@ -9422,21 +9422,23 @@ class Router: _pre_model_access_group_filter_len > 0 and len(healthy_deployments) == 0 ) - if len(healthy_deployments) == 0: - # check if the user sent in a deployment name instead - # Do not fall back when access-group filtering removed every candidate; if len(healthy_deployments) == 0: # check if the user sent in a deployment name instead # Do not fall back when access-group filtering removed every candidate; # _get_deployment_by_litellm_model does not re-apply that filter. if _pre_model_access_group_filter_len == 0: - _litellm_model_deployments = self._get_deployment_by_litellm_model(model=model) + _litellm_model_deployments = self._get_deployment_by_litellm_model( + model=model + ) healthy_deployments = self._filter_deployments_by_model_access_groups( model=model, healthy_deployments=_litellm_model_deployments, request_kwargs=request_kwargs, request_team_id=request_team_id, ) + + if verbose_router_logger.isEnabledFor(logging.DEBUG): + verbose_router_logger.debug( f"initial list of deployments: {healthy_deployments}" )