docs(team): document mcp_rpm_limit in update_team docstring - #33420
docs(team): document mcp_rpm_limit in update_team docstring#33420yucheng-berri wants to merge 2 commits into
Conversation
Greptile SummaryThis PR fixes a documentation CI failure by adding a missing
Confidence Score: 5/5Safe to merge — the change is a single docstring line addition with no effect on runtime behaviour. Both changed files receive only the addition of one documentation line. No logic, schema migrations, auth paths, or tests are touched; the TypeScript schema file is generated and mirrors the Python docstring directly. The change resolves a failing documentation CI validator with no risk of regression. No files require special attention.
|
| Filename | Overview |
|---|---|
| litellm/proxy/management_endpoints/team_endpoints.py | Adds the missing mcp_rpm_limit parameter line to the update_team docstring to satisfy the documentation validator test; no logic changes. |
| ui/litellm-dashboard/src/lib/http/schema.d.ts | Auto-generated TypeScript schema file updated to mirror the same mcp_rpm_limit docstring addition; no functional change. |
Reviews (2): Last reviewed commit: "chore(ui): regenerate dashboard API type..." | Re-trigger Greptile
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
|
Superseded: litellm_internal_staging now documents mcp_rpm_limit in the update_team docstring, so the documentation check is fixed at the source |
Relevant issues
Linear ticket
Pre-Submission checklist
Please complete all items before asking a LiteLLM maintainer to review your PR
@greptileaito re-request a review after pushing changes)Screenshots / Proof of Fix
The documentation CI check currently fails on every PR off litellm_internal_staging because tests/documentation_tests/test_api_docs.py requires each UpdateTeamRequest field to appear in the update_team docstring and mcp_rpm_limit was documented for new_team but never added to update_team. Example failure on an unrelated PR: https://github.com/BerriAI/litellm/actions/runs/29440196589/job/87436858516
At this commit the validator passes locally:
No runtime behavior is touched; the change is one docstring line
Type
Documentation
Changes
Adds the mcp_rpm_limit parameter line to the update_team endpoint docstring, copied from the new_team docstring where the field is already documented
Behavior changes
None; docstring only