rename modify_incremental_response -> render_incremental_response

This commit is contained in:
Paul Gauthier 2023-06-22 17:29:47 -07:00
parent 63f1c17a76
commit 82813d4159
3 changed files with 4 additions and 4 deletions

View file

@ -20,7 +20,7 @@ class WholeFileCoder(Coder):
else:
self.cur_messages += [dict(role="assistant", content=content)]
def modify_incremental_response(self, final):
def render_incremental_response(self, final):
return self.update_files(mode="diff")
def update_files(self, mode="update"):