1 2 3 4 5 6 7 8 9 10
//! Semantic search and indexing tools. mod index; mod semantic_search; pub use index::{Index, IndexProject, IndexStatus}; pub use semantic_search::SemanticSearch; #[cfg(test)] mod tests;