arms-core 0.1.0

ARMS: Attention Reasoning Memory Store - A spatial memory fabric for AI. Position IS relationship.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # Index Adapters
//!
//! Implementations of the Near port for different index backends.
//!
//! Available adapters:
//! - `FlatIndex` - Brute force search (exact, slow for large N)
//! - `HnswIndex` - Hierarchical Navigable Small World (approximate, fast) [TODO]

mod flat;

pub use flat::FlatIndex;

// TODO: Add HNSW adapter
// mod hnsw;
// pub use hnsw::HnswIndex;