@tangle-network/agent-app 0.44.47 → 0.44.49
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/README.md +4 -4
- package/dist/assistant/index.js +2 -2
- package/dist/assistant/index.js.map +1 -1
- package/dist/chat-routes/index.d.ts +2 -1
- package/dist/chat-routes/index.js +9 -7
- package/dist/chat-routes/index.js.map +1 -1
- package/dist/{chunk-2EJFIQUV.js → chunk-6VWA26BV.js} +57 -79
- package/dist/chunk-6VWA26BV.js.map +1 -0
- package/dist/{chunk-VGATER6G.js → chunk-6W5Y4J2X.js} +2 -2
- package/dist/chunk-6W5Y4J2X.js.map +1 -0
- package/dist/{chunk-T3TYG3VW.js → chunk-D3GK2IPA.js} +2 -2
- package/dist/chunk-JEZJ6HTF.js +77 -0
- package/dist/chunk-JEZJ6HTF.js.map +1 -0
- package/dist/{chunk-3E4MW5LR.js → chunk-YOSSGDIG.js} +25 -16
- package/dist/chunk-YOSSGDIG.js.map +1 -0
- package/dist/runtime/index.d.ts +4 -4
- package/dist/runtime/index.js +1 -1
- package/dist/runtime/index.js.map +1 -1
- package/dist/sandbox/index.d.ts +2 -1
- package/dist/sandbox/index.js +1 -1
- package/dist/session-shell/index.d.ts +11 -2
- package/dist/session-shell/index.js +1 -1
- package/dist/stream/index.d.ts +1 -1
- package/dist/stream/index.js +11 -5
- package/dist/{turn-buffer-BcPfhr1_.d.ts → turn-buffer-CFKQlnxf.d.ts} +24 -6
- package/dist/turn-stream/index.d.ts +3 -1
- package/dist/turn-stream/index.js +8 -1
- package/dist/turn-stream/index.js.map +1 -1
- package/dist/web-react/index.js +2 -2
- package/package.json +17 -20
- package/dist/chunk-2EJFIQUV.js.map +0 -1
- package/dist/chunk-3E4MW5LR.js.map +0 -1
- package/dist/chunk-VGATER6G.js.map +0 -1
- /package/dist/{chunk-T3TYG3VW.js.map → chunk-D3GK2IPA.js.map} +0 -0
|
@@ -5,7 +5,7 @@ import { ChatTurnIdentity, ChatTurnProducer } from '@tangle-network/agent-runtim
|
|
|
5
5
|
import { C as ChatMessagePart, a as ChatAttachmentPart, e as ChatMentionPart } from '../parts-F8W3-iry.js';
|
|
6
6
|
import { InteractionAnswerRoute, InteractionAnswerRouteOptions } from '../interactions/index.js';
|
|
7
7
|
import { PersistedChatMessageForTurn } from '../stream/index.js';
|
|
8
|
-
import { T as TurnEventStore } from '../turn-buffer-
|
|
8
|
+
import { T as TurnEventStore } from '../turn-buffer-CFKQlnxf.js';
|
|
9
9
|
import { M as ModelFailoverAttempt } from '../failover-D-3UXXTb.js';
|
|
10
10
|
export { D as DEFAULT_STALE_TURN_LOCK_GRACE_MS, a as DEFAULT_TERMINAL_TURN_LOCK_GRACE_MS, R as ReconcileStaleTurnLockOptions, b as ReconcileStaleTurnLockResult, S as StaleTurnLockSandboxProbeResult, c as StaleTurnLockSessionProbeResult, r as reconcileStaleTurnLock } from '../stale-turn-lock-DucQzvXu.js';
|
|
11
11
|
import { J as JsonRecord } from '../stream-normalizer-CnPnMaTp.js';
|
|
@@ -14,6 +14,7 @@ import '@tangle-network/agent-interface';
|
|
|
14
14
|
import '../contract-CQNvv5th.js';
|
|
15
15
|
import '../types-CCeYywdS.js';
|
|
16
16
|
import '../plans/index.js';
|
|
17
|
+
import '@tangle-network/sandbox/core';
|
|
17
18
|
import '@tangle-network/sandbox';
|
|
18
19
|
import '../auth-DJs6lfAs.js';
|
|
19
20
|
import '../types-DbU-oO5h.js';
|
|
@@ -15,18 +15,20 @@ import {
|
|
|
15
15
|
sniffBinary
|
|
16
16
|
} from "../chunk-WBHPN5DY.js";
|
|
17
17
|
import {
|
|
18
|
-
coalesceDeltas,
|
|
19
|
-
createBufferedTurnTap,
|
|
20
18
|
normalizeClientTurnId,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
stampReplaySeq
|
|
24
|
-
} from "../chunk-2EJFIQUV.js";
|
|
19
|
+
resolveChatTurn
|
|
20
|
+
} from "../chunk-JEZJ6HTF.js";
|
|
25
21
|
import {
|
|
26
22
|
DEFAULT_STALE_TURN_LOCK_GRACE_MS,
|
|
27
23
|
DEFAULT_TERMINAL_TURN_LOCK_GRACE_MS,
|
|
28
24
|
reconcileStaleTurnLock
|
|
29
25
|
} from "../chunk-CCVWR33L.js";
|
|
26
|
+
import {
|
|
27
|
+
coalesceDeltas,
|
|
28
|
+
createBufferedTurnTap,
|
|
29
|
+
replayTurnEvents,
|
|
30
|
+
stampReplaySeq
|
|
31
|
+
} from "../chunk-6VWA26BV.js";
|
|
30
32
|
import {
|
|
31
33
|
createInteractionAnswerRoute
|
|
32
34
|
} from "../chunk-6KMAM7BL.js";
|
|
@@ -97,7 +99,7 @@ import {
|
|
|
97
99
|
flattenHistory,
|
|
98
100
|
readSandboxBinaryBytes,
|
|
99
101
|
statSandboxFileSize
|
|
100
|
-
} from "../chunk-
|
|
102
|
+
} from "../chunk-6W5Y4J2X.js";
|
|
101
103
|
import "../chunk-LWSJK546.js";
|
|
102
104
|
import "../chunk-CQZSAR77.js";
|
|
103
105
|
import "../chunk-ICOHEZK6.js";
|