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
This commit is contained in:
Rohit Gupta
2024-02-22 05:17:47 +05:30
committed by GitHub
parent afc1ba0329
commit 3acd0c74fc

View File

@@ -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": {}},
}