mirror of
https://github.com/langgenius/dify.git
synced 2026-07-30 00:39:34 +08:00
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
from werkzeug.exceptions import BadRequest, Conflict, NotFound
|
|
|
|
from libs.exception import BaseHTTPException
|
|
|
|
|
|
class AgentNotFoundError(NotFound):
|
|
description = "Agent not found."
|
|
|
|
|
|
class AgentVersionNotFoundError(NotFound):
|
|
description = "Agent config version not found."
|
|
|
|
|
|
class AgentNameConflictError(Conflict):
|
|
description = "Agent name already exists."
|
|
|
|
|
|
class AgentArchivedError(Conflict):
|
|
description = "Archived agent cannot be modified."
|
|
|
|
|
|
class AgentVersionConflictError(Conflict):
|
|
description = "Agent config version changed. Please reload and try again."
|
|
|
|
|
|
class AgentModelNotConfiguredError(BaseHTTPException):
|
|
error_code = "agent_model_not_configured"
|
|
description = "Agent App requires the Agent Soul model to be configured."
|
|
code = 400
|
|
|
|
|
|
class AgentBuildSandboxNotFoundError(BaseHTTPException):
|
|
error_code = "agent_build_sandbox_not_found"
|
|
description = "The retained Build Sandbox is no longer available."
|
|
code = 404
|
|
|
|
|
|
class AgentSoulLockedError(BadRequest):
|
|
description = "Agent Soul is locked for this workflow node."
|
|
|
|
|
|
class InvalidComposerConfigError(BadRequest):
|
|
description = "Invalid agent composer config."
|
|
|
|
|
|
class PlaintextSecretNotAllowedError(BadRequest):
|
|
description = "Plaintext secret values are not allowed in Agent config."
|