Member Junction
    Preparing search index...

    Type Alias TaskContinuationParams

    Everything a continuation needs to say what happened.

    type TaskContinuationParams = {
        ConversationDetailID: string | null;
        ParentTaskID: string;
        ReinvokeDepth: number;
        SubmittedByAgentRunID: string | null;
        Summary: string;
        Tasks: {
            ErrorMessage?: string;
            Name: string;
            Status: string;
            Summary?: string;
            TaskID: string;
        }[];
        WorkflowName: string;
    }
    Index

    Properties

    ConversationDetailID: string | null

    Conversation the graph answers, when it came from a conversational channel.

    ParentTaskID: string
    ReinvokeDepth: number

    How many continuation hops preceded this one, so a re-submitted graph can carry depth + 1.

    SubmittedByAgentRunID: string | null

    The agent run that emitted the graph — the target of a reinvoke.

    Summary: string

    One-line human-readable roll-up.

    Tasks: {
        ErrorMessage?: string;
        Name: string;
        Status: string;
        Summary?: string;
        TaskID: string;
    }[]

    Per-task outcome. Deliberately carries a summary and an outputRef, not inline payloads — a ten-task graph's full outputs would swamp the continuation turn's context window, and the agent can pull what it actually needs by task ID.

    WorkflowName: string