Interface AgentOSToolResultEmissionChunk

interface AgentOSToolResultEmissionChunk {
    streamId: string;
    gmiInstanceId: string;
    personaId: string;
    isFinal: boolean;
    timestamp: string;
    metadata?: Record<string, any>;
    type: TOOL_RESULT_EMISSION;
    toolCallId: string;
    toolName: string;
    toolResult: any;
    isSuccess: boolean;
    errorMessage?: string;
}

Hierarchy (view full)

Properties

streamId: string
gmiInstanceId: string
personaId: string
isFinal: boolean
timestamp: string
metadata?: Record<string, any>
toolCallId: string
toolName: string
toolResult: any
isSuccess: boolean
errorMessage?: string