Clear all working memory and reset the rolling summary.
(self)
| 567 | self.episodic.log("tick", f"Turn {self._turn}") |
| 568 | |
| 569 | def clear(self): |
| 570 | """Clear all working memory and reset the rolling summary.""" |
| 571 | self.working.clear() |
| 572 | self._summary = '' |
| 573 | |
| 574 | # ── Higher-level helpers (v2 additions) ────────────────────────────────── |
| 575 |
no outgoing calls