diff --git a/litellm/litellm_core_utils/exception_mapping_utils.py b/litellm/litellm_core_utils/exception_mapping_utils.py index bc54786420a..f0e7fb62ca9 100644 --- a/litellm/litellm_core_utils/exception_mapping_utils.py +++ b/litellm/litellm_core_utils/exception_mapping_utils.py @@ -56,12 +56,6 @@ class ExceptionCheckers: if re.search(r"rate[\s_\-]*limit", _error_str_lower): return True - ####################################### - # Mistral API returns this error string - ######################################### - if "service tier capacity exceeded" in _error_str_lower: - return True - return False @staticmethod