summaryrefslogtreecommitdiff
path: root/packages/core/src/tools/tool-error.ts
diff options
context:
space:
mode:
authorjoshualitt <[email protected]>2025-08-18 13:28:15 -0700
committerGitHub <[email protected]>2025-08-18 20:28:15 +0000
commitd66ddcd82e09d7b6fbc0226e31d73d38db5cff2a (patch)
treed78d3437feffc7eb3620f5e02f5489453b3766aa /packages/core/src/tools/tool-error.ts
parent91cd0db2b3e99f5829dbb6d09696333e9198cc9d (diff)
bug(core): Do not throw validation errors when building tools in `nonInteractiveToolExecutor`. (#6363)
Diffstat (limited to 'packages/core/src/tools/tool-error.ts')
-rw-r--r--packages/core/src/tools/tool-error.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/core/src/tools/tool-error.ts b/packages/core/src/tools/tool-error.ts
index 2702de02..fc19fc72 100644
--- a/packages/core/src/tools/tool-error.ts
+++ b/packages/core/src/tools/tool-error.ts
@@ -13,6 +13,7 @@ export enum ToolErrorType {
UNKNOWN = 'unknown',
UNHANDLED_EXCEPTION = 'unhandled_exception',
TOOL_NOT_REGISTERED = 'tool_not_registered',
+ EXECUTION_FAILED = 'execution_failed',
// File System Errors
FILE_NOT_FOUND = 'file_not_found',