From 2358b638b8ba4f4077ec24813d4998ffa031a457 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 27 Jun 2023 18:59:15 -0700 Subject: [PATCH] wip --- aider/coders/editblock_func_coder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/coders/editblock_func_coder.py b/aider/coders/editblock_func_coder.py index 6937d5e76..3881f908d 100644 --- a/aider/coders/editblock_func_coder.py +++ b/aider/coders/editblock_func_coder.py @@ -30,7 +30,7 @@ class EditBlockFunctionCoder(Coder): type="object", required=["path", "original_lines", "updated_lines"], properties=dict( - file_path=dict( + path=dict( type="string", description="Path of file to edit", ), @@ -38,7 +38,7 @@ class EditBlockFunctionCoder(Coder): type="string", description=( ( - "Portion of the original file, including all" + "Lines from the original file, including all" " whitespace, newlines, without skipping any lines" ), ),