r"""Resets the :obj:`ChatAgent` to its initial state.
(self)
| 398 | return None |
| 399 | |
| 400 | def reset(self): |
| 401 | r"""Resets the :obj:`ChatAgent` to its initial state.""" |
| 402 | self.terminated = False |
| 403 | self.init_messages() |
| 404 | for terminator in self.response_terminators: |
| 405 | terminator.reset() |
| 406 | |
| 407 | @property |
| 408 | def system_message(self) -> Optional[BaseMessage]: |
no test coverage detected