From 7e6794d2c7d8930b1a3a38403e1fa46cd29125a1 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 21 Aug 2024 05:24:54 -0700 Subject: [PATCH] fix: Remove subject from chat history entry --- aider/io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/io.py b/aider/io.py index 8396543b1..2d5b6ef36 100644 --- a/aider/io.py +++ b/aider/io.py @@ -384,7 +384,7 @@ class InputOutput: else: res = prompt(question + " ", default=default) - hist = f"{subject + ': ' if subject else ''}{question.strip()} {res.strip()}" + hist = f"{question.strip()} {res.strip()}" self.append_chat_history(hist, linebreak=True, blockquote=True) if self.yes in (True, False): self.tool_output(hist)