feat(proxy/_types.py): return team member spend

update pydantic object to include spend

Allows showing spend of team member within team on UI
This commit is contained in:
Krrish Dholakia 2025-06-20 17:38:17 -07:00
parent ef2a1a43ec
commit 53f0fff340

View file

@ -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]