added "unique lines" to the prompt

This commit is contained in:
Paul Gauthier 2023-06-29 15:16:33 -07:00
parent 87dc262214
commit 1571f34fa3

View file

@ -38,8 +38,8 @@ class EditBlockFunctionCoder(Coder):
type="string", type="string",
), ),
description=( description=(
"Some lines from the original file, including all" "A unique stretch of lines from the original file,"
" whitespace, without skipping any lines" " including all whitespace, without skipping any lines"
), ),
), ),
updated_lines=dict( updated_lines=dict(
@ -64,7 +64,7 @@ class EditBlockFunctionCoder(Coder):
original_lines = dict( original_lines = dict(
type="string", type="string",
description=( 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" " whitespace and newlines, without skipping any lines"
), ),
) )