Skip to content

Commit

Permalink
Merge pull request #21 from Cy-47/patch-1
Browse files Browse the repository at this point in the history
Add missing "\" in "\n"
  • Loading branch information
shallinan1 authored Oct 4, 2024
2 parents 1ce877f + 7752146 commit 9a206d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gsm/feedback_no_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(self, engine: str, prompt_examples: str, temperature: float, max_to
question_prefix="",
answer_prefix="",
intra_example_sep="\n\n",
inter_example_sep="\n\n### END ###n\n",
inter_example_sep="\n\n### END ###\n\n",
engine = engine,
temperature = temperature
)
Expand Down Expand Up @@ -66,4 +66,4 @@ def test():


if __name__ == '__main__':
test()
test()

0 comments on commit 9a206d4

Please sign in to comment.