nt-memory 1.0.0

Hierarchical memory system for Neural Trader - ReasoningBank-compatible with L1/L2/L3 caching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! L2 Vector Database - AgentDB Integration
//!
//! Performance targets:
//! - Vector search: <1ms (p95)
//! - HNSW index: 150x faster than linear scan
//! - Batch insert: <10ms for 1000 vectors

pub mod vector_store;
pub mod embeddings;
pub mod storage;

pub use vector_store::{VectorStore, SearchResult};
pub use embeddings::{EmbeddingProvider, Embedding};
pub use storage::{StorageBackend, PersistentStore};