From 53f0fff34032977433dfe6935ce0a684a4141fd8 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Fri, 20 Jun 2025 17:38:17 -0700 Subject: [PATCH] feat(proxy/_types.py): return team member spend update pydantic object to include spend Allows showing spend of team member within team on UI --- litellm/proxy/_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index eb1799b0773..269c77627c8 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -2493,6 +2493,7 @@ class LiteLLM_TeamMembership(LiteLLMPydanticObjectBase): user_id: str team_id: str budget_id: Optional[str] = None + spend: Optional[float] = 0.0 litellm_budget_table: Optional[LiteLLM_BudgetTable]