@tangle-network/agent-runtime 0.87.0 → 0.89.0
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/agent.js +3 -3
- package/dist/analyst-loop.js +2 -2
- package/dist/{chunk-MHYF2LIP.js → chunk-5AVV7KAH.js} +2 -2
- package/dist/{chunk-FLVVVBWV.js → chunk-BQPFZE2C.js} +4 -4
- package/dist/{chunk-QUXZBZCS.js → chunk-FVJ7M3DA.js} +1 -1
- package/dist/chunk-FVJ7M3DA.js.map +1 -0
- package/dist/{chunk-6XCW3M7W.js → chunk-N7EJV7N3.js} +14 -10
- package/dist/chunk-N7EJV7N3.js.map +1 -0
- package/dist/{chunk-VKVNDNG4.js → chunk-PIPPLSOF.js} +6 -5
- package/dist/chunk-PIPPLSOF.js.map +1 -0
- package/dist/{chunk-LCXXIL3U.js → chunk-ZQZX77MM.js} +2 -2
- package/dist/index.js +6 -6
- package/dist/loop-runner-bin.js +5 -5
- package/dist/loops.d.ts +25 -4
- package/dist/loops.js +3 -3
- package/dist/mcp/bin.js +2 -2
- package/dist/mcp/index.js +4 -4
- package/package.json +2 -2
- package/dist/chunk-6XCW3M7W.js.map +0 -1
- package/dist/chunk-QUXZBZCS.js.map +0 -1
- package/dist/chunk-VKVNDNG4.js.map +0 -1
- /package/dist/{chunk-MHYF2LIP.js.map → chunk-5AVV7KAH.js.map} +0 -0
- /package/dist/{chunk-FLVVVBWV.js.map → chunk-BQPFZE2C.js.map} +0 -0
- /package/dist/{chunk-LCXXIL3U.js.map → chunk-ZQZX77MM.js.map} +0 -0
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
settledToIteration,
|
|
16
16
|
supervise,
|
|
17
17
|
withDriverExecutor
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-N7EJV7N3.js";
|
|
19
19
|
import {
|
|
20
20
|
addTokenUsage,
|
|
21
21
|
isAbortError,
|
|
@@ -28,7 +28,7 @@ import {
|
|
|
28
28
|
createSandboxToolPartState,
|
|
29
29
|
mapSandboxEvent,
|
|
30
30
|
mapSandboxToolEvent
|
|
31
|
-
} from "./chunk-
|
|
31
|
+
} from "./chunk-FVJ7M3DA.js";
|
|
32
32
|
import {
|
|
33
33
|
AnalystError,
|
|
34
34
|
BackendTransportError,
|
|
@@ -3532,7 +3532,8 @@ async function openSandboxRun(client, options, deliverable) {
|
|
|
3532
3532
|
const r = await lineage.start(
|
|
3533
3533
|
options.agentRun,
|
|
3534
3534
|
prompt,
|
|
3535
|
-
options.signal
|
|
3535
|
+
options.signal,
|
|
3536
|
+
options.promptOptions
|
|
3536
3537
|
);
|
|
3537
3538
|
handle = r.handle;
|
|
3538
3539
|
const result = await settle2(handle.box, r.events);
|
|
@@ -3577,7 +3578,7 @@ async function openSandboxRun(client, options, deliverable) {
|
|
|
3577
3578
|
try {
|
|
3578
3579
|
const result = await settle2(
|
|
3579
3580
|
handle.box,
|
|
3580
|
-
await lineage.continue(handle, prompt, options.signal)
|
|
3581
|
+
await lineage.continue(handle, prompt, options.signal, options.promptOptions)
|
|
3581
3582
|
);
|
|
3582
3583
|
turnCount += 1;
|
|
3583
3584
|
emit({
|
|
@@ -5906,4 +5907,4 @@ export {
|
|
|
5906
5907
|
computeFindingId,
|
|
5907
5908
|
makeFinding2 as makeFinding
|
|
5908
5909
|
};
|
|
5909
|
-
//# sourceMappingURL=chunk-
|
|
5910
|
+
//# sourceMappingURL=chunk-PIPPLSOF.js.map
|