mirror of
https://github.com/langgenius/dify.git
synced 2024-11-16 11:42:29 +08:00
21 lines
628 B
Python
21 lines
628 B
Python
from pydantic import Field
|
|
from pydantic_settings import BaseSettings
|
|
|
|
|
|
class EnterpriseFeatureConfig(BaseSettings):
|
|
"""
|
|
Enterprise feature configs.
|
|
**Before using, please contact business@dify.ai by email to inquire about licensing matters.**
|
|
"""
|
|
|
|
ENTERPRISE_ENABLED: bool = Field(
|
|
description="whether to enable enterprise features."
|
|
"Before using, please contact business@dify.ai by email to inquire about licensing matters.",
|
|
default=False,
|
|
)
|
|
|
|
CAN_REPLACE_LOGO: bool = Field(
|
|
description="whether to allow replacing enterprise logo.",
|
|
default=False,
|
|
)
|