Member Junction
    Preparing search index...

    Type Alias TaskPromptRunResult

    The outcome of one prompt node.

    type TaskPromptRunResult = {
        ChatMessage?: string;
        ErrorMessage?: string;
        Output?: unknown;
        PromptRunID?: string;
        Success: boolean;
    }
    Index

    Properties

    ChatMessage?: string

    Set when the prompt asked to end the workflow and say something to a person.

    A prompt is the one node kind that can decide the workflow is done — it is the only one doing open-ended reasoning. The dispatcher honours it by skipping the remaining tasks and settling the parent Complete with this message, rather than treating an early finish as an abandoned graph.

    ErrorMessage?: string
    Output?: unknown

    The parsed JSON response, deep-merged into the payload by the dispatcher.

    PromptRunID?: string

    The MJ: AI Prompt Runs row, for provenance.

    Success: boolean