mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 03:32:23 +08:00
refactor(myscale):Set the default value of the myscale vector db in DifyConfig. (#6441)
This commit is contained in:
parent
8e49146a35
commit
2ba05b041f
|
@ -1,4 +1,3 @@
|
|||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel, Field, PositiveInt
|
||||
|
||||
|
@ -8,32 +7,32 @@ class MyScaleConfig(BaseModel):
|
|||
MyScale configs
|
||||
"""
|
||||
|
||||
MYSCALE_HOST: Optional[str] = Field(
|
||||
MYSCALE_HOST: str = Field(
|
||||
description='MyScale host',
|
||||
default=None,
|
||||
default='localhost',
|
||||
)
|
||||
|
||||
MYSCALE_PORT: Optional[PositiveInt] = Field(
|
||||
MYSCALE_PORT: PositiveInt = Field(
|
||||
description='MyScale port',
|
||||
default=8123,
|
||||
)
|
||||
|
||||
MYSCALE_USER: Optional[str] = Field(
|
||||
MYSCALE_USER: str = Field(
|
||||
description='MyScale user',
|
||||
default=None,
|
||||
default='default',
|
||||
)
|
||||
|
||||
MYSCALE_PASSWORD: Optional[str] = Field(
|
||||
MYSCALE_PASSWORD: str = Field(
|
||||
description='MyScale password',
|
||||
default=None,
|
||||
default='',
|
||||
)
|
||||
|
||||
MYSCALE_DATABASE: Optional[str] = Field(
|
||||
MYSCALE_DATABASE: str = Field(
|
||||
description='MyScale database name',
|
||||
default=None,
|
||||
default='default',
|
||||
)
|
||||
|
||||
MYSCALE_FTS_PARAMS: Optional[str] = Field(
|
||||
MYSCALE_FTS_PARAMS: str = Field(
|
||||
description='MyScale fts index parameters',
|
||||
default=None,
|
||||
default='',
|
||||
)
|
||||
|
|
|
@ -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,
|
||||
),
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue
Block a user