We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c8136a commit 7fb67d7Copy full SHA for 7fb67d7
analysis/result_analysis.ipynb
script/parse.py
@@ -417,7 +417,7 @@ def get_instruction_prompt(data):
417
if data["doc"]["raises"]:
418
base += "\nThe function should raise the exception for: " + " ".join(data["doc"]["raises"])
419
base += "\nThe function should output with:\n " +\
420
- "\n ".join(data["doc"]["returns"]) + "\nYou should start with:\n```\n" + data["prompt_wo_doc"] + "```"
+ "\n ".join(data["doc"]["returns"]) + "\nYou should write self-contained code starting with:\n```\n" + data["prompt_wo_doc"] + "```"
421
return base
422
423
def check_test_wo_doc(data):
0 commit comments