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

Class Entity

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

Source from the content-addressed store, hash-verified

30/// Entity tracked across episodes
31#[derive(Debug, Clone)]
32pub 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)]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected