Member Junction
    Preparing search index...

    A capability stage — an Action or artifact tool. Effectful + async. The executor resolves templating and pipeInto into params before calling invoke; the raw upstream input is passed too for providers that want it.

    interface PipelineInvocable {
        isSource: boolean;
        providerKind: PipelineProviderKind;
        toolName: string;
        invoke(
            input: PipeValue,
            params: Record<string, unknown>,
        ): Promise<PipelineStepResult>;
    }

    Implemented by

    Index

    Properties

    isSource: boolean

    Whether this can be a pipeline's first stage (produces data without upstream).

    providerKind: PipelineProviderKind
    toolName: string

    Methods