nexus-agents - v2.80.0
    Preparing search index...

    Interface StepExecutorDeps

    Dependencies for the step executor.

    interface StepExecutorDeps {
        expertFactory: WorkflowExpertFactory;
        logger?: {
            debug: (message: string, data?: Record<string, unknown>) => void;
            info: (message: string, data?: Record<string, unknown>) => void;
            warn: (message: string, data?: Record<string, unknown>) => void;
            error: (message: string, data?: Record<string, unknown>) => void;
        };
    }
    Index

    Properties

    expertFactory: WorkflowExpertFactory
    logger?: {
        debug: (message: string, data?: Record<string, unknown>) => void;
        info: (message: string, data?: Record<string, unknown>) => void;
        warn: (message: string, data?: Record<string, unknown>) => void;
        error: (message: string, data?: Record<string, unknown>) => void;
    }