mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 19:06:51 +08:00
19 lines
604 B
Python
19 lines
604 B
Python
from pydantic import BaseModel, Field
|
|
|
|
|
|
class EnterpriseFeatureConfig(BaseModel):
|
|
"""
|
|
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,
|
|
)
|