mirror of
https://github.com/langgenius/dify.git
synced 2026-02-24 03:41:21 +08:00
Previously the fields / classes are named with `placeholder`. However, the actual purpose is to use as default values. This commit addresses this problem by correcting names for relevant fields / classes. - FormInputPlaceholder - FormInput.placeholder - HumanInputRequiredResponse.resolved_placeholder_values - HumanInputFormDefinition.resolved_placeholder_values - FormCreateParams.resolved_placeholder_values - HumanInputRequired.resolved_placeholder_values - The `resolved_placeholder_values` argument of _create_human_input_delivery_test_form - The `resolved_placeholder_values` inside _jsonify_form_definition
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)
|