From ade615c44537b13173fa88b21ac81da5539c2960 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 31 Oct 2024 13:48:00 -0700 Subject: [PATCH] chore: Add TODO comment for URL handling in error messages --- aider/coders/base_coder.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/coders/base_coder.py b/aider/coders/base_coder.py index a5ad8a64f..8afe0d8a1 100755 --- a/aider/coders/base_coder.py +++ b/aider/coders/base_coder.py @@ -1138,6 +1138,7 @@ class Coder: self.io.tool_warning(str(err)) retry_delay *= 2 if retry_delay > RETRY_TIMEOUT: + #ai look for a URL in the str(err) and confirm_ask if they want to view it! break self.io.tool_output(f"Retrying in {retry_delay:.1f} seconds...") time.sleep(retry_delay)