pub trait MemoryBridge: Send + Sync {
// Provided methods
fn store_context(&self, _key: &str, _value: &str) -> Result<(), String> { ... }
fn recall_context(&self, _key: &str) -> Option<String> { ... }
fn ground_claim(&self, _claim: &str) -> Result<f64, String> { ... }
}Expand description
Memory bridge for AgenticMemory integration.