Member Junction
    Preparing search index...

    For flow agents, this defines a single step

    interface AgentStep {
        ActionID?: string;
        ActionInputMapping?: string;
        ActionOutputMapping?: string;
        Description?: string;
        ID: string;
        Name: string;
        Paths?: AgentStepPath[];
        PromptDescription?: string;
        PromptID?: string;
        PromptName?: string;
        PromptText?: string;
        StartingStep: boolean;
        StepType: "Prompt" | "Sub-Agent" | "Action";
        SubAgentID?: string;
    }
    Index

    Properties

    ActionID?: string
    ActionInputMapping?: string
    ActionOutputMapping?: string
    Description?: string
    ID: string
    Name: string
    Paths?: AgentStepPath[]
    PromptDescription?: string
    PromptID?: string
    PromptName?: string
    PromptText?: string
    StartingStep: boolean

    If this is the first step of the flow agent or not

    StepType: "Prompt" | "Sub-Agent" | "Action"
    SubAgentID?: string