nexus-agents 3.6.13 → 3.6.14
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/dist/{chunk-G45DZK5W.js → chunk-4DU2MJLV.js} +8 -11
- package/dist/chunk-4DU2MJLV.js.map +1 -0
- package/dist/{chunk-EOIQRW7A.js → chunk-G3D7AJ3C.js} +9 -2
- package/dist/chunk-G3D7AJ3C.js.map +1 -0
- package/dist/{chunk-MNQYHPWP.js → chunk-JNHHJZT3.js} +5 -2
- package/dist/chunk-JNHHJZT3.js.map +1 -0
- package/dist/chunk-KYVWCL7O.js +10 -0
- package/dist/chunk-KYVWCL7O.js.map +1 -0
- package/dist/{chunk-SQOTLTGX.js → chunk-KZJXRKAE.js} +3 -3
- package/dist/{chunk-SYR23V25.js → chunk-YSYSJICI.js} +2 -2
- package/dist/cli.js +21 -11
- package/dist/cli.js.map +1 -1
- package/dist/{consensus-vote-2HY2OC6W.js → consensus-vote-JGES3MKP.js} +3 -2
- package/dist/index.js +12 -5
- package/dist/index.js.map +1 -1
- package/dist/{pr-reviewer-helpers-L3JGYIAM.js → pr-reviewer-helpers-SBWJ4WP6.js} +3 -2
- package/dist/{setup-command-4JDXXE7X.js → setup-command-LRV5CMBR.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-EOIQRW7A.js.map +0 -1
- package/dist/chunk-G45DZK5W.js.map +0 -1
- package/dist/chunk-MNQYHPWP.js.map +0 -1
- /package/dist/{chunk-SQOTLTGX.js.map → chunk-KZJXRKAE.js.map} +0 -0
- /package/dist/{chunk-SYR23V25.js.map → chunk-YSYSJICI.js.map} +0 -0
- /package/dist/{consensus-vote-2HY2OC6W.js.map → consensus-vote-JGES3MKP.js.map} +0 -0
- /package/dist/{pr-reviewer-helpers-L3JGYIAM.js.map → pr-reviewer-helpers-SBWJ4WP6.js.map} +0 -0
- /package/dist/{setup-command-4JDXXE7X.js.map → setup-command-LRV5CMBR.js.map} +0 -0
|
@@ -11,7 +11,8 @@ import {
|
|
|
11
11
|
resetCorrelationTracker,
|
|
12
12
|
runConsensusForGoal,
|
|
13
13
|
unwrapVoteOrThrow
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-G3D7AJ3C.js";
|
|
15
|
+
import "./chunk-KYVWCL7O.js";
|
|
15
16
|
import "./chunk-6WRQIEKK.js";
|
|
16
17
|
import "./chunk-QWFEQURV.js";
|
|
17
18
|
import "./chunk-KJCXANOL.js";
|
|
@@ -48,4 +49,4 @@ export {
|
|
|
48
49
|
runConsensusForGoal,
|
|
49
50
|
unwrapVoteOrThrow
|
|
50
51
|
};
|
|
51
|
-
//# sourceMappingURL=consensus-vote-
|
|
52
|
+
//# sourceMappingURL=consensus-vote-JGES3MKP.js.map
|
package/dist/index.js
CHANGED
|
@@ -541,7 +541,7 @@ import {
|
|
|
541
541
|
withLogging,
|
|
542
542
|
withRetry,
|
|
543
543
|
withRetryWrapper
|
|
544
|
-
} from "./chunk-
|
|
544
|
+
} from "./chunk-4DU2MJLV.js";
|
|
545
545
|
import {
|
|
546
546
|
FALLBACK_SCANNER_DATA,
|
|
547
547
|
buildPlanFromAnalysis,
|
|
@@ -575,7 +575,7 @@ import {
|
|
|
575
575
|
getKnownNexusVarNames,
|
|
576
576
|
startStdioServer,
|
|
577
577
|
validateNexusEnv
|
|
578
|
-
} from "./chunk-
|
|
578
|
+
} from "./chunk-KZJXRKAE.js";
|
|
579
579
|
import {
|
|
580
580
|
OPENAI_MODELS,
|
|
581
581
|
OPENAI_MODEL_ALIASES,
|
|
@@ -633,7 +633,10 @@ import {
|
|
|
633
633
|
generateProposalId,
|
|
634
634
|
parseAgentPairKey,
|
|
635
635
|
registerConsensusVoteTool
|
|
636
|
-
} from "./chunk-
|
|
636
|
+
} from "./chunk-G3D7AJ3C.js";
|
|
637
|
+
import {
|
|
638
|
+
allOf
|
|
639
|
+
} from "./chunk-KYVWCL7O.js";
|
|
637
640
|
import "./chunk-6WRQIEKK.js";
|
|
638
641
|
import "./chunk-CPEOXRCU.js";
|
|
639
642
|
import {
|
|
@@ -1490,7 +1493,11 @@ var AbTestTracker = class {
|
|
|
1490
1493
|
}
|
|
1491
1494
|
const outcomes = this.outcomes.get(experimentId) ?? [];
|
|
1492
1495
|
const variantStats = this.calculateVariantStats(experiment, outcomes);
|
|
1493
|
-
const hasMinimumSampleSize =
|
|
1496
|
+
const hasMinimumSampleSize = allOf(
|
|
1497
|
+
variantStats,
|
|
1498
|
+
(vs) => vs.n >= experiment.minSampleSize,
|
|
1499
|
+
false
|
|
1500
|
+
);
|
|
1494
1501
|
const result = this.calculateExperimentResult(experiment, variantStats);
|
|
1495
1502
|
const recommendation = this.getRecommendation(experiment, result, hasMinimumSampleSize);
|
|
1496
1503
|
return {
|
|
@@ -4711,7 +4718,7 @@ function buildVotingInput(plan, config) {
|
|
|
4711
4718
|
}
|
|
4712
4719
|
async function executeSingleVote(plan, config, log) {
|
|
4713
4720
|
try {
|
|
4714
|
-
const { executeVoting } = await import("./consensus-vote-
|
|
4721
|
+
const { executeVoting } = await import("./consensus-vote-JGES3MKP.js");
|
|
4715
4722
|
const input = buildVotingInput(plan, config);
|
|
4716
4723
|
const result = await executeVoting(input, log);
|
|
4717
4724
|
return parseVotingResult(result);
|