Member Junction
    Preparing search index...

    Progress update from the agent.

    interface AgentProgress {
        IsToolExecution: boolean;
        PercentComplete?: number;
        StatusMessage: string;
        ToolName?: string;
    }
    Index

    Properties

    IsToolExecution: boolean

    Whether this is a tool execution progress update

    PercentComplete?: number

    Optional percentage complete (0-100)

    StatusMessage: string

    What the agent is currently doing

    ToolName?: string

    Name of the tool being executed (if IsToolExecution)