Member Junction
    Preparing search index...

    flow-agent — invoke an MJ Flow Agent per record, mapping record fields into the agent and the agent's output back into features (plan §5.4). Provides richer per-record branching than a plain transform.

    interface FlowAgentFeatureStep {
        FlowAgentRef: string;
        Id: string;
        InputMapping: Record<string, string>;
        Inputs?: string[];
        Kind: "flow-agent";
        Label?: string;
        OutputMapping: Record<string, string>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    FlowAgentRef: string

    Reference to the Flow Agent (an MJ: AI Agents id/name) to invoke per record.

    Id: string

    Stable id for this step, referenced by downstream steps' Inputs.

    InputMapping: Record<string, string>

    Map of agent-input name → source feature/column name.

    Inputs?: string[]

    Ids of upstream steps that feed this step (DAG edges).

    Kind: "flow-agent"

    Discriminator selecting the concrete step variant.

    Label?: string

    Optional human-readable label for the visual DAG.

    OutputMapping: Record<string, string>

    Map of output feature name → agent-output path.