claw-vector 0.1.1

The semantic memory engine for ClawDB — HNSW vector indexing and storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
// embeddings/mod.rs — public re-exports for the embeddings sub-module.
/// LRU cache for embedding vectors keyed by text.
pub mod cache;
/// gRPC client to the Python embedding service.
pub mod client;
/// Domain types for embedding requests and responses.
pub mod types;

pub use cache::{EmbeddingCache, EmbeddingCacheStats};
pub use client::{EmbeddingClient, EmbeddingProvider};
pub use types::{EmbedVector, EmbeddingRequest, EmbeddingResponse, ModelInfo};