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

    Interface AdaptiveOrchestratorResult

    Result of adaptive orchestration — extends GraphPipelineResult with metadata.

    interface AdaptiveOrchestratorResult {
        selectionMethod: "explicit" | "auto-detected";
        taskClassification: TaskClassification;
        success: boolean;
        templateId: string;
        stepsExecuted: number;
        durationMs: number;
        finalState: Readonly<Record<string, unknown>>;
        error?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    selectionMethod: "explicit" | "auto-detected"

    How the template was selected.

    taskClassification: TaskClassification

    Task classification used for selection.

    success: boolean
    templateId: string
    stepsExecuted: number
    durationMs: number
    finalState: Readonly<Record<string, unknown>>
    error?: string