We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5099ea7 commit 65a1002Copy full SHA for 65a1002
src/ops/targets/qdrant.rs
@@ -233,11 +233,10 @@ impl SetupChange {
233
params = params.hnsw_ef_construct(*ef_val as u64);
234
}
235
236
- spec::VectorIndexMethod::IvfFlat { nlist } => {
237
- if let Some(nlist_val) = nlist {
238
- params = params.ivf_flat_nlist(*nlist_val as u64);
239
- }
+ spec::VectorIndexMethod::IvfFlat => {
+ api_bail!("IvfFlat vector index method is not supported for Qdrant yet");
240
+
241
_ => {
242
api_bail!("Unsupported vector index method for Qdrant");
243
0 commit comments