From 0297fa425b8c7c34eafd1d33a255bd1055979a6c Mon Sep 17 00:00:00 2001 From: aries-ckt <916701291@qq.com> Date: Sun, 21 May 2023 16:40:18 +0800 Subject: [PATCH] feature:add milvus store --- pilot/configs/model_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pilot/configs/model_config.py b/pilot/configs/model_config.py index 0f9cef937..c63187d03 100644 --- a/pilot/configs/model_config.py +++ b/pilot/configs/model_config.py @@ -48,5 +48,5 @@ DB_SETTINGS = { VS_ROOT_PATH = os.path.join(os.path.dirname(os.path.dirname(__file__)), "vs_store") KNOWLEDGE_UPLOAD_ROOT_PATH = os.path.join(os.path.dirname(os.path.dirname(__file__)), "data") KNOWLEDGE_CHUNK_SPLIT_SIZE = 100 -VECTOR_STORE_TYPE = "milvus" +VECTOR_STORE_TYPE = "Chroma" VECTOR_STORE_CONFIG = {"url": "127.0.0.1", "port": "19530"}