From 6ea9085eec4e5201709bc80f7f6af394516c2937 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 17 May 2023 13:45:27 -0700 Subject: [PATCH] updated md chat log format --- aider/io.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/aider/io.py b/aider/io.py index 7abfecdc3..fa9edd1cb 100644 --- a/aider/io.py +++ b/aider/io.py @@ -141,7 +141,7 @@ class InputOutput: print() - prefix = "#### > " + prefix = "####" if inp: hist = inp.splitlines() else: @@ -150,7 +150,6 @@ class InputOutput: hist = f" \n{prefix} ".join(hist) hist = f""" ---- {prefix} {hist}""" self.append_chat_history(hist, linebreak=True)