mm-cot icon indicating copy to clipboard operation
mm-cot copied to clipboard

typo in utils.prompt line 104 and 106

Open canornot opened this issue 2 years ago • 1 comments

Original code: elif output_format == 'AL': output = f"Answer: The answer is {answer}. BECAUSE: {solution}" elif output_format == 'AE': output = f"Answer: The answer is {answer}. BECAUSE: {lecture}"

Shall be modified to: elif output_format == 'AL': output = f"Answer: The answer is {answer}. BECAUSE: {lecture}" elif output_format == 'AE': output = f"Answer: The answer is {answer}. BECAUSE: {solution}"

If L means {lecture} and E means {solution}

canornot avatar Jun 09 '23 03:06 canornot

Thanks for the revision! That's cool.

cooelf avatar Oct 15 '23 09:10 cooelf