Bind the run id used by per-tool-round checkpoints. Called per execution so a single `AgentLoop` (which is cheap to clone) can host successive runs.
(&mut self, run_id: impl Into<String>)
| 47 | /// execution so a single `AgentLoop` (which is cheap to clone) can |
| 48 | /// host successive runs. |
| 49 | pub fn set_checkpoint_run(&mut self, run_id: impl Into<String>) { |
| 50 | self.checkpoint_run_id = Some(run_id.into()); |
| 51 | } |
| 52 | } |