pub struct VectorIndex { /* private fields */ }Expand description
Thread-safe HNSW index over memory embeddings.
Implementations§
Source§impl VectorIndex
impl VectorIndex
Sourcepub fn build(entries: Vec<(String, Vec<f32>)>) -> Self
pub fn build(entries: Vec<(String, Vec<f32>)>) -> Self
Build a new index from a list of (memory_id, embedding) pairs.
Sourcepub fn insert(&self, id: String, embedding: Vec<f32>)
pub fn insert(&self, id: String, embedding: Vec<f32>)
Add a new entry to the index (goes to overflow until next rebuild).
Sourcepub fn remove(&self, id: &str)
pub fn remove(&self, id: &str)
Remove an entry by ID (marks for exclusion; cleaned up on rebuild).
Auto Trait Implementations§
impl !Freeze for VectorIndex
impl RefUnwindSafe for VectorIndex
impl Send for VectorIndex
impl Sync for VectorIndex
impl Unpin for VectorIndex
impl UnsafeUnpin for VectorIndex
impl UnwindSafe for VectorIndex
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more