nexus-agents 2.55.0 → 2.55.1
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-HQ43NDJW.js → chunk-BPMQRYGU.js} +6 -109
- package/dist/chunk-BPMQRYGU.js.map +1 -0
- package/dist/{chunk-KTJIEY77.js → chunk-KVWHK72T.js} +4 -4
- package/dist/{chunk-SY344FS5.js → chunk-OC7RMLN2.js} +3 -3
- package/dist/chunk-R66AWJJ7.js +120 -0
- package/dist/chunk-R66AWJJ7.js.map +1 -0
- package/dist/{chunk-JEKPVSC4.js → chunk-XYCS5X3H.js} +2 -2
- package/dist/cli.d.ts +3 -0
- package/dist/cli.js +56 -5
- package/dist/cli.js.map +1 -1
- package/dist/{consensus-vote-NRPXA57O.js → consensus-vote-G6H532ME.js} +3 -2
- package/dist/index.js +7 -5
- package/dist/index.js.map +1 -1
- package/dist/{setup-command-NGAJEWE4.js → setup-command-B6AFJGZB.js} +3 -3
- package/dist/setup-custom-api-XAWKRDWV.js +107 -0
- package/dist/setup-custom-api-XAWKRDWV.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-HQ43NDJW.js.map +0 -1
- /package/dist/{chunk-KTJIEY77.js.map → chunk-KVWHK72T.js.map} +0 -0
- /package/dist/{chunk-SY344FS5.js.map → chunk-OC7RMLN2.js.map} +0 -0
- /package/dist/{chunk-JEKPVSC4.js.map → chunk-XYCS5X3H.js.map} +0 -0
- /package/dist/{consensus-vote-NRPXA57O.js.map → consensus-vote-G6H532ME.js.map} +0 -0
- /package/dist/{setup-command-NGAJEWE4.js.map → setup-command-B6AFJGZB.js.map} +0 -0
|
@@ -5,7 +5,8 @@ import {
|
|
|
5
5
|
executeVoting,
|
|
6
6
|
registerConsensusVoteTool,
|
|
7
7
|
resetCorrelationTracker
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-BPMQRYGU.js";
|
|
9
|
+
import "./chunk-R66AWJJ7.js";
|
|
9
10
|
import "./chunk-NYNBDP7M.js";
|
|
10
11
|
import "./chunk-3IDJSFWT.js";
|
|
11
12
|
import "./chunk-633WH2ML.js";
|
|
@@ -22,4 +23,4 @@ export {
|
|
|
22
23
|
registerConsensusVoteTool,
|
|
23
24
|
resetCorrelationTracker
|
|
24
25
|
};
|
|
25
|
-
//# sourceMappingURL=consensus-vote-
|
|
26
|
+
//# sourceMappingURL=consensus-vote-G6H532ME.js.map
|
package/dist/index.js
CHANGED
|
@@ -658,7 +658,7 @@ import {
|
|
|
658
658
|
validateWorkflowDependencies,
|
|
659
659
|
withLogging,
|
|
660
660
|
writePredictions
|
|
661
|
-
} from "./chunk-
|
|
661
|
+
} from "./chunk-KVWHK72T.js";
|
|
662
662
|
import {
|
|
663
663
|
getTokenEnvVars,
|
|
664
664
|
hasToken,
|
|
@@ -696,7 +696,6 @@ import {
|
|
|
696
696
|
NOOP_NOTIFIER,
|
|
697
697
|
NoAdapterError,
|
|
698
698
|
OWVoting,
|
|
699
|
-
PROVIDER_ENV_KEYS,
|
|
700
699
|
PairwiseVotingHistorySchema,
|
|
701
700
|
PersistentOutcomeStore,
|
|
702
701
|
PolicyConfigSchema,
|
|
@@ -781,7 +780,10 @@ import {
|
|
|
781
780
|
validateApiKeyPresence,
|
|
782
781
|
validateToolInput,
|
|
783
782
|
withTimeout
|
|
784
|
-
} from "./chunk-
|
|
783
|
+
} from "./chunk-BPMQRYGU.js";
|
|
784
|
+
import {
|
|
785
|
+
PROVIDER_ENV_KEYS
|
|
786
|
+
} from "./chunk-R66AWJJ7.js";
|
|
785
787
|
import "./chunk-JERFBN73.js";
|
|
786
788
|
import {
|
|
787
789
|
AgentActionSchema,
|
|
@@ -853,7 +855,7 @@ import {
|
|
|
853
855
|
connectTransport,
|
|
854
856
|
createServer,
|
|
855
857
|
startStdioServer
|
|
856
|
-
} from "./chunk-
|
|
858
|
+
} from "./chunk-OC7RMLN2.js";
|
|
857
859
|
import "./chunk-NYNBDP7M.js";
|
|
858
860
|
import {
|
|
859
861
|
MemoryError
|
|
@@ -6689,7 +6691,7 @@ function buildVotingInput(plan, config) {
|
|
|
6689
6691
|
}
|
|
6690
6692
|
async function executeSingleVote(plan, config, log) {
|
|
6691
6693
|
try {
|
|
6692
|
-
const { executeVoting } = await import("./consensus-vote-
|
|
6694
|
+
const { executeVoting } = await import("./consensus-vote-G6H532ME.js");
|
|
6693
6695
|
const input = buildVotingInput(plan, config);
|
|
6694
6696
|
const result = await executeVoting(input, log);
|
|
6695
6697
|
return parseVotingResult(result);
|