mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
fix: Remove subject from chat history entry
This commit is contained in:
parent
95d1ea37be
commit
7e6794d2c7
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue