@deskcreate/agentcraft
    Preparing search index...

    Interface CustomStepConfig

    Configuration for CustomStep.

    interface CustomStepConfig {
        id?: string;
        retry?: RetryStepConfig;
        run: (ctx: WorkflowContext) => unknown;
    }
    Index

    Properties

    Properties

    id?: string
    retry?: RetryStepConfig
    run: (ctx: WorkflowContext) => unknown