buster/apps/api/libs/stored_values/src/lib.rs

14 lines
369 B
Rust
Raw Normal View History

2025-04-24 01:46:56 +08:00
//! Library for managing stored column values and their embeddings for search.
pub use anyhow::Result;
pub mod schema;
pub mod jobs;
pub mod search;
// Re-export key functions
pub use schema::create_search_schema;
pub use jobs::setup_sync_job;
2025-04-24 01:47:11 +08:00
pub use search::{search_values_by_embedding, StoredValueResult};
2025-04-24 01:46:56 +08:00
// Add other modules like types, errors, etc. as needed