AgentExecutionResult
Interface: AgentExecutionResult
Defined in: packages/agent/src/unified/types/libTypes.ts:273
Agent execution result
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
completed | boolean | Whether the agent completed its task | packages/agent/src/unified/types/libTypes.ts:285 |
context | Record<string, unknown> | Execution context | packages/agent/src/unified/types/libTypes.ts:287 |
conversationHistory | OpenAIMessage[] | Complete conversation history | packages/agent/src/unified/types/libTypes.ts:279 |
error? | string | Error message if execution failed | packages/agent/src/unified/types/libTypes.ts:289 |
iterations | number | Number of iterations performed | packages/agent/src/unified/types/libTypes.ts:283 |
metadata? | Record<string, unknown> | Execution metadata | packages/agent/src/unified/types/libTypes.ts:291 |
response | string | Final response message | packages/agent/src/unified/types/libTypes.ts:277 |
success | boolean | Whether execution completed successfully | packages/agent/src/unified/types/libTypes.ts:275 |
toolResults | ToolResult[] | Tool execution results | packages/agent/src/unified/types/libTypes.ts:281 |