klieo-memory-qdrant 0.38.0

Qdrant-backed implementation of klieo-core's LongTermMemory.
Documentation

klieo-memory-qdrant

Qdrant-backed implementation of klieo-core's LongTermMemory.

Part of the klieo Rust agent framework.

Features

  • High-dimensional vector search via Qdrant
  • Implements LongTermMemory — swap for klieo-memory-sqlite without changing agent code
  • Configurable collection, distance metric, and embedding dimension

Usage

[dependencies]
klieo-memory-qdrant = "0.36"
use klieo_memory_qdrant::QdrantMemory;

let memory = QdrantMemory::connect("http://localhost:6334", "my_collection").await?;

Status

0.36.x — pre-1.0; patch releases are backward-compatible. See docs/SEMVER.md.

License

MIT — see LICENSE.