Skip to content

Commit

Permalink
chore: remove dify SaaS URL in default configs (#5888)
Browse files Browse the repository at this point in the history
  • Loading branch information
takatost authored Jul 2, 2024
1 parent b34baf1 commit e3006f9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions api/configs/feature/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,25 @@ class EndpointConfig(BaseModel):
CONSOLE_API_URL: str = Field(
description='The backend URL prefix of the console API.'
'used to concatenate the login authorization callback or notion integration callback.',
default='https://cloud.dify.ai',
default='',
)

CONSOLE_WEB_URL: str = Field(
description='The front-end URL prefix of the console web.'
'used to concatenate some front-end addresses and for CORS configuration use.',
default='https://cloud.dify.ai',
default='',
)

SERVICE_API_URL: str = Field(
description='Service API Url prefix.'
'used to display Service API Base Url to the front-end.',
default='https://api.dify.ai',
default='',
)

APP_WEB_URL: str = Field(
description='WebApp Url prefix.'
'used to display WebAPP API Base Url to the front-end.',
default='https://udify.app',
default='',
)


Expand All @@ -82,7 +82,7 @@ class FileAccessConfig(BaseModel):
'Url is signed and has expiration time.',
validation_alias=AliasChoices('FILES_URL', 'CONSOLE_API_URL'),
alias_priority=1,
default='https://cloud.dify.ai',
default='',
)

FILES_ACCESS_TIMEOUT: int = Field(
Expand Down

0 comments on commit e3006f9

Please sign in to comment.