Skip to main content

MemoryBridge

Trait MemoryBridge 

Source
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.

Provided Methods§

Source

fn store_context(&self, _key: &str, _value: &str) -> Result<(), String>

Source

fn recall_context(&self, _key: &str) -> Option<String>

Source

fn ground_claim(&self, _claim: &str) -> Result<f64, String>

Implementors§