From b7843b9113fd40325da92db11852217cc480fd83 Mon Sep 17 00:00:00 2001 From: Krrish Dholakia Date: Sat, 21 Jun 2025 13:36:29 -0700 Subject: [PATCH] docs(team_endpoints.py): document new param --- litellm/proxy/management_endpoints/team_endpoints.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litellm/proxy/management_endpoints/team_endpoints.py b/litellm/proxy/management_endpoints/team_endpoints.py index a44da618962..bdc61e812dc 100644 --- a/litellm/proxy/management_endpoints/team_endpoints.py +++ b/litellm/proxy/management_endpoints/team_endpoints.py @@ -261,6 +261,7 @@ async def new_team( # noqa: PLR0915 - model_aliases: Optional[dict] - Model aliases for the team. [Docs](https://docs.litellm.ai/docs/proxy/team_based_routing#create-team-with-model-alias) - guardrails: Optional[List[str]] - Guardrails for the team. [Docs](https://docs.litellm.ai/docs/proxy/guardrails) - object_permission: Optional[LiteLLM_ObjectPermissionBase] - team-specific object permission. Example - {"vector_stores": ["vector_store_1", "vector_store_2"]}. IF null or {} then no object permission. + - team_member_budget: Optional[float] - The maximum budget allocated to an individual team member. Returns: - team_id: (str) Unique team id - used for tracking spend across multiple keys for same team id. @@ -685,6 +686,7 @@ async def update_team( - model_aliases: Optional[dict] - Model aliases for the team. [Docs](https://docs.litellm.ai/docs/proxy/team_based_routing#create-team-with-model-alias) - guardrails: Optional[List[str]] - Guardrails for the team. [Docs](https://docs.litellm.ai/docs/proxy/guardrails) - object_permission: Optional[LiteLLM_ObjectPermissionBase] - team-specific object permission. Example - {"vector_stores": ["vector_store_1", "vector_store_2"]}. IF null or {} then no object permission. + - team_member_budget: Optional[float] - The maximum budget allocated to an individual team member. Example - update team TPM Limit ```