diff --git a/litellm/proxy/auth/auth_checks.py b/litellm/proxy/auth/auth_checks.py index 576585ee9a3..2f044379173 100644 --- a/litellm/proxy/auth/auth_checks.py +++ b/litellm/proxy/auth/auth_checks.py @@ -5289,7 +5289,7 @@ async def _team_max_budget_check( max_budget=team_object.max_budget, ) - if math.isfinite(team_object.max_budget) and spend > team_object.max_budget: + if math.isfinite(team_object.max_budget) and spend >= team_object.max_budget: if valid_token: call_info: Final = CallInfo( token=valid_token.token,