mirror of
https://github.com/langgenius/dify.git
synced 2026-02-09 15:10:13 -05:00
The frontend and backend implementation for the human input node. Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com> Co-authored-by: zhsama <torvalds@linux.do>
53 lines
995 B
Python
53 lines
995 B
Python
from core.tools.entities.tool_entities import ToolInvokeMeta
|
|
from libs.exception import BaseHTTPException
|
|
|
|
|
|
class ToolProviderNotFoundError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolNotFoundError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolParameterValidationError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolProviderCredentialValidationError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolNotSupportedError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolInvokeError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolApiSchemaError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolSSRFError(ValueError):
|
|
pass
|
|
|
|
|
|
class ToolCredentialPolicyViolationError(ValueError):
|
|
pass
|
|
|
|
|
|
class WorkflowToolHumanInputNotSupportedError(BaseHTTPException):
|
|
error_code = "workflow_tool_human_input_not_supported"
|
|
description = "Workflow with Human Input nodes cannot be published as a workflow tool."
|
|
code = 400
|
|
|
|
|
|
class ToolEngineInvokeError(Exception):
|
|
meta: ToolInvokeMeta
|
|
|
|
def __init__(self, meta, **kwargs):
|
|
self.meta = meta
|
|
super().__init__(**kwargs)
|