Skip to main content

MemoryLookupStore

Trait MemoryLookupStore 

Source
pub trait MemoryLookupStore: Send + Sync {
    // Required method
    fn lookup<'life0, 'life1, 'async_trait>(
        &'life0 self,
        query: &'life1 str,
        k: usize,
    ) -> Pin<Box<dyn Future<Output = Result<Vec<MemoryLookupHit>, MemoryLookupError>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

Backend contract for the canonical memory.lookup tool.

Required Methods§

Source

fn lookup<'life0, 'life1, 'async_trait>( &'life0 self, query: &'life1 str, k: usize, ) -> Pin<Box<dyn Future<Output = Result<Vec<MemoryLookupHit>, MemoryLookupError>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Return up to k hits most relevant to query.

Implementors§