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

    Interface BenchmarkOrchestratorOptions

    interface BenchmarkOrchestratorOptions {
        concurrency?: number;
        instanceTimeoutMs?: number;
        limit?: number;
        onProgress?: (completed: number, total: number, label?: string) => void;
        signal?: AbortSignal;
    }
    Index

    Properties

    concurrency?: number

    Max parallel runInstance calls. Default 1 (serial).

    instanceTimeoutMs?: number

    Per-instance timeout in ms. Default 300_000 (5 min).

    limit?: number

    Limit instances evaluated (useful for smoke runs).

    onProgress?: (completed: number, total: number, label?: string) => void

    Progress callback.

    signal?: AbortSignal

    Abort the whole run.