veryfront 0.1.233 → 0.1.235
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/deno.d.ts +1 -0
- package/esm/deno.js +2 -1
- package/esm/src/agent/durable.d.ts +102 -0
- package/esm/src/agent/durable.d.ts.map +1 -1
- package/esm/src/agent/durable.js +258 -12
- package/esm/src/agent/index.d.ts +2 -1
- package/esm/src/agent/index.d.ts.map +1 -1
- package/esm/src/agent/index.js +2 -1
- package/esm/src/agent/invoke-agent-child-runs.d.ts +145 -0
- package/esm/src/agent/invoke-agent-child-runs.d.ts.map +1 -0
- package/esm/src/agent/invoke-agent-child-runs.js +101 -0
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +5 -1
- package/src/deno.js +2 -1
- package/src/src/agent/durable.ts +358 -12
- package/src/src/agent/index.ts +28 -0
- package/src/src/agent/invoke-agent-child-runs.ts +170 -0
- package/src/src/utils/version-constant.ts +1 -1
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import "../../_dnt.polyfills.js";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
export declare const InvokeAgentChildRunLifecycleValueSchema: z.ZodObject<{
|
|
4
|
+
toolCallId: z.ZodString;
|
|
5
|
+
childConversationId: z.ZodString;
|
|
6
|
+
childRunId: z.ZodString;
|
|
7
|
+
childMessageId: z.ZodString;
|
|
8
|
+
childAgentId: z.ZodString;
|
|
9
|
+
description: z.ZodOptional<z.ZodString>;
|
|
10
|
+
status: z.ZodEnum<{
|
|
11
|
+
failed: "failed";
|
|
12
|
+
pending: "pending";
|
|
13
|
+
completed: "completed";
|
|
14
|
+
running: "running";
|
|
15
|
+
cancelled: "cancelled";
|
|
16
|
+
waiting_for_tool: "waiting_for_tool";
|
|
17
|
+
}>;
|
|
18
|
+
sourceTargetKind: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
19
|
+
project: "project";
|
|
20
|
+
production: "production";
|
|
21
|
+
environment: "environment";
|
|
22
|
+
preview_branch: "preview_branch";
|
|
23
|
+
}>>>;
|
|
24
|
+
runtimeTargetKind: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
25
|
+
production: "production";
|
|
26
|
+
environment: "environment";
|
|
27
|
+
preview_branch: "preview_branch";
|
|
28
|
+
}>>>;
|
|
29
|
+
targetEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30
|
+
targetBranchId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31
|
+
}, z.core.$strip>;
|
|
32
|
+
export type InvokeAgentChildRunLifecycleValue = z.infer<typeof InvokeAgentChildRunLifecycleValueSchema>;
|
|
33
|
+
export declare const InvokeAgentChildRunStateDeltaSchema: z.ZodObject<{
|
|
34
|
+
type: z.ZodLiteral<"STATE_DELTA">;
|
|
35
|
+
delta: z.ZodArray<z.ZodObject<{
|
|
36
|
+
op: z.ZodEnum<{
|
|
37
|
+
replace: "replace";
|
|
38
|
+
add: "add";
|
|
39
|
+
}>;
|
|
40
|
+
path: z.ZodString;
|
|
41
|
+
value: z.ZodObject<{
|
|
42
|
+
toolCallId: z.ZodString;
|
|
43
|
+
childConversationId: z.ZodString;
|
|
44
|
+
childRunId: z.ZodString;
|
|
45
|
+
childMessageId: z.ZodString;
|
|
46
|
+
childAgentId: z.ZodString;
|
|
47
|
+
description: z.ZodOptional<z.ZodString>;
|
|
48
|
+
status: z.ZodEnum<{
|
|
49
|
+
failed: "failed";
|
|
50
|
+
pending: "pending";
|
|
51
|
+
completed: "completed";
|
|
52
|
+
running: "running";
|
|
53
|
+
cancelled: "cancelled";
|
|
54
|
+
waiting_for_tool: "waiting_for_tool";
|
|
55
|
+
}>;
|
|
56
|
+
sourceTargetKind: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
57
|
+
project: "project";
|
|
58
|
+
production: "production";
|
|
59
|
+
environment: "environment";
|
|
60
|
+
preview_branch: "preview_branch";
|
|
61
|
+
}>>>;
|
|
62
|
+
runtimeTargetKind: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
63
|
+
production: "production";
|
|
64
|
+
environment: "environment";
|
|
65
|
+
preview_branch: "preview_branch";
|
|
66
|
+
}>>>;
|
|
67
|
+
targetEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
68
|
+
targetBranchId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
69
|
+
}, z.core.$strip>;
|
|
70
|
+
}, z.core.$strip>>;
|
|
71
|
+
}, z.core.$strip>;
|
|
72
|
+
export type InvokeAgentChildRunStateDelta = z.infer<typeof InvokeAgentChildRunStateDeltaSchema>;
|
|
73
|
+
export declare const InvokeAgentChildRunLifecycleCustomEventSchema: z.ZodObject<{
|
|
74
|
+
type: z.ZodLiteral<"CUSTOM">;
|
|
75
|
+
name: z.ZodLiteral<"veryfront.invoke_agent.lifecycle">;
|
|
76
|
+
value: z.ZodObject<{
|
|
77
|
+
toolCallId: z.ZodString;
|
|
78
|
+
childConversationId: z.ZodString;
|
|
79
|
+
childRunId: z.ZodString;
|
|
80
|
+
childMessageId: z.ZodString;
|
|
81
|
+
childAgentId: z.ZodString;
|
|
82
|
+
description: z.ZodOptional<z.ZodString>;
|
|
83
|
+
status: z.ZodEnum<{
|
|
84
|
+
failed: "failed";
|
|
85
|
+
pending: "pending";
|
|
86
|
+
completed: "completed";
|
|
87
|
+
running: "running";
|
|
88
|
+
cancelled: "cancelled";
|
|
89
|
+
waiting_for_tool: "waiting_for_tool";
|
|
90
|
+
}>;
|
|
91
|
+
sourceTargetKind: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
92
|
+
project: "project";
|
|
93
|
+
production: "production";
|
|
94
|
+
environment: "environment";
|
|
95
|
+
preview_branch: "preview_branch";
|
|
96
|
+
}>>>;
|
|
97
|
+
runtimeTargetKind: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
98
|
+
production: "production";
|
|
99
|
+
environment: "environment";
|
|
100
|
+
preview_branch: "preview_branch";
|
|
101
|
+
}>>>;
|
|
102
|
+
targetEnvironmentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
103
|
+
targetBranchId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
104
|
+
}, z.core.$strip>;
|
|
105
|
+
}, z.core.$strip>;
|
|
106
|
+
export type InvokeAgentChildRunLifecycleCustomEvent = z.infer<typeof InvokeAgentChildRunLifecycleCustomEventSchema>;
|
|
107
|
+
export type InvokeAgentChildRunProgressInput = {
|
|
108
|
+
toolCallId: string;
|
|
109
|
+
childConversationId: string;
|
|
110
|
+
childRunId: string;
|
|
111
|
+
childMessageId: string;
|
|
112
|
+
childAgentId: string;
|
|
113
|
+
description?: string;
|
|
114
|
+
status: "pending" | "running" | "waiting_for_tool" | "completed" | "failed" | "cancelled";
|
|
115
|
+
sourceTargetKind?: "project" | "production" | "environment" | "preview_branch" | null;
|
|
116
|
+
runtimeTargetKind?: "production" | "environment" | "preview_branch" | null;
|
|
117
|
+
targetEnvironmentId?: string | null;
|
|
118
|
+
targetBranchId?: string | null;
|
|
119
|
+
};
|
|
120
|
+
export type InvokeAgentChildRunProgressEvent = InvokeAgentChildRunStateDelta | InvokeAgentChildRunLifecycleCustomEvent;
|
|
121
|
+
export declare function buildInvokeAgentChildRunStateDelta(input: InvokeAgentChildRunProgressInput): InvokeAgentChildRunStateDelta;
|
|
122
|
+
export declare function buildInvokeAgentChildRunLifecycleCustomEvent(input: InvokeAgentChildRunProgressInput): InvokeAgentChildRunLifecycleCustomEvent;
|
|
123
|
+
export declare function buildInvokeAgentChildRunProgressEvents(input: InvokeAgentChildRunProgressInput): readonly [InvokeAgentChildRunStateDelta, InvokeAgentChildRunLifecycleCustomEvent];
|
|
124
|
+
export declare function publishInvokeAgentChildRunProgress(input: {
|
|
125
|
+
authToken: string;
|
|
126
|
+
apiUrl: string;
|
|
127
|
+
conversationId: string;
|
|
128
|
+
runId: string;
|
|
129
|
+
expectedPreviousEventId?: number;
|
|
130
|
+
expectedPreviousExternalEventSequence?: number;
|
|
131
|
+
toolCallId: string;
|
|
132
|
+
childAgentId: string;
|
|
133
|
+
childConversationId: string;
|
|
134
|
+
childRunId: string;
|
|
135
|
+
childMessageId: string;
|
|
136
|
+
description?: string;
|
|
137
|
+
status: "pending" | "running" | "waiting_for_tool" | "completed" | "failed" | "cancelled";
|
|
138
|
+
sourceTargetKind?: "project" | "production" | "environment" | "preview_branch" | null;
|
|
139
|
+
runtimeTargetKind?: "production" | "environment" | "preview_branch" | null;
|
|
140
|
+
targetEnvironmentId?: string | null;
|
|
141
|
+
targetBranchId?: string | null;
|
|
142
|
+
publishParentRunEvents?: (events: InvokeAgentChildRunProgressEvent[]) => Promise<void> | void;
|
|
143
|
+
abortSignal?: AbortSignal;
|
|
144
|
+
}): Promise<void>;
|
|
145
|
+
//# sourceMappingURL=invoke-agent-child-runs.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"invoke-agent-child-runs.d.ts","sourceRoot":"","sources":["../../../src/src/agent/invoke-agent-child-runs.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import "../../_dnt.polyfills.js";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
import { appendConversationRunEvents, isIgnorableConversationRunAppendError } from "./durable.js";
|
|
4
|
+
const AG_UI_CUSTOM_EVENT_TYPE = "CUSTOM";
|
|
5
|
+
export const InvokeAgentChildRunLifecycleValueSchema = z.object({
|
|
6
|
+
toolCallId: z.string().min(1),
|
|
7
|
+
childConversationId: z.string().uuid(),
|
|
8
|
+
childRunId: z.string().min(1),
|
|
9
|
+
childMessageId: z.string().uuid(),
|
|
10
|
+
childAgentId: z.string().min(1),
|
|
11
|
+
description: z.string().min(1).optional(),
|
|
12
|
+
status: z.enum(["pending", "running", "waiting_for_tool", "completed", "failed", "cancelled"]),
|
|
13
|
+
sourceTargetKind: z.enum(["project", "production", "environment", "preview_branch"]).nullable()
|
|
14
|
+
.optional(),
|
|
15
|
+
runtimeTargetKind: z.enum(["production", "environment", "preview_branch"]).nullable().optional(),
|
|
16
|
+
targetEnvironmentId: z.string().uuid().nullable().optional(),
|
|
17
|
+
targetBranchId: z.string().uuid().nullable().optional(),
|
|
18
|
+
});
|
|
19
|
+
export const InvokeAgentChildRunStateDeltaSchema = z.object({
|
|
20
|
+
type: z.literal("STATE_DELTA"),
|
|
21
|
+
delta: z.array(z.object({
|
|
22
|
+
op: z.enum(["add", "replace"]),
|
|
23
|
+
path: z.string().min(1),
|
|
24
|
+
value: InvokeAgentChildRunLifecycleValueSchema,
|
|
25
|
+
})),
|
|
26
|
+
});
|
|
27
|
+
export const InvokeAgentChildRunLifecycleCustomEventSchema = z.object({
|
|
28
|
+
type: z.literal(AG_UI_CUSTOM_EVENT_TYPE),
|
|
29
|
+
name: z.literal("veryfront.invoke_agent.lifecycle"),
|
|
30
|
+
value: InvokeAgentChildRunLifecycleValueSchema,
|
|
31
|
+
});
|
|
32
|
+
function buildInvokeAgentChildRunLifecycleValue(input) {
|
|
33
|
+
return InvokeAgentChildRunLifecycleValueSchema.parse({
|
|
34
|
+
toolCallId: input.toolCallId,
|
|
35
|
+
childConversationId: input.childConversationId,
|
|
36
|
+
childRunId: input.childRunId,
|
|
37
|
+
childMessageId: input.childMessageId,
|
|
38
|
+
childAgentId: input.childAgentId,
|
|
39
|
+
...(input.description ? { description: input.description } : {}),
|
|
40
|
+
status: input.status,
|
|
41
|
+
...(input.sourceTargetKind !== undefined ? { sourceTargetKind: input.sourceTargetKind } : {}),
|
|
42
|
+
...(input.runtimeTargetKind !== undefined
|
|
43
|
+
? { runtimeTargetKind: input.runtimeTargetKind }
|
|
44
|
+
: {}),
|
|
45
|
+
...(input.targetEnvironmentId !== undefined
|
|
46
|
+
? { targetEnvironmentId: input.targetEnvironmentId }
|
|
47
|
+
: {}),
|
|
48
|
+
...(input.targetBranchId !== undefined ? { targetBranchId: input.targetBranchId } : {}),
|
|
49
|
+
});
|
|
50
|
+
}
|
|
51
|
+
export function buildInvokeAgentChildRunStateDelta(input) {
|
|
52
|
+
const escapedToolCallId = input.toolCallId.replaceAll("~", "~0").replaceAll("/", "~1");
|
|
53
|
+
return InvokeAgentChildRunStateDeltaSchema.parse({
|
|
54
|
+
type: "STATE_DELTA",
|
|
55
|
+
delta: [
|
|
56
|
+
{
|
|
57
|
+
op: input.status === "pending" ? "add" : "replace",
|
|
58
|
+
path: `/invokeAgentChildRuns/${escapedToolCallId}`,
|
|
59
|
+
value: buildInvokeAgentChildRunLifecycleValue(input),
|
|
60
|
+
},
|
|
61
|
+
],
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
export function buildInvokeAgentChildRunLifecycleCustomEvent(input) {
|
|
65
|
+
return InvokeAgentChildRunLifecycleCustomEventSchema.parse({
|
|
66
|
+
type: AG_UI_CUSTOM_EVENT_TYPE,
|
|
67
|
+
name: "veryfront.invoke_agent.lifecycle",
|
|
68
|
+
value: buildInvokeAgentChildRunLifecycleValue(input),
|
|
69
|
+
});
|
|
70
|
+
}
|
|
71
|
+
export function buildInvokeAgentChildRunProgressEvents(input) {
|
|
72
|
+
return [
|
|
73
|
+
buildInvokeAgentChildRunStateDelta(input),
|
|
74
|
+
buildInvokeAgentChildRunLifecycleCustomEvent(input),
|
|
75
|
+
];
|
|
76
|
+
}
|
|
77
|
+
export async function publishInvokeAgentChildRunProgress(input) {
|
|
78
|
+
const events = [...buildInvokeAgentChildRunProgressEvents(input)];
|
|
79
|
+
if (input.publishParentRunEvents) {
|
|
80
|
+
await input.publishParentRunEvents(events);
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
try {
|
|
84
|
+
await appendConversationRunEvents({
|
|
85
|
+
authToken: input.authToken,
|
|
86
|
+
apiUrl: input.apiUrl,
|
|
87
|
+
conversationId: input.conversationId,
|
|
88
|
+
runId: input.runId,
|
|
89
|
+
expectedPreviousEventId: input.expectedPreviousEventId,
|
|
90
|
+
expectedPreviousExternalEventSequence: input.expectedPreviousExternalEventSequence,
|
|
91
|
+
events,
|
|
92
|
+
abortSignal: input.abortSignal,
|
|
93
|
+
});
|
|
94
|
+
}
|
|
95
|
+
catch (error) {
|
|
96
|
+
if (isIgnorableConversationRunAppendError(error)) {
|
|
97
|
+
return;
|
|
98
|
+
}
|
|
99
|
+
throw error;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.235";
|
|
2
2
|
//# sourceMappingURL=version-constant.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "veryfront",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.235",
|
|
4
4
|
"description": "The simplest way to build AI-powered apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -77,6 +77,10 @@
|
|
|
77
77
|
"import": "./esm/src/agent/durable.js",
|
|
78
78
|
"types": "./esm/src/agent/durable.d.ts"
|
|
79
79
|
},
|
|
80
|
+
"./agent/invoke-agent-child-runs": {
|
|
81
|
+
"import": "./esm/src/agent/invoke-agent-child-runs.js",
|
|
82
|
+
"types": "./esm/src/agent/invoke-agent-child-runs.d.ts"
|
|
83
|
+
},
|
|
80
84
|
"./channels/control-plane": {
|
|
81
85
|
"import": "./esm/src/channels/control-plane.js",
|
|
82
86
|
"types": "./esm/src/channels/control-plane.d.ts"
|
package/src/deno.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"name": "veryfront",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.235",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"nodeModulesDir": "auto",
|
|
6
6
|
"workspace": [
|
|
@@ -32,6 +32,7 @@ export default {
|
|
|
32
32
|
"./agent": "./src/agent/index.ts",
|
|
33
33
|
"./agent/conversation-bootstrap": "./src/agent/conversation-bootstrap.ts",
|
|
34
34
|
"./agent/durable": "./src/agent/durable.ts",
|
|
35
|
+
"./agent/invoke-agent-child-runs": "./src/agent/invoke-agent-child-runs.ts",
|
|
35
36
|
"./channels/control-plane": "./src/channels/control-plane.ts",
|
|
36
37
|
"./channels/invoke": "./src/channels/invoke.ts",
|
|
37
38
|
"./tool": "./src/tool/index.ts",
|