Interface AgentOSToolCallRequestChunk

interface AgentOSToolCallRequestChunk {
    streamId: string;
    gmiInstanceId: string;
    personaId: string;
    isFinal: boolean;
    timestamp: string;
    metadata?: Record<string, any>;
    type: TOOL_CALL_REQUEST;
    toolCalls: ToolCallRequest[];
    rationale?: string;
}

Hierarchy (view full)

Properties

streamId: string
gmiInstanceId: string
personaId: string
isFinal: boolean
timestamp: string
metadata?: Record<string, any>
toolCalls: ToolCallRequest[]
rationale?: string