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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 17 additions and 19 deletions

View File

@ -1,4 +1,3 @@
from typing import Optional
from pydantic import BaseModel, Field, PositiveInt from pydantic import BaseModel, Field, PositiveInt
@ -8,32 +7,32 @@ class MyScaleConfig(BaseModel):
MyScale configs MyScale configs
""" """
MYSCALE_HOST: Optional[str] = Field( MYSCALE_HOST: str = Field(
description='MyScale host', description='MyScale host',
default=None, default='localhost',
) )
MYSCALE_PORT: Optional[PositiveInt] = Field( MYSCALE_PORT: PositiveInt = Field(
description='MyScale port', description='MyScale port',
default=8123, default=8123,
) )
MYSCALE_USER: Optional[str] = Field( MYSCALE_USER: str = Field(
description='MyScale user', description='MyScale user',
default=None, default='default',
) )
MYSCALE_PASSWORD: Optional[str] = Field( MYSCALE_PASSWORD: str = Field(
description='MyScale password', description='MyScale password',
default=None, default='',
) )
MYSCALE_DATABASE: Optional[str] = Field( MYSCALE_DATABASE: str = Field(
description='MyScale database name', description='MyScale database name',
default=None, default='default',
) )
MYSCALE_FTS_PARAMS: Optional[str] = Field( MYSCALE_FTS_PARAMS: str = Field(
description='MyScale fts index parameters', description='MyScale fts index parameters',
default=None, default='',
) )

View File

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