Member Junction
    Preparing search index...

    The terminal result of a delegated tool call, emitted on RealtimeSessionService.DelegationResult$ when the delegation finishes so the overlay can flip the "working" card into a result card with real content + provenance.

    interface RealtimeDelegationResult {
        Artifacts?: ParsedDelegationArtifact[];
        CallID: string;
        Output: string;
        RunID?: string;
        Success: boolean;
    }
    Index

    Properties

    Artifacts the delegated run produced, when the server reported any (artifacts in the tool ResultJson). The overlay's tabbed surface panel auto-opens one artifact tab per entry and focuses the newest on arrival.

    CallID: string

    The invoke-target-agent call this result belongs to.

    Output: string

    The result text — the agent's output, or an error message on failure.

    RunID?: string

    ID of the delegated agent run (MJ: AI Agent Runs) when the server reported one (runId in the tool ResultJson). Powers the overlay's gear-gated "Open run" dev link.

    Success: boolean

    Whether the delegated work succeeded.