Interface AgentOSSystemProgressChunk

interface AgentOSSystemProgressChunk {
    streamId: string;
    gmiInstanceId: string;
    personaId: string;
    isFinal: boolean;
    timestamp: string;
    metadata?: Record<string, any>;
    type: SYSTEM_PROGRESS;
    message: string;
    progressPercentage?: number;
    statusCode?: string;
}

Hierarchy (view full)

Properties

streamId: string
gmiInstanceId: string
personaId: string
isFinal: boolean
timestamp: string
metadata?: Record<string, any>
message: string
progressPercentage?: number
statusCode?: string