WriteCodeReview 添加确认review完成的消息

This commit is contained in:
黄伟韬 2024-07-23 20:07:00 +08:00
parent 59d8d8b193
commit f4204b4beb

View file

@ -283,7 +283,10 @@ class ReviewAndRewriteCode(Action):
await awrite(filename=code_path, data=code)
return code
return (
f'\nThe "review and rewrite the code {os.path.basename(code_path)}" task has been completed and is now marked as finished.\n'
+ code
)
@staticmethod
async def _try_aread(input: str) -> str: