nopaldb 0.4.32

High-performance graph database with ACID transactions, MVCC time-travel, and Arrow analytics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// src/embeddings/mod.rs

pub mod node;
pub mod edge;
pub mod path_reference;
#[cfg(feature = "embeddings-index")]
pub mod index;
#[cfg(feature = "embeddings-index")]
pub mod persistence;

pub use node::Embedding;
pub use edge::EdgeEmbedding;
pub use path_reference::PathReferenceEmbedding;
#[cfg(feature = "embeddings-index")]
pub use index::HnswIndex;
#[cfg(feature = "embeddings-index")]
pub use index::EmbeddingIndex; // backward-compatible alias