mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-04 11:14:10 +08:00
35 lines
745 B
Python
35 lines
745 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel, Field, PositiveInt
|
|
|
|
|
|
class OpenSearchConfig(BaseModel):
|
|
"""
|
|
OpenSearch configs
|
|
"""
|
|
|
|
OPENSEARCH_HOST: Optional[str] = Field(
|
|
description='OpenSearch host',
|
|
default=None,
|
|
)
|
|
|
|
OPENSEARCH_PORT: PositiveInt = Field(
|
|
description='OpenSearch port',
|
|
default=9200,
|
|
)
|
|
|
|
OPENSEARCH_USER: Optional[str] = Field(
|
|
description='OpenSearch user',
|
|
default=None,
|
|
)
|
|
|
|
OPENSEARCH_PASSWORD: Optional[str] = Field(
|
|
description='OpenSearch password',
|
|
default=None,
|
|
)
|
|
|
|
OPENSEARCH_SECURE: bool = Field(
|
|
description='whether to use SSL connection for OpenSearch',
|
|
default=False,
|
|
)
|