From 7a59a986ea310c8ff971af09329ce7d47446cf10 Mon Sep 17 00:00:00 2001 From: "bscriver123 (aider)" Date: Wed, 11 Dec 2024 18:21:07 +0000 Subject: [PATCH] fix: Remove unsupported parameters from Coder.create() in harness.py --- harness.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/harness.py b/harness.py index 1c40217..83d661b 100755 --- a/harness.py +++ b/harness.py @@ -154,7 +154,6 @@ def get_coder(model, git_dname, chat_history_file, test_cmd, temperature, oracle coder = Coder.create( main_model=model, io=io, - git_dname=git_dname, map_tokens=2048, # Use 2k tokens for the repo map stream=False, auto_commits=False, # Don't bother git committing changes @@ -163,7 +162,6 @@ def get_coder(model, git_dname, chat_history_file, test_cmd, temperature, oracle test_cmd=test_cmd, # verbose=True, # edit_format="udiff", - max_chat_history_tokens=8*1024, ) coder.temperature = temperature