From b1e8d29ae07826f5f5ab8847b15a97808888e3be Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 7 Mar 2025 19:38:43 -0800 Subject: [PATCH] style: update reasoning tag formatting for better readability --- aider/reasoning_tags.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/reasoning_tags.py b/aider/reasoning_tags.py index 137e617ed..d4d7eb99c 100644 --- a/aider/reasoning_tags.py +++ b/aider/reasoning_tags.py @@ -7,8 +7,8 @@ from aider.dump import dump # noqa # Standard tag identifier REASONING_TAG = "thinking-content-" + "7bbeb8e1441453ad999a0bbba8a46d4b" # Output formatting -REASONING_START = "> Thinking ..." -REASONING_END = "> ... done thinking.\n\n------" +REASONING_START = "-----\n**Thought Process**" +REASONING_END = "-----\n**Answer**" def remove_reasoning_content(res, reasoning_tag):