@tangle-network/agent-eval 0.126.0 → 0.126.2
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 +26 -0
- package/dist/analyst/index.js +3 -3
- package/dist/benchmarks/index.js +3 -3
- package/dist/campaign/index.d.ts +27 -6
- package/dist/campaign/index.js +5 -3
- package/dist/{chunk-NTOV7RU5.js → chunk-7AN2E7BU.js} +233 -57
- package/dist/chunk-7AN2E7BU.js.map +1 -0
- package/dist/{chunk-4B7ZZHPX.js → chunk-KE2VWPZX.js} +3 -3
- package/dist/{chunk-CM4OILD2.js → chunk-LUNF2SEL.js} +4 -6
- package/dist/{chunk-CM4OILD2.js.map → chunk-LUNF2SEL.js.map} +1 -1
- package/dist/{chunk-UI4YMIN2.js → chunk-WGXIEX7P.js} +12 -1
- package/dist/chunk-WGXIEX7P.js.map +1 -0
- package/dist/{chunk-KO2PZOGP.js → chunk-Y5CLI4PY.js} +3 -3
- package/dist/contract/index.d.ts +29 -5
- package/dist/contract/index.js +5 -4
- package/dist/contract/index.js.map +1 -1
- package/dist/index.js +5 -5
- package/dist/openapi.json +1 -1
- package/docs/campaign-proposers.md +3 -3
- package/package.json +1 -1
- package/dist/chunk-NTOV7RU5.js.map +0 -1
- package/dist/chunk-UI4YMIN2.js.map +0 -1
- /package/dist/{chunk-4B7ZZHPX.js.map → chunk-KE2VWPZX.js.map} +0 -0
- /package/dist/{chunk-KO2PZOGP.js.map → chunk-Y5CLI4PY.js.map} +0 -0
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
computeFindingId
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LUNF2SEL.js";
|
|
4
4
|
import {
|
|
5
5
|
Mutex,
|
|
6
6
|
aggregateRunScore,
|
|
7
7
|
clamp01
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-WGXIEX7P.js";
|
|
9
9
|
import {
|
|
10
10
|
callLlmJson,
|
|
11
11
|
costReceiptFromLlm,
|
|
@@ -749,4 +749,4 @@ export {
|
|
|
749
749
|
runSemanticConceptJudge,
|
|
750
750
|
createSemanticConceptJudge
|
|
751
751
|
};
|
|
752
|
-
//# sourceMappingURL=chunk-
|
|
752
|
+
//# sourceMappingURL=chunk-KE2VWPZX.js.map
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
executionTrackByLane
|
|
3
3
|
} from "./chunk-HHWE3POT.js";
|
|
4
|
+
import {
|
|
5
|
+
combineAbortSignals
|
|
6
|
+
} from "./chunk-WGXIEX7P.js";
|
|
4
7
|
import {
|
|
5
8
|
LlmClient,
|
|
6
9
|
callLlm,
|
|
@@ -2108,11 +2111,6 @@ function validateTimeout(timeoutMs) {
|
|
|
2108
2111
|
}
|
|
2109
2112
|
return timeoutMs;
|
|
2110
2113
|
}
|
|
2111
|
-
function combineAbortSignals(caller, timeout) {
|
|
2112
|
-
if (!caller) return timeout;
|
|
2113
|
-
if (!timeout) return caller;
|
|
2114
|
-
return AbortSignal.any([caller, timeout]);
|
|
2115
|
-
}
|
|
2116
2114
|
async function waitForOperation(operation, signal, abortGraceMs) {
|
|
2117
2115
|
if (!signal) return operation;
|
|
2118
2116
|
if (signal.aborted) {
|
|
@@ -2427,4 +2425,4 @@ export {
|
|
|
2427
2425
|
AnalystRegistry,
|
|
2428
2426
|
buildDefaultAnalystRegistry
|
|
2429
2427
|
};
|
|
2430
|
-
//# sourceMappingURL=chunk-
|
|
2428
|
+
//# sourceMappingURL=chunk-LUNF2SEL.js.map
|