Interface AgentOSToolResultInput

Host-provided result for one externally executed tool call.

interface AgentOSToolResultInput {
    toolCallId: string;
    toolName: string;
    toolOutput: any;
    isSuccess: boolean;
    errorMessage?: string;
}

Properties

toolCallId: string
toolName: string
toolOutput: any
isSuccess: boolean
errorMessage?: string