(self)
| 132 | self.transcript_store.compact(self.config.compact_after_turns) |
| 133 | |
| 134 | def replay_user_messages(self) -> tuple[str, ...]: |
| 135 | return self.transcript_store.replay() |
| 136 | |
| 137 | def flush_transcript(self) -> None: |
| 138 | self.transcript_store.flush() |