From 87b504a58fc79b91a699491b437d0cfbc658303b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 27 Mar 2025 09:03:40 -1000 Subject: [PATCH] copy --- aider/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/exceptions.py b/aider/exceptions.py index 12c257540..3c2ff0c30 100644 --- a/aider/exceptions.py +++ b/aider/exceptions.py @@ -85,6 +85,6 @@ class LiteLLMExceptions: return ExInfo("APIConnectionError", False, "You need to: pip install boto3") if "OpenrouterException" in str(ex) and "'choices'" in str(ex): return ExInfo( - "APIConnectionError", True, "The OpenRouter API provider is down or offline" + "APIConnectionError", True, "The OpenRouter API provider is down or overloaded." ) return self.exceptions.get(ex.__class__, ExInfo(None, None, None))