diff --git a/litellm/utils.py b/litellm/utils.py index 82c31fe4b..facabd3aa 100644 --- a/litellm/utils.py +++ b/litellm/utils.py @@ -8713,7 +8713,10 @@ def exception_type( llm_provider="bedrock", response=original_exception.response, ) - if "Connect timeout on endpoint URL" in error_str: + if ( + "Connect timeout on endpoint URL" in error_str + or "timed out" in error_str + ): exception_mapping_worked = True raise Timeout( message=f"BedrockException: Timeout Error - {error_str}",