do not preproc the message to helpcoder

This commit is contained in:
Paul Gauthier 2024-08-10 14:21:15 -07:00
parent c85f7d4f63
commit e373c6522f
2 changed files with 9 additions and 6 deletions

View file

@ -821,7 +821,7 @@ class Commands:
"""
user_msg += "\n".join(self.coder.get_announcements()) + "\n"
assistant_msg = coder.run(user_msg)
assistant_msg = coder.run(user_msg, preproc=False)
self.coder.cur_messages += [
dict(role="user", content=user_msg),