Co-authored-by: Joel <[email protected]> Co-authored-by: Yeuoly <[email protected]> Co-authored-by: JzoNg <[email protected]> Co-authored-by: StyleZhang <[email protected]> Co-authored-by: jyong <[email protected]> Co-authored-by: nite-knite <[email protected]> Co-authored-by: jyong <[email protected]>
26 lines
498 B
Python
26 lines
498 B
Python
from core.tools.entities.tool_entities import ToolInvokeMeta
|
|
|
|
|
|
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 ToolEngineInvokeError(Exception):
|
|
meta: ToolInvokeMeta |