From a664c3dd473c10ebd9f8e981bc33240877046e43 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 5 Dec 2024 16:22:42 -0800 Subject: [PATCH] feat: add silent mode option for read_text function --- aider/io.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/io.py b/aider/io.py index be5bbbe05..2576c8c7f 100644 --- a/aider/io.py +++ b/aider/io.py @@ -321,6 +321,7 @@ class InputOutput: self.tool_error(f"{filename}: {e}") return + # add silent=False, if true don't output any error messages. SEARCH/REPLACE the entire func. AI! def read_text(self, filename): if is_image_file(filename): return self.read_image(filename)