@tangle-network/agent-eval 0.123.3 → 0.123.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3888,6 +3888,9 @@ interface SelfImproveBudget {
3888
3888
  populationSize?: number;
3889
3889
  /** Max concurrent cells across the loop. Default 2. */
3890
3890
  maxConcurrency?: number;
3891
+ /** Candidate campaigns scored in parallel. Default 1. Total concurrent
3892
+ * cells are bounded by `candidateConcurrency * maxConcurrency`. */
3893
+ candidateConcurrency?: number;
3891
3894
  /** Fraction of `scenarios` held out from training, used for the gate.
3892
3895
  * Default 0.25. Ignored when `holdoutScenarios` is set explicitly. */
3893
3896
  holdoutFraction?: number;
@@ -200,6 +200,7 @@ async function runSelfImprove(opts, costLedger, startedAt, runDir, storage) {
200
200
  judges: [opts.judge],
201
201
  populationSize,
202
202
  maxGenerations: generations,
203
+ candidateConcurrency: budget.candidateConcurrency,
203
204
  promoteTopK: budget.promoteTopK,
204
205
  reps: budget.reps,
205
206
  maxImprovementShots: budget.maxImprovementShots,