Remove userProvided from fragments

This commit is contained in:
Mubelotix
2025-07-29 10:56:54 +02:00
parent 66b6e47494
commit 3580b3a4ef
2 changed files with 5 additions and 5 deletions

View File

@ -119,7 +119,10 @@ fn evaluate_inner(
.collect(),
})?;
arroy_wrapper.items_in_store(rtxn, fragment_config.id, |bitmap| bitmap.clone())?
let user_provided_docsids = embedder_info.embedding_status.user_provided_docids();
arroy_wrapper.items_in_store(rtxn, fragment_config.id, |bitmap| {
bitmap.clone() - user_provided_docsids
})?
}
VectorFilter::DocumentTemplate => {
if !embedding_config.fragments.as_slice().is_empty() {