cel-memory-sqlite 0.2.1

SQLite-backed local memory for AI agents, implementing cel-memory with FTS and vector search.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Re-exports the [`Embedder`] trait from [`cel_memory`].
//!
//! The trait and [`MockEmbedder`] live in `cel-memory` so custom backends can
//! implement embedders without depending on SQLite. This module preserves the
//! historical import path (`cel_memory_sqlite::Embedder`).

pub use cel_memory::{Embedder, EmbedderError, EmbedderResult, MockEmbedder};

/// Historical alias used by the `fastembed` backend module.
pub type EmbedResult<T> = EmbedderResult<T>;