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.
@@ -11,7 +11,8 @@ import {
11
11
  resetCorrelationTracker,
12
12
  runConsensusForGoal,
13
13
  unwrapVoteOrThrow
14
- } from "./chunk-EOIQRW7A.js";
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-2HY2OC6W.js.map
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-G45DZK5W.js";
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-SQOTLTGX.js";
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-EOIQRW7A.js";
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 = variantStats.every((vs) => vs.n >= experiment.minSampleSize);
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-2HY2OC6W.js");
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);