From 539859f1abe880ed0468d7767114657ba40f73ef Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 6 Mar 2025 18:21:45 -0800 Subject: [PATCH] fix: Update reasoning tag message and comment out dump function --- aider/coders/base_coder.py | 2 +- aider/models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/coders/base_coder.py b/aider/coders/base_coder.py index e17568f74..93bb441c4 100755 --- a/aider/coders/base_coder.py +++ b/aider/coders/base_coder.py @@ -1768,7 +1768,7 @@ class Coder: text = chunk.choices[0].delta.content if text: if self.got_reasoning_content and not self.ended_reasoning_content: - tag = f"\n\n------\n\n\n\n" + tag = f"\n\n> Done thinking ...\n\n------\n\n\n\n" self.partial_response_content += tag self.ended_reasoning_content = True diff --git a/aider/models.py b/aider/models.py index 683daed83..44bec7770 100644 --- a/aider/models.py +++ b/aider/models.py @@ -625,7 +625,7 @@ class Model(ModelSettings): kwargs["num_ctx"] = num_ctx key = json.dumps(kwargs, sort_keys=True).encode() - dump(kwargs) + # dump(kwargs) hash_object = hashlib.sha1(key) if "timeout" not in kwargs: