MCPcopy Create free account
hub / github.com/agenticsorg/lean-agentic / Episode

Class Episode

examples/memory-copilot/explainable_memory.rs:21–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19/// Memory episode with context
20#[derive(Debug, Clone)]
21pub 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)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected