(&self, id: &str)
| 145 | } |
| 146 | |
| 147 | async fn load_subagent_tasks(&self, id: &str) -> Result<Option<Vec<SubagentTaskSnapshot>>> { |
| 148 | Ok(self.subagent_tasks.read().await.get(id).cloned()) |
| 149 | } |
| 150 | |
| 151 | async fn save_loop_checkpoint(&self, run_id: &str, checkpoint: &LoopCheckpoint) -> Result<()> { |
| 152 | self.loop_checkpoints |