mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-04 20:28:12 +08:00
40 lines
816 B
Python
40 lines
816 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, Field, PositiveInt
|
|
|
|
|
|
class MilvusConfigs(BaseModel):
|
|
"""
|
|
Milvus configs
|
|
"""
|
|
|
|
MILVUS_HOST: Optional[str] = Field(
|
|
description='Milvus host',
|
|
default=None,
|
|
)
|
|
|
|
MILVUS_PORT: PositiveInt = Field(
|
|
description='Milvus RestFul API port',
|
|
default=9091,
|
|
)
|
|
|
|
MILVUS_USER: Optional[str] = Field(
|
|
description='Milvus user',
|
|
default=None,
|
|
)
|
|
|
|
MILVUS_PASSWORD: Optional[str] = Field(
|
|
description='Milvus password',
|
|
default=None,
|
|
)
|
|
|
|
MILVUS_SECURE: bool = Field(
|
|
description='wheter to use SSL connection for Milvus',
|
|
default=False,
|
|
)
|
|
|
|
MILVUS_DATABASE: str = Field(
|
|
description='Milvus database',
|
|
default='default',
|
|
)
|