klieo-memory-sqlite 0.38.0

SQLite-backed implementations of klieo-core's memory traits.
Documentation

klieo-memory-sqlite

SQLite-backed implementations of klieo-core's memory traits.

Part of the klieo Rust agent framework.

Features

  • ShortTermMemory, LongTermMemory, and EpisodicMemory on SQLite
  • Optional fastembed feature for local embedding + sqlite-vec for vector recall
  • Zero external services required — ideal for local-first deployments

Usage

[dependencies]
klieo-memory-sqlite = "0.36"
# optional: features = ["fastembed", "sqlite-vec"]
use klieo_memory_sqlite::SqliteMemory;

let memory = SqliteMemory::open("agent.db").await?;

Status

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

License

MIT — see LICENSE.