docs(user_management): add budget_limits param to user_update docstring

This commit is contained in:
Ishaan Jaffer 2026-04-17 13:13:03 -07:00
parent 77767f5787
commit d369f0a1c1
No known key found for this signature in database

View file

@ -1347,7 +1347,8 @@ async def user_update(
- key_alias: Optional[str] - [NOT IMPLEMENTED].
- object_permission: Optional[LiteLLM_ObjectPermissionBase] - internal user-specific object permission. Example - {"vector_stores": ["vector_store_1", "vector_store_2"]}. IF null or {} then no object permission.
- prompts: Optional[List[str]] - List of allowed prompts for the user. If specified, the user will only be able to use these specific prompts.
- budget_limits: Optional[list] - List of concurrent budget windows for the user. Each window specifies a budget_limit, time_period, and optional budget_duration. Example - [{"budget_limit": 10.0, "time_period": "1d"}, {"budget_limit": 50.0, "time_period": "7d"}].
"""
try:
verbose_proxy_logger.debug("/user/update: Received data = %s", data)