Skip to content

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?

optional continueOnError: 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

ts
true

defaultTimeoutMs?

optional defaultTimeoutMs: number

Defined in: core/src/types.ts:396

Default timeout for tool execution in milliseconds. Can be overridden per-tool via tool definition.

Default

ts
30000 (30 seconds)

maxConcurrent?

optional maxConcurrent: number

Defined in: core/src/types.ts:389

Maximum number of concurrent tool executions when parallel is true.

Default

ts
10

parallel?

optional parallel: 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

ts
true

Released under the ISC License.