veryfront 0.1.701 → 0.1.704
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/esm/cli/templates/manifest.d.ts +0 -2
- package/esm/cli/templates/manifest.js +1 -3
- package/esm/deno.js +1 -1
- package/esm/src/agent/streaming/fork-runtime-part-mapper.d.ts +59 -0
- package/esm/src/agent/streaming/fork-runtime-part-mapper.d.ts.map +1 -0
- package/esm/src/agent/streaming/fork-runtime-part-mapper.js +246 -0
- package/esm/src/agent/streaming/fork-runtime-step-state.d.ts +36 -0
- package/esm/src/agent/streaming/fork-runtime-step-state.d.ts.map +1 -0
- package/esm/src/agent/streaming/fork-runtime-step-state.js +240 -0
- package/esm/src/agent/streaming/fork-runtime-stream.d.ts +4 -81
- package/esm/src/agent/streaming/fork-runtime-stream.d.ts.map +1 -1
- package/esm/src/agent/streaming/fork-runtime-stream.js +5 -482
- package/esm/src/integrations/_data.d.ts.map +1 -1
- package/esm/src/integrations/_data.js +1 -42
- package/esm/src/internal-agents/run-stream.d.ts.map +1 -1
- package/esm/src/internal-agents/run-stream.js +3 -0
- package/esm/src/oauth/providers/common.d.ts.map +1 -1
- package/esm/src/oauth/providers/common.js +6 -1
- package/esm/src/tool/types.d.ts +2 -0
- package/esm/src/tool/types.d.ts.map +1 -1
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/esm/src/workflow/claude-code/react/event-state-reducer.d.ts +37 -0
- package/esm/src/workflow/claude-code/react/event-state-reducer.d.ts.map +1 -0
- package/esm/src/workflow/claude-code/react/event-state-reducer.js +104 -0
- package/esm/src/workflow/claude-code/react/use-claude-code-stream.d.ts +3 -35
- package/esm/src/workflow/claude-code/react/use-claude-code-stream.d.ts.map +1 -1
- package/esm/src/workflow/claude-code/react/use-claude-code-stream.js +9 -78
- package/esm/src/workflow/claude-code/react/use-claude-code-websocket.d.ts +2 -27
- package/esm/src/workflow/claude-code/react/use-claude-code-websocket.d.ts.map +1 -1
- package/esm/src/workflow/claude-code/react/use-claude-code-websocket.js +5 -57
- package/package.json +1 -1
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
import * as dntShim from "../../../_dnt.shims.js";
|
|
2
|
+
import { isRecord } from "../../chat/conversation.js";
|
|
3
|
+
import { HOSTED_CHILD_STREAM_TIMEOUT_TOKEN, resolveHostedChildPromiseWithTimeout, } from "../hosted/child-stream-watchdog.js";
|
|
4
|
+
import { mergeToolInputDelta, parseToolInputObject } from "./data-stream.js";
|
|
5
|
+
import { getParsedStreamedToolInput } from "./fork-runtime-part-mapper.js";
|
|
6
|
+
export function createAgentRuntimeForkAbortError(abortSignal) {
|
|
7
|
+
if (abortSignal?.reason instanceof Error) {
|
|
8
|
+
return abortSignal.reason;
|
|
9
|
+
}
|
|
10
|
+
return new DOMException("Agent runtime fork aborted before completion.", "AbortError");
|
|
11
|
+
}
|
|
12
|
+
/** State for create streamed step. */
|
|
13
|
+
export function createStreamedStepState() {
|
|
14
|
+
return {
|
|
15
|
+
text: "",
|
|
16
|
+
toolCalls: new Map(),
|
|
17
|
+
messages: [],
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
function appendStreamedMessagePart(state, role, part) {
|
|
21
|
+
const lastMessage = state.messages.at(-1);
|
|
22
|
+
if (lastMessage?.role === role) {
|
|
23
|
+
lastMessage.parts.push(part);
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
state.messages.push({
|
|
27
|
+
role,
|
|
28
|
+
parts: [part],
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
function isFrameworkTextPart(part) {
|
|
32
|
+
return part.type === "text";
|
|
33
|
+
}
|
|
34
|
+
/** State for apply part to streamed step. */
|
|
35
|
+
export function applyPartToStreamedStepState(state, part) {
|
|
36
|
+
switch (part.type) {
|
|
37
|
+
case "tool-input-start": {
|
|
38
|
+
const existing = state.toolCalls.get(part.toolCallId);
|
|
39
|
+
state.toolCalls.set(part.toolCallId, {
|
|
40
|
+
toolCallId: part.toolCallId,
|
|
41
|
+
toolName: part.toolName,
|
|
42
|
+
inputText: existing?.inputText ?? "",
|
|
43
|
+
input: existing?.input ?? {},
|
|
44
|
+
status: existing?.status ?? "pending",
|
|
45
|
+
...(existing?.output !== undefined ? { output: existing.output } : {}),
|
|
46
|
+
...(existing?.errorText ? { errorText: existing.errorText } : {}),
|
|
47
|
+
});
|
|
48
|
+
break;
|
|
49
|
+
}
|
|
50
|
+
case "text-delta": {
|
|
51
|
+
state.text += part.text;
|
|
52
|
+
const lastAssistantMessage = state.messages.at(-1);
|
|
53
|
+
const lastAssistantPart = lastAssistantMessage?.role === "assistant"
|
|
54
|
+
? lastAssistantMessage.parts.at(-1)
|
|
55
|
+
: null;
|
|
56
|
+
if (lastAssistantMessage && lastAssistantPart && isFrameworkTextPart(lastAssistantPart)) {
|
|
57
|
+
lastAssistantPart.text += part.text;
|
|
58
|
+
}
|
|
59
|
+
else {
|
|
60
|
+
appendStreamedMessagePart(state, "assistant", {
|
|
61
|
+
type: "text",
|
|
62
|
+
text: part.text,
|
|
63
|
+
});
|
|
64
|
+
}
|
|
65
|
+
break;
|
|
66
|
+
}
|
|
67
|
+
case "tool-input-delta": {
|
|
68
|
+
const existing = state.toolCalls.get(part.toolCallId);
|
|
69
|
+
if (!existing) {
|
|
70
|
+
break;
|
|
71
|
+
}
|
|
72
|
+
existing.inputText = mergeToolInputDelta(existing.inputText, part.delta);
|
|
73
|
+
const parsedInput = getParsedStreamedToolInput(existing.inputText);
|
|
74
|
+
if (parsedInput) {
|
|
75
|
+
existing.input = parsedInput;
|
|
76
|
+
}
|
|
77
|
+
break;
|
|
78
|
+
}
|
|
79
|
+
case "tool-call": {
|
|
80
|
+
const existing = state.toolCalls.get(part.toolCallId);
|
|
81
|
+
state.toolCalls.set(part.toolCallId, {
|
|
82
|
+
toolCallId: part.toolCallId,
|
|
83
|
+
toolName: part.toolName,
|
|
84
|
+
input: part.input,
|
|
85
|
+
inputText: existing?.inputText ?? "",
|
|
86
|
+
status: "pending",
|
|
87
|
+
...(existing?.output !== undefined ? { output: existing.output } : {}),
|
|
88
|
+
...(existing?.errorText ? { errorText: existing.errorText } : {}),
|
|
89
|
+
});
|
|
90
|
+
appendStreamedMessagePart(state, "assistant", {
|
|
91
|
+
type: `tool-${part.toolName}`,
|
|
92
|
+
toolCallId: part.toolCallId,
|
|
93
|
+
toolName: part.toolName,
|
|
94
|
+
args: parseToolInputObject(part.input),
|
|
95
|
+
});
|
|
96
|
+
break;
|
|
97
|
+
}
|
|
98
|
+
case "tool-result": {
|
|
99
|
+
const existing = state.toolCalls.get(part.toolCallId);
|
|
100
|
+
state.toolCalls.set(part.toolCallId, {
|
|
101
|
+
toolCallId: part.toolCallId,
|
|
102
|
+
toolName: part.toolName,
|
|
103
|
+
input: part.input,
|
|
104
|
+
inputText: existing?.inputText ?? "",
|
|
105
|
+
status: "completed",
|
|
106
|
+
output: part.output,
|
|
107
|
+
...(existing?.errorText ? { errorText: existing.errorText } : {}),
|
|
108
|
+
});
|
|
109
|
+
appendStreamedMessagePart(state, "tool", {
|
|
110
|
+
type: "tool-result",
|
|
111
|
+
toolCallId: part.toolCallId,
|
|
112
|
+
toolName: part.toolName,
|
|
113
|
+
result: part.output,
|
|
114
|
+
});
|
|
115
|
+
break;
|
|
116
|
+
}
|
|
117
|
+
case "tool-error": {
|
|
118
|
+
const existing = state.toolCalls.get(part.toolCallId);
|
|
119
|
+
state.toolCalls.set(part.toolCallId, {
|
|
120
|
+
toolCallId: part.toolCallId,
|
|
121
|
+
toolName: part.toolName,
|
|
122
|
+
input: part.input,
|
|
123
|
+
inputText: existing?.inputText ?? "",
|
|
124
|
+
status: "error",
|
|
125
|
+
...(existing?.output !== undefined ? { output: existing.output } : {}),
|
|
126
|
+
errorText: part.error.message,
|
|
127
|
+
});
|
|
128
|
+
break;
|
|
129
|
+
}
|
|
130
|
+
case "error": {
|
|
131
|
+
state.streamError = part.error;
|
|
132
|
+
break;
|
|
133
|
+
}
|
|
134
|
+
default:
|
|
135
|
+
break;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
function buildFallbackAgentRuntimeMessages(baseMessages, state) {
|
|
139
|
+
const messages = baseMessages.map((message) => ({
|
|
140
|
+
...message,
|
|
141
|
+
parts: [...message.parts],
|
|
142
|
+
}));
|
|
143
|
+
if (state.messages.length > 0) {
|
|
144
|
+
messages.push(...state.messages.map((message) => ({
|
|
145
|
+
id: dntShim.crypto.randomUUID(),
|
|
146
|
+
role: message.role,
|
|
147
|
+
timestamp: Date.now(),
|
|
148
|
+
parts: structuredClone(message.parts),
|
|
149
|
+
})));
|
|
150
|
+
}
|
|
151
|
+
else if (state.text.trim().length > 0) {
|
|
152
|
+
messages.push({
|
|
153
|
+
id: dntShim.crypto.randomUUID(),
|
|
154
|
+
role: "assistant",
|
|
155
|
+
timestamp: Date.now(),
|
|
156
|
+
parts: [{ type: "text", text: state.text }],
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
return messages;
|
|
160
|
+
}
|
|
161
|
+
function collectToolResultPaths(messages) {
|
|
162
|
+
const paths = new Set();
|
|
163
|
+
for (const message of messages) {
|
|
164
|
+
for (const part of message.parts) {
|
|
165
|
+
if (part.type !== "tool-result") {
|
|
166
|
+
continue;
|
|
167
|
+
}
|
|
168
|
+
const partResult = "result" in part ? part.result : null;
|
|
169
|
+
const result = isRecord(partResult) ? partResult : null;
|
|
170
|
+
const path = typeof result?.path === "string" ? result.path : null;
|
|
171
|
+
if (path) {
|
|
172
|
+
paths.add(path);
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
return [...paths];
|
|
177
|
+
}
|
|
178
|
+
function buildRecoverablePriorWorkState(messages) {
|
|
179
|
+
const paths = collectToolResultPaths(messages);
|
|
180
|
+
if (paths.length === 0) {
|
|
181
|
+
return null;
|
|
182
|
+
}
|
|
183
|
+
const previewPaths = paths.slice(0, 8);
|
|
184
|
+
const suffix = paths.length > previewPaths.length
|
|
185
|
+
? ` and ${paths.length - previewPaths.length} more`
|
|
186
|
+
: "";
|
|
187
|
+
const text = `Completed child tool work. Project artifact(s): ${previewPaths.join(", ")}${suffix}.`;
|
|
188
|
+
return {
|
|
189
|
+
text,
|
|
190
|
+
toolCalls: new Map(),
|
|
191
|
+
messages: [
|
|
192
|
+
{
|
|
193
|
+
role: "assistant",
|
|
194
|
+
parts: [{ type: "text", text }],
|
|
195
|
+
},
|
|
196
|
+
],
|
|
197
|
+
};
|
|
198
|
+
}
|
|
199
|
+
function hasFallbackStepContent(state) {
|
|
200
|
+
return state.text.trim().length > 0 || state.toolCalls.size > 0;
|
|
201
|
+
}
|
|
202
|
+
function buildFallbackAgentResponse(input) {
|
|
203
|
+
return {
|
|
204
|
+
text: input.state.text,
|
|
205
|
+
messages: buildFallbackAgentRuntimeMessages(input.baseMessages, input.state),
|
|
206
|
+
toolCalls: [...input.state.toolCalls.values()].map((toolCall) => ({
|
|
207
|
+
id: toolCall.toolCallId,
|
|
208
|
+
name: toolCall.toolName,
|
|
209
|
+
args: parseToolInputObject(toolCall.input),
|
|
210
|
+
status: toolCall.status,
|
|
211
|
+
...(toolCall.status === "completed" ? { result: toolCall.output } : {}),
|
|
212
|
+
...(toolCall.status === "error" && toolCall.errorText ? { error: toolCall.errorText } : {}),
|
|
213
|
+
})),
|
|
214
|
+
metadata: {},
|
|
215
|
+
status: "completed",
|
|
216
|
+
};
|
|
217
|
+
}
|
|
218
|
+
/** Response payload for resolve fork step. */
|
|
219
|
+
export async function resolveForkStepResponse(input) {
|
|
220
|
+
const resolvedResponse = await resolveHostedChildPromiseWithTimeout(input.responsePromise, input.responseTimeoutMs);
|
|
221
|
+
if (resolvedResponse !== HOSTED_CHILD_STREAM_TIMEOUT_TOKEN) {
|
|
222
|
+
return resolvedResponse;
|
|
223
|
+
}
|
|
224
|
+
if (input.abortSignal?.aborted) {
|
|
225
|
+
throw createAgentRuntimeForkAbortError(input.abortSignal);
|
|
226
|
+
}
|
|
227
|
+
if (input.streamedStepState.streamError) {
|
|
228
|
+
throw input.streamedStepState.streamError;
|
|
229
|
+
}
|
|
230
|
+
const fallbackState = hasFallbackStepContent(input.streamedStepState)
|
|
231
|
+
? input.streamedStepState
|
|
232
|
+
: buildRecoverablePriorWorkState(input.currentMessages);
|
|
233
|
+
if (!fallbackState) {
|
|
234
|
+
throw new Error("Agent runtime fork stream ended without onFinish and without recoverable output.");
|
|
235
|
+
}
|
|
236
|
+
return buildFallbackAgentResponse({
|
|
237
|
+
baseMessages: input.currentMessages,
|
|
238
|
+
state: fallbackState,
|
|
239
|
+
});
|
|
240
|
+
}
|
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { type HostToolSet, type HostToolTraceAttributes, type Tool, type TraceHostToolsOptions } from "../../tool/index.js";
|
|
2
|
-
import type { AgUiRuntimeStreamEvent } from "../ag-ui/browser-encoder.js";
|
|
3
2
|
import type { AgentResponse, Message as AgentMessage } from "../schemas/index.js";
|
|
3
|
+
export { buildRecoveredStepParts, createForkRuntimeStreamMappingState, createFrameworkStreamState, mapAgUiRuntimeEventToForkParts, mapFrameworkEventToForkParts, } from "./fork-runtime-part-mapper.js";
|
|
4
|
+
export { applyPartToStreamedStepState, createStreamedStepState, resolveForkStepResponse, } from "./fork-runtime-step-state.js";
|
|
5
|
+
export type { ForkRecoveredPartsState, ForkRuntimeStreamMappingState, FrameworkStreamState, RecoveredToolObservation, } from "./fork-runtime-part-mapper.js";
|
|
6
|
+
export type { StreamedStepState } from "./fork-runtime-step-state.js";
|
|
4
7
|
interface ForkStreamPart {
|
|
5
8
|
type: "reasoning-delta" | "text-delta";
|
|
6
9
|
text: string;
|
|
@@ -56,55 +59,6 @@ export interface ForkRuntimeStep {
|
|
|
56
59
|
}>;
|
|
57
60
|
finishReason: string | null;
|
|
58
61
|
}
|
|
59
|
-
interface RecoveredToolObservation {
|
|
60
|
-
sawInputStart: boolean;
|
|
61
|
-
sawInputDelta: boolean;
|
|
62
|
-
sawInputAvailable: boolean;
|
|
63
|
-
sawOutputAvailable: boolean;
|
|
64
|
-
sawOutputError: boolean;
|
|
65
|
-
}
|
|
66
|
-
/** State for fork recovered parts. */
|
|
67
|
-
export interface ForkRecoveredPartsState {
|
|
68
|
-
toolCalls: Map<string, RecoveredToolObservation>;
|
|
69
|
-
emittedToolCallIds: Set<string>;
|
|
70
|
-
emittedToolResultIds: Set<string>;
|
|
71
|
-
logger?: ForkRuntimeStreamLogger;
|
|
72
|
-
}
|
|
73
|
-
type ForkRuntimeToolCallState = RecoveredToolObservation & {
|
|
74
|
-
toolName: string;
|
|
75
|
-
inputText: string;
|
|
76
|
-
input: Record<string, unknown>;
|
|
77
|
-
};
|
|
78
|
-
type StreamedToolCallState = {
|
|
79
|
-
toolCallId: string;
|
|
80
|
-
toolName: string;
|
|
81
|
-
inputText: string;
|
|
82
|
-
input: unknown;
|
|
83
|
-
status: "pending" | "completed" | "error";
|
|
84
|
-
output?: unknown;
|
|
85
|
-
errorText?: string;
|
|
86
|
-
};
|
|
87
|
-
type StreamedMessage = {
|
|
88
|
-
role: "assistant" | "tool";
|
|
89
|
-
parts: AgentMessage["parts"];
|
|
90
|
-
};
|
|
91
|
-
type StreamedStepState = {
|
|
92
|
-
text: string;
|
|
93
|
-
toolCalls: Map<string, StreamedToolCallState>;
|
|
94
|
-
messages: StreamedMessage[];
|
|
95
|
-
streamError?: Error;
|
|
96
|
-
};
|
|
97
|
-
/** State for fork runtime stream mapping. */
|
|
98
|
-
export type ForkRuntimeStreamMappingState = {
|
|
99
|
-
toolCalls: Map<string, ForkRuntimeToolCallState>;
|
|
100
|
-
emittedToolCallIds: Set<string>;
|
|
101
|
-
emittedToolResultIds: Set<string>;
|
|
102
|
-
logger?: ForkRuntimeStreamLogger;
|
|
103
|
-
};
|
|
104
|
-
/** State for framework stream.
|
|
105
|
-
* @deprecated Use ForkRuntimeStreamMappingState.
|
|
106
|
-
*/
|
|
107
|
-
export type FrameworkStreamState = ForkRuntimeStreamMappingState;
|
|
108
62
|
/** Public API contract for fork part. */
|
|
109
63
|
export type ForkPart = ForkStreamPart | ForkToolInputStartPart | ForkToolInputDeltaPart | ForkToolCallPart | ForkToolResultPart | ForkToolErrorPart | ForkErrorPart;
|
|
110
64
|
/** Public API contract for fork runtime stream logger. */
|
|
@@ -241,35 +195,4 @@ export declare function resolveForkRuntimeContinuationState(input: {
|
|
|
241
195
|
} | null>;
|
|
242
196
|
/** Starts agent runtime fork. */
|
|
243
197
|
export declare function startAgentRuntimeFork(input: StartAgentRuntimeForkInput): ForkRuntimeStreamResult;
|
|
244
|
-
/** State for create streamed step. */
|
|
245
|
-
export declare function createStreamedStepState(): StreamedStepState;
|
|
246
|
-
/** State for apply part to streamed step. */
|
|
247
|
-
export declare function applyPartToStreamedStepState(state: StreamedStepState, part: ForkPart): void;
|
|
248
|
-
/** Response payload for resolve fork step. */
|
|
249
|
-
export declare function resolveForkStepResponse(input: {
|
|
250
|
-
responsePromise: Promise<AgentResponse>;
|
|
251
|
-
responseTimeoutMs: number;
|
|
252
|
-
abortSignal?: AbortSignal;
|
|
253
|
-
currentMessages: readonly AgentMessage[];
|
|
254
|
-
streamedStepState: StreamedStepState;
|
|
255
|
-
}): Promise<AgentResponse>;
|
|
256
|
-
/** Builds recovered step parts. */
|
|
257
|
-
export declare function buildRecoveredStepParts(step: ForkRuntimeStep, state: ForkRecoveredPartsState): Array<ForkToolCallPart | ForkToolResultPart>;
|
|
258
|
-
/** State for create fork runtime stream mapping. */
|
|
259
|
-
export declare function createForkRuntimeStreamMappingState(input?: {
|
|
260
|
-
logger?: ForkRuntimeStreamLogger;
|
|
261
|
-
}): ForkRuntimeStreamMappingState;
|
|
262
|
-
/** Map AG-UI runtime event to fork parts. */
|
|
263
|
-
export declare function mapAgUiRuntimeEventToForkParts(event: AgUiRuntimeStreamEvent, state: ForkRuntimeStreamMappingState): ForkPart[];
|
|
264
|
-
/** State for create framework stream.
|
|
265
|
-
* @deprecated Use createForkRuntimeStreamMappingState.
|
|
266
|
-
*/
|
|
267
|
-
export declare function createFrameworkStreamState(input?: {
|
|
268
|
-
logger?: ForkRuntimeStreamLogger;
|
|
269
|
-
}): ForkRuntimeStreamMappingState;
|
|
270
|
-
/** Handles map framework event to fork parts.
|
|
271
|
-
* @deprecated Use mapAgUiRuntimeEventToForkParts.
|
|
272
|
-
*/
|
|
273
|
-
export declare function mapFrameworkEventToForkParts(event: AgUiRuntimeStreamEvent, state: ForkRuntimeStreamMappingState): ForkPart[];
|
|
274
|
-
export {};
|
|
275
198
|
//# sourceMappingURL=fork-runtime-stream.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fork-runtime-stream.d.ts","sourceRoot":"","sources":["../../../../src/src/agent/streaming/fork-runtime-stream.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,KAAK,WAAW,EAChB,KAAK,uBAAuB,EAC5B,KAAK,IAAI,EAET,KAAK,qBAAqB,EAC3B,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"fork-runtime-stream.d.ts","sourceRoot":"","sources":["../../../../src/src/agent/streaming/fork-runtime-stream.ts"],"names":[],"mappings":"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"}
|