| 30 | /// Entity tracked across episodes |
| 31 | #[derive(Debug, Clone)] |
| 32 | pub struct Entity { |
| 33 | pub name: String, |
| 34 | pub entity_type: String, // person, project, task, etc. |
| 35 | pub first_seen: u64, |
| 36 | pub last_seen: u64, |
| 37 | pub mentions: usize, |
| 38 | } |
| 39 | |
| 40 | /// Causal edge between episodes |
| 41 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected