Interface AgentOSResponseChunk

interface AgentOSResponseChunk {
    type: AgentOSResponseChunkType;
    streamId: string;
    gmiInstanceId: string;
    personaId: string;
    isFinal: boolean;
    timestamp: string;
    metadata?: Record<string, any>;
}

Hierarchy (view full)

Properties

streamId: string
gmiInstanceId: string
personaId: string
isFinal: boolean
timestamp: string
metadata?: Record<string, any>