Clear the chat history
(self, args)
| 409 | self.cmd_commit("") |
| 410 | |
| 411 | def cmd_clear(self, args): |
| 412 | "Clear the chat history" |
| 413 | |
| 414 | self._clear_chat_history() |
| 415 | self.io.tool_output("All chat history cleared.") |
| 416 | |
| 417 | def _drop_all_files(self): |
| 418 | self.coder.abs_fnames = set() |
nothing calls this directly
no test coverage detected