We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34366d8 commit 6589c92Copy full SHA for 6589c92
litellm/proxy/management_endpoints/key_management_endpoints.py
@@ -645,8 +645,8 @@ def check_team_key_model_specific_limits(
645
if data.model_rpm_limit is None and data.model_tpm_limit is None:
646
return
647
# get total model specific tpm/rpm limit
648
- model_specific_rpm_limit = {}
649
- model_specific_tpm_limit = {}
+ model_specific_rpm_limit: Dict[str, int] = {}
+ model_specific_tpm_limit: Dict[str, int] = {}
650
651
for key in keys:
652
if key.metadata.get("model_rpm_limit", None) is not None:
0 commit comments