Member Junction
    Preparing search index...

    Context handed to IWaveStrategist.proposeNextWave — everything a strategist (deterministic or LLM-backed) needs to decide the next wave.

    interface WaveStrategistContext {
        leaderboard: LeaderboardEntry[];
        maxWaveSize: number;
        plan: ModelingPlanSpec;
        remaining: {
            AlgorithmName: string;
            FeatureSet: string[];
            Hyperparameters?: Record<string, unknown>;
            Label: string;
            Priority: number;
            Rationale: string;
        }[];
        waveIndex: number;
    }
    Index

    Properties

    leaderboard: LeaderboardEntry[]

    The current leaderboard, best-first, across all completed iterations so far.

    maxWaveSize: number

    The max iterations this wave may contain (the configured concurrency).

    The plan being executed.

    remaining: {
        AlgorithmName: string;
        FeatureSet: string[];
        Hyperparameters?: Record<string, unknown>;
        Label: string;
        Priority: number;
        Rationale: string;
    }[]

    Experiments NOT yet dispatched (deterministic default draws from here, priority-ordered).

    waveIndex: number

    Index of the wave about to be produced (0-based).