sevensense-vector 0.1.0

Vector database operations and HNSW indexing for 7sense bioacoustics platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Domain layer for the Vector Space bounded context.
//!
//! Contains:
//! - Entities: Core domain objects with identity
//! - Value Objects: Immutable objects defined by their attributes
//! - Repository Traits: Abstractions for persistence
//! - Domain Errors: Error types specific to this context

pub mod entities;
pub mod repository;
pub mod error;

pub use entities::*;
pub use repository::*;
pub use error::*;