mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-04 11:14:10 +08:00
40 lines
815 B
Python
40 lines
815 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, Field, PositiveInt
|
|
|
|
|
|
class MilvusConfig(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',
|
|
)
|