mirror of
https://github.com/hwchase17/langchain.git
synced 2025-08-09 04:50:37 +00:00
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:
parent
afc1ba0329
commit
3acd0c74fc
@ -154,6 +154,7 @@ class Milvus(VectorStore):
|
|||||||
"RHNSW_PQ": {"metric_type": "L2", "params": {"ef": 10}},
|
"RHNSW_PQ": {"metric_type": "L2", "params": {"ef": 10}},
|
||||||
"IVF_HNSW": {"metric_type": "L2", "params": {"nprobe": 10, "ef": 10}},
|
"IVF_HNSW": {"metric_type": "L2", "params": {"nprobe": 10, "ef": 10}},
|
||||||
"ANNOY": {"metric_type": "L2", "params": {"search_k": 10}},
|
"ANNOY": {"metric_type": "L2", "params": {"search_k": 10}},
|
||||||
|
"SCANN": {"metric_type": "L2", "params": {"search_k": 10}},
|
||||||
"AUTOINDEX": {"metric_type": "L2", "params": {}},
|
"AUTOINDEX": {"metric_type": "L2", "params": {}},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user