| 19 | /// Memory episode with context |
| 20 | #[derive(Debug, Clone)] |
| 21 | pub struct Episode { |
| 22 | pub id: String, |
| 23 | pub content: String, |
| 24 | pub timestamp: u64, |
| 25 | pub entities: Vec<String>, |
| 26 | pub embedding: Vec<f32>, // Simplified embedding |
| 27 | pub source: String, |
| 28 | } |
| 29 | |
| 30 | /// Entity tracked across episodes |
| 31 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected