@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.
- package/CHANGELOG.md +2 -0
- package/dist/benchmarks/index.js +1 -1
- package/dist/campaign/index.d.ts +37 -30
- package/dist/campaign/index.js +1 -1
- package/dist/{chunk-22VO7T2I.js → chunk-LT4J7ULK.js} +22 -4
- package/dist/{chunk-22VO7T2I.js.map → chunk-LT4J7ULK.js.map} +1 -1
- package/dist/contract/index.d.ts +3 -0
- package/dist/contract/index.js +1 -0
- package/dist/contract/index.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/openapi.json +1 -1
- package/package.json +3 -2
package/dist/contract/index.d.ts
CHANGED
|
@@ -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;
|
package/dist/contract/index.js
CHANGED
|
@@ -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,
|