klieo-memory-qdrant 0.41.2

Qdrant-backed implementation of klieo-core's LongTermMemory.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Re-exports of the shared `Embedder` trait + dummy/fake impls.
//!
//! W3.A17: the trait used to be duplicated here. The single home is
//! now [`klieo_embed_common`]; everything below is a re-export so
//! call sites that do `use klieo_memory_qdrant::Embedder` keep
//! working.

pub use klieo_embed_common::{DummyEmbedder, Embedder};

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