From 44c843ce57d644fdfa76ce753c3eca79d4637b57 Mon Sep 17 00:00:00 2001 From: unknown <> Date: Sat, 11 Jul 2026 23:57:46 +0000 Subject: [PATCH] fix(team): drop schema-visible docstring to keep generated types in sync Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- litellm/proxy/_types.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/litellm/proxy/_types.py b/litellm/proxy/_types.py index abe37b6ed7a..5ed6a17608c 100644 --- a/litellm/proxy/_types.py +++ b/litellm/proxy/_types.py @@ -3706,13 +3706,6 @@ class TeamMemberUpdateResponse(MemberUpdateResponse): class TeamMemberBulkUpdateFields(LiteLLMPydanticObjectBase): - """Fields to apply to every selected member in a bulk update. Matches the - merge-patch semantics of the single-member endpoint: an omitted field is - left untouched, while an explicitly-passed ``None`` clears that field for - each member. ``require_at_least_one_field`` only enforces that the caller - set at least one field, so ``max_budget_in_team=None`` is a valid request - that clears the per-member budget.""" - max_budget_in_team: float | None = None role: Literal["admin", "user"] | None = None tpm_limit: int | None = None