From 1571f34fa399cf49456138b065b21017bf88381a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 29 Jun 2023 15:16:33 -0700 Subject: [PATCH] added "unique lines" to the prompt --- aider/coders/editblock_func_coder.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aider/coders/editblock_func_coder.py b/aider/coders/editblock_func_coder.py index 75f95f95d..e579ec457 100644 --- a/aider/coders/editblock_func_coder.py +++ b/aider/coders/editblock_func_coder.py @@ -38,8 +38,8 @@ class EditBlockFunctionCoder(Coder): type="string", ), description=( - "Some lines from the original file, including all" - " whitespace, without skipping any lines" + "A unique stretch of lines from the original file," + " including all whitespace, without skipping any lines" ), ), updated_lines=dict( @@ -64,7 +64,7 @@ class EditBlockFunctionCoder(Coder): original_lines = dict( type="string", description=( - "Some lines from the original file, including all" + "A unique stretch of lines from the original file, including all" " whitespace and newlines, without skipping any lines" ), )