From 4d36518de0bf941ceadeb24fa473ab8aa28da085 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Sun, 18 Aug 2024 13:14:38 -0700 Subject: [PATCH] =?UTF-8?q?feat:=20Add=20=E2=9A=A1=20symbol=20to=20announc?= =?UTF-8?q?ement=20if=20prompt=20caching=20is=20enabled=20and=20supported?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aider/coders/base_coder.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aider/coders/base_coder.py b/aider/coders/base_coder.py index fc74b7979..dc7bfdf21 100755 --- a/aider/coders/base_coder.py +++ b/aider/coders/base_coder.py @@ -209,6 +209,8 @@ class Coder: output = f" {main_model.name} with" if main_model.info.get("supports_assistant_prefill"): output += " ♾️" + if main_model.cache_control and self.cache_prompts: + output += " ⚡" output += f" {self.edit_format} edit format" if weak_model is not main_model: prefix = "Models:"