walrus_memory/lib.rs
1//! Graph-based memory service for walrus agents.
2//!
3//! Provides entity/relation/journal storage backed by LanceDB with
4//! candle-based sentence embeddings (all-MiniLM-L6-v2).
5
6#[cfg(feature = "serve")]
7pub mod cmd;
8pub mod config;
9pub mod dispatch;
10pub mod embedder;
11pub mod lance;
12#[cfg(feature = "serve")]
13pub mod tool;