refactor(myscale):Set the default value of the myscale vector db in DifyConfig. (#6441)

This commit is contained in:
Waffle
2024-07-19 10:57:45 +08:00
committed by GitHub
parent 8e49146a35
commit 2ba05b041f
2 changed files with 17 additions and 19 deletions

View File

@@ -159,12 +159,11 @@ class MyScaleVectorFactory(AbstractVectorFactory):
return MyScaleVector(
collection_name=collection_name,
config=MyScaleConfig(
# TODO: I think setting those values as the default config would be a better option.
host=dify_config.MYSCALE_HOST or "localhost",
port=dify_config.MYSCALE_PORT or 8123,
user=dify_config.MYSCALE_USER or "default",
password=dify_config.MYSCALE_PASSWORD or "",
database=dify_config.MYSCALE_DATABASE or "default",
fts_params=dify_config.MYSCALE_FTS_PARAMS or "",
host=dify_config.MYSCALE_HOST,
port=dify_config.MYSCALE_PORT,
user=dify_config.MYSCALE_USER,
password=dify_config.MYSCALE_PASSWORD,
database=dify_config.MYSCALE_DATABASE,
fts_params=dify_config.MYSCALE_FTS_PARAMS,
),
)