ipfrs-semantic 0.2.0

Semantic search with HNSW vector indexing for content-addressed data
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Semantic query optimizer: parse → rewrite rules → cost estimation → execution plan.

pub mod functions;
pub mod optimizerconfig_traits;
pub mod optimizererror_traits;
pub mod types;
pub mod types_4;

// Re-export all types
pub use types::*;
pub use types_4::*;

#[cfg(test)]
mod tests;