milvus_config.py 320 B

123456789101112
  1. MILVUS_CONFIG = {
  2. # "host": "c-981be0ee7225467b-internal.milvus.aliyuncs.com", # 内网
  3. "host": "c-981be0ee7225467b.milvus.aliyuncs.com", # 公网
  4. "user": "root",
  5. "password": "Piaoquan@2025",
  6. "port": "19530",
  7. }
  8. BASE_MILVUS_SEARCH_PARAMS = {
  9. "metric_type": "COSINE",
  10. "params": {"ef": 64},
  11. }