mirror of
https://github.com/langgenius/dify.git
synced 2025-09-05 07:12:35 +00:00
18 lines
499 B
Python
18 lines
499 B
Python
![]() |
from typing import Optional
|
||
|
|
||
|
from pydantic import Field
|
||
|
|
||
|
from .apollo import ApolloSettingsSourceInfo
|
||
|
from .base import RemoteSettingsSource
|
||
|
from .enums import RemoteSettingsSourceName
|
||
|
|
||
|
|
||
|
class RemoteSettingsSourceConfig(ApolloSettingsSourceInfo):
|
||
|
REMOTE_SETTINGS_SOURCE_NAME: Optional[RemoteSettingsSourceName] = Field(
|
||
|
description="name of remote config source",
|
||
|
default=None,
|
||
|
)
|
||
|
|
||
|
|
||
|
__all__ = ["RemoteSettingsSource", "RemoteSettingsSourceConfig", "RemoteSettingsSourceName"]
|