klieo-memory-pgvector 3.12.0

PostgreSQL + pgvector implementation of klieo-core's LongTermMemory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Re-exports of the shared `Embedder` trait + non-ranking/fake impls.
//!
//! The single home is [`klieo_embed_common`]; these re-exports let call sites
//! do `use klieo_memory_pgvector::Embedder` like the other memory backends.

pub use klieo_embed_common::{Embedder, NonRankingEmbedder};

/// Legacy name for [`NonRankingEmbedder`]. Deprecated at its definition, so
/// downstream use warns; `#[deprecated]` on a re-export is silently ignored by
/// rustc and would announce a migration it never prompts.
#[allow(deprecated)]
pub use klieo_embed_common::DummyEmbedder;

#[cfg(any(test, feature = "test-utils"))]
pub use klieo_embed_common::FakeEmbedder;