Skip to content

fix: fix typo in gen_patch_prompt.py #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions SRepair/src/gen_patch_prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
fixed_label = '// Fixed Function'

mf_start_prompt = 'This bug consists of multiple interdependent buggy functions, meaning that fix should be achieved by simultaneously modifying these functions.'
mf_end_prompt = 'Povide fixed function for each buggy functions. Your output should be strictly in the format \'Function ID: {ID}\\nFixed function code:\\n{fixed function code}\' without any other content'
mf_end_prompt = 'Provide fixed function for each buggy function. Your output should be strictly in the format \'Function ID: {ID}\\nFixed function code:\\n{fixed function code}\' without any other content.'


def sf_build_apr_prompt_auto(buggy_function, root_cause, suggestion):
Expand All @@ -28,4 +28,4 @@ def mf_build_apr_prompt_auto(bug_info, root_cause, suggestions):
parts.append(bug_info['functions'][int(function_id) - 1]['buggy_function'])
parts.append('\n')
parts.append(mf_end_prompt)
return '\n'.join(parts)
return '\n'.join(parts)