When retrieveVectors is true, retrieve _vectors.embedder even if there are no vector for that embedder

This commit is contained in:
Louis Dureuil 2024-07-15 15:05:56 +02:00
parent 1582c7e788
commit 82647bcded
No known key found for this signature in database

View File

@ -1691,10 +1691,8 @@ impl Index {
} }
} }
if !embeddings.is_empty() {
res.insert(embedder_name.to_owned(), embeddings); res.insert(embedder_name.to_owned(), embeddings);
} }
}
Ok(res) Ok(res)
} }
} }