Skip to main content

Interface: LoopToolCallResult

Defined in: packages/agentos/src/orchestration/runtime/LoopController.ts:108

The outcome of executing a LoopToolCallRequest.

Properties

error?

optional error: string

Defined in: packages/agentos/src/orchestration/runtime/LoopController.ts:122

Human-readable error message when success is false.


id

id: string

Defined in: packages/agentos/src/orchestration/runtime/LoopController.ts:110

Matches the originating LoopToolCallRequest.id.


name

name: string

Defined in: packages/agentos/src/orchestration/runtime/LoopController.ts:113

Name of the tool that was called.


output?

optional output: unknown

Defined in: packages/agentos/src/orchestration/runtime/LoopController.ts:119

Serialisable output returned by the tool on success.


success

success: boolean

Defined in: packages/agentos/src/orchestration/runtime/LoopController.ts:116

Whether the tool executed without error.