Member Junction
    Preparing search index...

    Metadata structure for message progress updates.

    interface MessageProgressMetadata {
        agentRun?: {
            Agent?: string;
            ConversationDetailID?: string;
            ID?: string;
        };
        agentRunId?: string;
        progress?: {
            agentName?: string;
            agentType?: string;
            hierarchicalStep?: string;
            message?: string;
            percentage?: number;
            stepCount?: number;
        };
    }
    Index

    Properties

    agentRun?: { Agent?: string; ConversationDetailID?: string; ID?: string }

    Agent run information (from RunAIAgentResolver).

    agentRunId?: string

    Agent run ID (alternative to agentRun.ID).

    progress?: {
        agentName?: string;
        agentType?: string;
        hierarchicalStep?: string;
        message?: string;
        percentage?: number;
        stepCount?: number;
    }

    Progress details (from RunAIAgentResolver).