community[patch]: added SCANN index in default search params (#17889)

This will enable users to add data in same collection for index type
SCANN for milvus
pull/17902/head
Rohit Gupta 5 months ago committed by GitHub
parent afc1ba0329
commit 3acd0c74fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -154,6 +154,7 @@ class Milvus(VectorStore):
"RHNSW_PQ": {"metric_type": "L2", "params": {"ef": 10}},
"IVF_HNSW": {"metric_type": "L2", "params": {"nprobe": 10, "ef": 10}},
"ANNOY": {"metric_type": "L2", "params": {"search_k": 10}},
"SCANN": {"metric_type": "L2", "params": {"search_k": 10}},
"AUTOINDEX": {"metric_type": "L2", "params": {}},
}

Loading…
Cancel
Save