(&self, run_id: &str)
| 35 | } |
| 36 | |
| 37 | pub(super) async fn run_snapshot(&self, run_id: &str) -> Option<crate::run::RunSnapshot> { |
| 38 | self.session.run_store.snapshot(run_id).await |
| 39 | } |
| 40 | |
| 41 | pub(super) async fn run_events(&self, run_id: &str) -> Vec<crate::run::RunEventRecord> { |
| 42 | self.session.run_store.events(run_id).await |