use super::SQLiteVectorIndex;
use uqa_storage::vector_index::IVFIndexParams;
mod lifecycle;
mod loading;
mod math;
mod metadata;
mod mutation;
mod search;
mod training;
mod writing;
#[derive(Clone)]
pub struct SQLiteIVFIndex {
pub(super) persistent: SQLiteVectorIndex,
pub(super) params: IVFIndexParams,
}