pub trait VectorStore<V> {
// Required method
fn get(&self, id: usize) -> Option<&V>;
}Expand description
Minimal vector store abstraction.
This matches typical kernel/runtime needs: fetch vectors by ID.
pub trait VectorStore<V> {
// Required method
fn get(&self, id: usize) -> Option<&V>;
}Minimal vector store abstraction.
This matches typical kernel/runtime needs: fetch vectors by ID.