Interface AgentOSErrorChunk

interface AgentOSErrorChunk {
    streamId: string;
    gmiInstanceId: string;
    personaId: string;
    isFinal: boolean;
    timestamp: string;
    metadata?: Record<string, any>;
    type: ERROR;
    code: string;
    message: string;
    details?: any;
}

Hierarchy (view full)

Properties

streamId: string
gmiInstanceId: string
personaId: string
isFinal: boolean
timestamp: string
metadata?: Record<string, any>
type: ERROR
code: string
message: string
details?: any