Documentation / @agentick/core / ToolExecutionOptions
Interface: ToolExecutionOptions ​
Defined in: core/src/types.ts:376
Tool execution configuration options. Controls how tools are executed by the Engine.
Properties ​
continueOnError? ​
optionalcontinueOnError:boolean
Defined in: core/src/types.ts:403
Whether to continue execution if a tool fails. When true, failed tools return error results but don't stop the tick.
Default ​
truedefaultTimeoutMs? ​
optionaldefaultTimeoutMs:number
Defined in: core/src/types.ts:396
Default timeout for tool execution in milliseconds. Can be overridden per-tool via tool definition.
Default ​
30000 (30 seconds)maxConcurrent? ​
optionalmaxConcurrent:number
Defined in: core/src/types.ts:389
Maximum number of concurrent tool executions when parallel is true.
Default ​
10parallel? ​
optionalparallel:boolean
Defined in: core/src/types.ts:383
Execute tools in parallel when possible. When true (default), independent tool calls are executed concurrently. Set to false for tools with side effects that must run sequentially.
Default ​
true