修复milvus_kwargs问题

This commit is contained in:
Zhi-guo Huang 2024-01-03 17:14:38 +08:00 committed by GitHub
parent 50aeb24582
commit ce29d14f46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -102,6 +102,10 @@ kbs_config = {
"index_name": "test_index", "index_name": "test_index",
"user": "", "user": "",
"password": "" "password": ""
},
"milvus_kwargs":{
"search_params":{"metric_type": "L2"}, #在此处增加search_params
"index_params":{"metric_type": "L2","index_type": "HNSW"} # 在此处增加index_params
} }
} }