update to the latest version of cellulite and steppe

This commit is contained in:
Tamo
2025-07-22 16:24:49 +02:00
parent c0905d6650
commit d19892d2ea
9 changed files with 13 additions and 135 deletions

View File

@ -185,7 +185,7 @@ pub struct Index {
pub vector_store: hannoy::Database<Unspecified>,
/// Geo store based on cellulite™.
pub cellulite: cellulite::Database,
pub cellulite: cellulite::Cellulite,
/// Maps the document id to the document as an obkv store.
pub(crate) documents: Database<BEU32, ObkvCodec>,
@ -243,7 +243,7 @@ impl Index {
let embedder_category_id =
env.create_database(&mut wtxn, Some(VECTOR_EMBEDDER_CATEGORY_ID))?;
let vector_store = env.create_database(&mut wtxn, Some(VECTOR_STORE))?;
let cellulite = env.create_database(&mut wtxn, Some(CELLULITE))?;
let cellulite = cellulite::Cellulite::create_from_env(&env, &mut wtxn)?;
let documents = env.create_database(&mut wtxn, Some(DOCUMENTS))?;