@mastra/client-js 0.0.0-commonjs-20250227130920 → 0.0.0-consolidate-changesets-20250904042643
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 +2554 -4
- package/LICENSE.md +15 -0
- package/README.md +12 -6
- package/dist/adapters/agui.d.ts +23 -0
- package/dist/adapters/agui.d.ts.map +1 -0
- package/dist/client.d.ts +284 -0
- package/dist/client.d.ts.map +1 -0
- package/dist/example.d.ts +2 -0
- package/dist/example.d.ts.map +1 -0
- package/dist/index.cjs +3038 -97
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +4 -405
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +3037 -100
- package/dist/index.js.map +1 -0
- package/dist/resources/a2a.d.ts +41 -0
- package/dist/resources/a2a.d.ts.map +1 -0
- package/dist/resources/agent-builder.d.ts +148 -0
- package/dist/resources/agent-builder.d.ts.map +1 -0
- package/dist/resources/agent.d.ts +155 -0
- package/dist/resources/agent.d.ts.map +1 -0
- package/dist/resources/base.d.ts +13 -0
- package/dist/resources/base.d.ts.map +1 -0
- package/dist/resources/index.d.ts +13 -0
- package/dist/resources/index.d.ts.map +1 -0
- package/dist/resources/legacy-workflow.d.ts +87 -0
- package/dist/resources/legacy-workflow.d.ts.map +1 -0
- package/dist/resources/mcp-tool.d.ts +27 -0
- package/dist/resources/mcp-tool.d.ts.map +1 -0
- package/dist/resources/memory-thread.d.ts +53 -0
- package/dist/resources/memory-thread.d.ts.map +1 -0
- package/dist/resources/network-memory-thread.d.ts +47 -0
- package/dist/resources/network-memory-thread.d.ts.map +1 -0
- package/dist/resources/network.d.ts +30 -0
- package/dist/resources/network.d.ts.map +1 -0
- package/dist/resources/observability.d.ts +19 -0
- package/dist/resources/observability.d.ts.map +1 -0
- package/dist/resources/tool.d.ts +23 -0
- package/dist/resources/tool.d.ts.map +1 -0
- package/dist/resources/vNextNetwork.d.ts +42 -0
- package/dist/resources/vNextNetwork.d.ts.map +1 -0
- package/dist/resources/vector.d.ts +48 -0
- package/dist/resources/vector.d.ts.map +1 -0
- package/dist/resources/workflow.d.ts +154 -0
- package/dist/resources/workflow.d.ts.map +1 -0
- package/dist/types.d.ts +482 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/process-client-tools.d.ts +3 -0
- package/dist/utils/process-client-tools.d.ts.map +1 -0
- package/dist/utils/process-mastra-stream.d.ts +7 -0
- package/dist/utils/process-mastra-stream.d.ts.map +1 -0
- package/dist/utils/zod-to-json-schema.d.ts +3 -0
- package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
- package/package.json +43 -17
- package/.turbo/turbo-build.log +0 -19
- package/LICENSE +0 -44
- package/dist/index.d.cts +0 -405
- package/eslint.config.js +0 -6
- package/src/client.ts +0 -205
- package/src/example.ts +0 -43
- package/src/index.test.ts +0 -597
- package/src/index.ts +0 -2
- package/src/resources/agent.ts +0 -116
- package/src/resources/base.ts +0 -68
- package/src/resources/index.ts +0 -6
- package/src/resources/memory-thread.ts +0 -60
- package/src/resources/tool.ts +0 -32
- package/src/resources/vector.ts +0 -83
- package/src/resources/workflow.ts +0 -68
- package/src/types.ts +0 -163
- package/tsconfig.json +0 -5
- package/vitest.config.js +0 -8
package/dist/index.js
CHANGED
|
@@ -1,7 +1,298 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { AbstractAgent, EventType } from '@ag-ui/client';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { processDataStream, parsePartialJson } from '@ai-sdk/ui-utils';
|
|
4
|
+
import { v4 } from '@lukeed/uuid';
|
|
5
|
+
import { RuntimeContext } from '@mastra/core/runtime-context';
|
|
6
|
+
import { isVercelTool } from '@mastra/core/tools/is-vercel-tool';
|
|
7
|
+
import { z } from 'zod';
|
|
8
|
+
import originalZodToJsonSchema from 'zod-to-json-schema';
|
|
3
9
|
|
|
4
|
-
// src/
|
|
10
|
+
// src/adapters/agui.ts
|
|
11
|
+
var AGUIAdapter = class extends AbstractAgent {
|
|
12
|
+
agent;
|
|
13
|
+
resourceId;
|
|
14
|
+
constructor({ agent, agentId, resourceId, ...rest }) {
|
|
15
|
+
super({
|
|
16
|
+
agentId,
|
|
17
|
+
...rest
|
|
18
|
+
});
|
|
19
|
+
this.agent = agent;
|
|
20
|
+
this.resourceId = resourceId;
|
|
21
|
+
}
|
|
22
|
+
run(input) {
|
|
23
|
+
return new Observable((subscriber) => {
|
|
24
|
+
const convertedMessages = convertMessagesToMastraMessages(input.messages);
|
|
25
|
+
subscriber.next({
|
|
26
|
+
type: EventType.RUN_STARTED,
|
|
27
|
+
threadId: input.threadId,
|
|
28
|
+
runId: input.runId
|
|
29
|
+
});
|
|
30
|
+
this.agent.stream({
|
|
31
|
+
threadId: input.threadId,
|
|
32
|
+
resourceId: this.resourceId ?? "",
|
|
33
|
+
runId: input.runId,
|
|
34
|
+
messages: convertedMessages,
|
|
35
|
+
clientTools: input.tools.reduce(
|
|
36
|
+
(acc, tool) => {
|
|
37
|
+
acc[tool.name] = {
|
|
38
|
+
id: tool.name,
|
|
39
|
+
description: tool.description,
|
|
40
|
+
inputSchema: tool.parameters
|
|
41
|
+
};
|
|
42
|
+
return acc;
|
|
43
|
+
},
|
|
44
|
+
{}
|
|
45
|
+
)
|
|
46
|
+
}).then((response) => {
|
|
47
|
+
let currentMessageId = void 0;
|
|
48
|
+
let isInTextMessage = false;
|
|
49
|
+
return response.processDataStream({
|
|
50
|
+
onTextPart: (text) => {
|
|
51
|
+
if (currentMessageId === void 0) {
|
|
52
|
+
currentMessageId = generateUUID();
|
|
53
|
+
const message2 = {
|
|
54
|
+
type: EventType.TEXT_MESSAGE_START,
|
|
55
|
+
messageId: currentMessageId,
|
|
56
|
+
role: "assistant"
|
|
57
|
+
};
|
|
58
|
+
subscriber.next(message2);
|
|
59
|
+
isInTextMessage = true;
|
|
60
|
+
}
|
|
61
|
+
const message = {
|
|
62
|
+
type: EventType.TEXT_MESSAGE_CONTENT,
|
|
63
|
+
messageId: currentMessageId,
|
|
64
|
+
delta: text
|
|
65
|
+
};
|
|
66
|
+
subscriber.next(message);
|
|
67
|
+
},
|
|
68
|
+
onFinishMessagePart: () => {
|
|
69
|
+
if (currentMessageId !== void 0) {
|
|
70
|
+
const message = {
|
|
71
|
+
type: EventType.TEXT_MESSAGE_END,
|
|
72
|
+
messageId: currentMessageId
|
|
73
|
+
};
|
|
74
|
+
subscriber.next(message);
|
|
75
|
+
isInTextMessage = false;
|
|
76
|
+
}
|
|
77
|
+
subscriber.next({
|
|
78
|
+
type: EventType.RUN_FINISHED,
|
|
79
|
+
threadId: input.threadId,
|
|
80
|
+
runId: input.runId
|
|
81
|
+
});
|
|
82
|
+
subscriber.complete();
|
|
83
|
+
},
|
|
84
|
+
onToolCallPart(streamPart) {
|
|
85
|
+
const parentMessageId = currentMessageId || generateUUID();
|
|
86
|
+
if (isInTextMessage) {
|
|
87
|
+
const message = {
|
|
88
|
+
type: EventType.TEXT_MESSAGE_END,
|
|
89
|
+
messageId: parentMessageId
|
|
90
|
+
};
|
|
91
|
+
subscriber.next(message);
|
|
92
|
+
isInTextMessage = false;
|
|
93
|
+
}
|
|
94
|
+
subscriber.next({
|
|
95
|
+
type: EventType.TOOL_CALL_START,
|
|
96
|
+
toolCallId: streamPart.toolCallId,
|
|
97
|
+
toolCallName: streamPart.toolName,
|
|
98
|
+
parentMessageId
|
|
99
|
+
});
|
|
100
|
+
subscriber.next({
|
|
101
|
+
type: EventType.TOOL_CALL_ARGS,
|
|
102
|
+
toolCallId: streamPart.toolCallId,
|
|
103
|
+
delta: JSON.stringify(streamPart.args),
|
|
104
|
+
parentMessageId
|
|
105
|
+
});
|
|
106
|
+
subscriber.next({
|
|
107
|
+
type: EventType.TOOL_CALL_END,
|
|
108
|
+
toolCallId: streamPart.toolCallId,
|
|
109
|
+
parentMessageId
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
});
|
|
113
|
+
}).catch((error) => {
|
|
114
|
+
console.error("error", error);
|
|
115
|
+
subscriber.error(error);
|
|
116
|
+
});
|
|
117
|
+
return () => {
|
|
118
|
+
};
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
};
|
|
122
|
+
function generateUUID() {
|
|
123
|
+
if (typeof crypto !== "undefined") {
|
|
124
|
+
if (typeof crypto.randomUUID === "function") {
|
|
125
|
+
return crypto.randomUUID();
|
|
126
|
+
}
|
|
127
|
+
if (typeof crypto.getRandomValues === "function") {
|
|
128
|
+
const buffer = new Uint8Array(16);
|
|
129
|
+
crypto.getRandomValues(buffer);
|
|
130
|
+
buffer[6] = buffer[6] & 15 | 64;
|
|
131
|
+
buffer[8] = buffer[8] & 63 | 128;
|
|
132
|
+
let hex = "";
|
|
133
|
+
for (let i = 0; i < 16; i++) {
|
|
134
|
+
hex += buffer[i].toString(16).padStart(2, "0");
|
|
135
|
+
if (i === 3 || i === 5 || i === 7 || i === 9) hex += "-";
|
|
136
|
+
}
|
|
137
|
+
return hex;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, (c) => {
|
|
141
|
+
const r = Math.random() * 16 | 0;
|
|
142
|
+
const v = c === "x" ? r : r & 3 | 8;
|
|
143
|
+
return v.toString(16);
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
function convertMessagesToMastraMessages(messages) {
|
|
147
|
+
const result = [];
|
|
148
|
+
const toolCallsWithResults = /* @__PURE__ */ new Set();
|
|
149
|
+
for (const message of messages) {
|
|
150
|
+
if (message.role === "tool" && message.toolCallId) {
|
|
151
|
+
toolCallsWithResults.add(message.toolCallId);
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
for (const message of messages) {
|
|
155
|
+
if (message.role === "assistant") {
|
|
156
|
+
const parts = message.content ? [{ type: "text", text: message.content }] : [];
|
|
157
|
+
for (const toolCall of message.toolCalls ?? []) {
|
|
158
|
+
parts.push({
|
|
159
|
+
type: "tool-call",
|
|
160
|
+
toolCallId: toolCall.id,
|
|
161
|
+
toolName: toolCall.function.name,
|
|
162
|
+
args: JSON.parse(toolCall.function.arguments)
|
|
163
|
+
});
|
|
164
|
+
}
|
|
165
|
+
result.push({
|
|
166
|
+
role: "assistant",
|
|
167
|
+
content: parts
|
|
168
|
+
});
|
|
169
|
+
if (message.toolCalls?.length) {
|
|
170
|
+
for (const toolCall of message.toolCalls) {
|
|
171
|
+
if (!toolCallsWithResults.has(toolCall.id)) {
|
|
172
|
+
result.push({
|
|
173
|
+
role: "tool",
|
|
174
|
+
content: [
|
|
175
|
+
{
|
|
176
|
+
type: "tool-result",
|
|
177
|
+
toolCallId: toolCall.id,
|
|
178
|
+
toolName: toolCall.function.name,
|
|
179
|
+
result: JSON.parse(toolCall.function.arguments)
|
|
180
|
+
// This is still wrong but matches test expectations
|
|
181
|
+
}
|
|
182
|
+
]
|
|
183
|
+
});
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
} else if (message.role === "user") {
|
|
188
|
+
result.push({
|
|
189
|
+
role: "user",
|
|
190
|
+
content: message.content || ""
|
|
191
|
+
});
|
|
192
|
+
} else if (message.role === "tool") {
|
|
193
|
+
result.push({
|
|
194
|
+
role: "tool",
|
|
195
|
+
content: [
|
|
196
|
+
{
|
|
197
|
+
type: "tool-result",
|
|
198
|
+
toolCallId: message.toolCallId || "unknown",
|
|
199
|
+
toolName: "unknown",
|
|
200
|
+
// toolName is not available in tool messages from CopilotKit
|
|
201
|
+
result: message.content
|
|
202
|
+
}
|
|
203
|
+
]
|
|
204
|
+
});
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
return result;
|
|
208
|
+
}
|
|
209
|
+
function parseClientRuntimeContext(runtimeContext) {
|
|
210
|
+
if (runtimeContext) {
|
|
211
|
+
if (runtimeContext instanceof RuntimeContext) {
|
|
212
|
+
return Object.fromEntries(runtimeContext.entries());
|
|
213
|
+
}
|
|
214
|
+
return runtimeContext;
|
|
215
|
+
}
|
|
216
|
+
return void 0;
|
|
217
|
+
}
|
|
218
|
+
function isZodType(value) {
|
|
219
|
+
return typeof value === "object" && value !== null && "_def" in value && "parse" in value && typeof value.parse === "function" && "safeParse" in value && typeof value.safeParse === "function";
|
|
220
|
+
}
|
|
221
|
+
function zodToJsonSchema(zodSchema) {
|
|
222
|
+
if (!isZodType(zodSchema)) {
|
|
223
|
+
return zodSchema;
|
|
224
|
+
}
|
|
225
|
+
if ("toJSONSchema" in z) {
|
|
226
|
+
const fn = "toJSONSchema";
|
|
227
|
+
return z[fn].call(z, zodSchema);
|
|
228
|
+
}
|
|
229
|
+
return originalZodToJsonSchema(zodSchema, { $refStrategy: "none" });
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
// src/utils/process-client-tools.ts
|
|
233
|
+
function processClientTools(clientTools) {
|
|
234
|
+
if (!clientTools) {
|
|
235
|
+
return void 0;
|
|
236
|
+
}
|
|
237
|
+
return Object.fromEntries(
|
|
238
|
+
Object.entries(clientTools).map(([key, value]) => {
|
|
239
|
+
if (isVercelTool(value)) {
|
|
240
|
+
return [
|
|
241
|
+
key,
|
|
242
|
+
{
|
|
243
|
+
...value,
|
|
244
|
+
parameters: value.parameters ? zodToJsonSchema(value.parameters) : void 0
|
|
245
|
+
}
|
|
246
|
+
];
|
|
247
|
+
} else {
|
|
248
|
+
return [
|
|
249
|
+
key,
|
|
250
|
+
{
|
|
251
|
+
...value,
|
|
252
|
+
inputSchema: value.inputSchema ? zodToJsonSchema(value.inputSchema) : void 0,
|
|
253
|
+
outputSchema: value.outputSchema ? zodToJsonSchema(value.outputSchema) : void 0
|
|
254
|
+
}
|
|
255
|
+
];
|
|
256
|
+
}
|
|
257
|
+
})
|
|
258
|
+
);
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
// src/utils/process-mastra-stream.ts
|
|
262
|
+
async function processMastraStream({
|
|
263
|
+
stream,
|
|
264
|
+
onChunk
|
|
265
|
+
}) {
|
|
266
|
+
const reader = stream.getReader();
|
|
267
|
+
const decoder = new TextDecoder();
|
|
268
|
+
let buffer = "";
|
|
269
|
+
try {
|
|
270
|
+
while (true) {
|
|
271
|
+
const { done, value } = await reader.read();
|
|
272
|
+
if (done) break;
|
|
273
|
+
buffer += decoder.decode(value, { stream: true });
|
|
274
|
+
const lines = buffer.split("\n\n");
|
|
275
|
+
buffer = lines.pop() || "";
|
|
276
|
+
for (const line of lines) {
|
|
277
|
+
if (line.startsWith("data: ")) {
|
|
278
|
+
const data = line.slice(6);
|
|
279
|
+
if (data === "[DONE]") {
|
|
280
|
+
console.log("\u{1F3C1} Stream finished");
|
|
281
|
+
return;
|
|
282
|
+
}
|
|
283
|
+
try {
|
|
284
|
+
const json = JSON.parse(data);
|
|
285
|
+
await onChunk(json);
|
|
286
|
+
} catch (error) {
|
|
287
|
+
console.error("\u274C JSON parse error:", error, "Data:", data);
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
} finally {
|
|
293
|
+
reader.releaseLock();
|
|
294
|
+
}
|
|
295
|
+
}
|
|
5
296
|
|
|
6
297
|
// src/resources/base.ts
|
|
7
298
|
var BaseResource = class {
|
|
@@ -17,18 +308,22 @@ var BaseResource = class {
|
|
|
17
308
|
*/
|
|
18
309
|
async request(path, options = {}) {
|
|
19
310
|
let lastError = null;
|
|
20
|
-
const { baseUrl, retries = 3, backoffMs = 100, maxBackoffMs = 1e3, headers = {} } = this.options;
|
|
311
|
+
const { baseUrl, retries = 3, backoffMs = 100, maxBackoffMs = 1e3, headers = {}, credentials } = this.options;
|
|
21
312
|
let delay = backoffMs;
|
|
22
313
|
for (let attempt = 0; attempt <= retries; attempt++) {
|
|
23
314
|
try {
|
|
24
|
-
const response = await fetch(`${baseUrl}${path}`, {
|
|
315
|
+
const response = await fetch(`${baseUrl.replace(/\/$/, "")}${path}`, {
|
|
25
316
|
...options,
|
|
26
317
|
headers: {
|
|
27
|
-
"
|
|
318
|
+
...options.body && !(options.body instanceof FormData) && (options.method === "POST" || options.method === "PUT") ? { "content-type": "application/json" } : {},
|
|
28
319
|
...headers,
|
|
29
320
|
...options.headers
|
|
321
|
+
// TODO: Bring this back once we figure out what we/users need to do to make this work with cross-origin requests
|
|
322
|
+
// 'x-mastra-client-type': 'js',
|
|
30
323
|
},
|
|
31
|
-
|
|
324
|
+
signal: this.options.abortSignal,
|
|
325
|
+
credentials: options.credentials ?? credentials,
|
|
326
|
+
body: options.body instanceof FormData ? options.body : options.body ? JSON.stringify(options.body) : void 0
|
|
32
327
|
});
|
|
33
328
|
if (!response.ok) {
|
|
34
329
|
const errorBody = await response.text();
|
|
@@ -62,11 +357,124 @@ var BaseResource = class {
|
|
|
62
357
|
};
|
|
63
358
|
|
|
64
359
|
// src/resources/agent.ts
|
|
360
|
+
async function executeToolCallAndRespond({
|
|
361
|
+
response,
|
|
362
|
+
params,
|
|
363
|
+
runId,
|
|
364
|
+
resourceId,
|
|
365
|
+
threadId,
|
|
366
|
+
runtimeContext,
|
|
367
|
+
respondFn
|
|
368
|
+
}) {
|
|
369
|
+
if (response.finishReason === "tool-calls") {
|
|
370
|
+
const toolCalls = response.toolCalls;
|
|
371
|
+
if (!toolCalls || !Array.isArray(toolCalls)) {
|
|
372
|
+
return response;
|
|
373
|
+
}
|
|
374
|
+
for (const toolCall of toolCalls) {
|
|
375
|
+
const clientTool = params.clientTools?.[toolCall.toolName];
|
|
376
|
+
if (clientTool && clientTool.execute) {
|
|
377
|
+
const result = await clientTool.execute(
|
|
378
|
+
{
|
|
379
|
+
context: toolCall?.args,
|
|
380
|
+
runId,
|
|
381
|
+
resourceId,
|
|
382
|
+
threadId,
|
|
383
|
+
runtimeContext,
|
|
384
|
+
tracingContext: { currentSpan: void 0 }
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
messages: response.messages,
|
|
388
|
+
toolCallId: toolCall?.toolCallId
|
|
389
|
+
}
|
|
390
|
+
);
|
|
391
|
+
const updatedMessages = [
|
|
392
|
+
{
|
|
393
|
+
role: "user",
|
|
394
|
+
content: params.messages
|
|
395
|
+
},
|
|
396
|
+
...response.response.messages,
|
|
397
|
+
{
|
|
398
|
+
role: "tool",
|
|
399
|
+
content: [
|
|
400
|
+
{
|
|
401
|
+
type: "tool-result",
|
|
402
|
+
toolCallId: toolCall.toolCallId,
|
|
403
|
+
toolName: toolCall.toolName,
|
|
404
|
+
result
|
|
405
|
+
}
|
|
406
|
+
]
|
|
407
|
+
}
|
|
408
|
+
];
|
|
409
|
+
return respondFn({
|
|
410
|
+
...params,
|
|
411
|
+
messages: updatedMessages
|
|
412
|
+
});
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
var AgentVoice = class extends BaseResource {
|
|
418
|
+
constructor(options, agentId) {
|
|
419
|
+
super(options);
|
|
420
|
+
this.agentId = agentId;
|
|
421
|
+
this.agentId = agentId;
|
|
422
|
+
}
|
|
423
|
+
/**
|
|
424
|
+
* Convert text to speech using the agent's voice provider
|
|
425
|
+
* @param text - Text to convert to speech
|
|
426
|
+
* @param options - Optional provider-specific options for speech generation
|
|
427
|
+
* @returns Promise containing the audio data
|
|
428
|
+
*/
|
|
429
|
+
async speak(text, options) {
|
|
430
|
+
return this.request(`/api/agents/${this.agentId}/voice/speak`, {
|
|
431
|
+
method: "POST",
|
|
432
|
+
headers: {
|
|
433
|
+
"Content-Type": "application/json"
|
|
434
|
+
},
|
|
435
|
+
body: { input: text, options },
|
|
436
|
+
stream: true
|
|
437
|
+
});
|
|
438
|
+
}
|
|
439
|
+
/**
|
|
440
|
+
* Convert speech to text using the agent's voice provider
|
|
441
|
+
* @param audio - Audio data to transcribe
|
|
442
|
+
* @param options - Optional provider-specific options
|
|
443
|
+
* @returns Promise containing the transcribed text
|
|
444
|
+
*/
|
|
445
|
+
listen(audio, options) {
|
|
446
|
+
const formData = new FormData();
|
|
447
|
+
formData.append("audio", audio);
|
|
448
|
+
if (options) {
|
|
449
|
+
formData.append("options", JSON.stringify(options));
|
|
450
|
+
}
|
|
451
|
+
return this.request(`/api/agents/${this.agentId}/voice/listen`, {
|
|
452
|
+
method: "POST",
|
|
453
|
+
body: formData
|
|
454
|
+
});
|
|
455
|
+
}
|
|
456
|
+
/**
|
|
457
|
+
* Get available speakers for the agent's voice provider
|
|
458
|
+
* @returns Promise containing list of available speakers
|
|
459
|
+
*/
|
|
460
|
+
getSpeakers() {
|
|
461
|
+
return this.request(`/api/agents/${this.agentId}/voice/speakers`);
|
|
462
|
+
}
|
|
463
|
+
/**
|
|
464
|
+
* Get the listener configuration for the agent's voice provider
|
|
465
|
+
* @returns Promise containing a check if the agent has listening capabilities
|
|
466
|
+
*/
|
|
467
|
+
getListener() {
|
|
468
|
+
return this.request(`/api/agents/${this.agentId}/voice/listener`);
|
|
469
|
+
}
|
|
470
|
+
};
|
|
65
471
|
var Agent = class extends BaseResource {
|
|
66
472
|
constructor(options, agentId) {
|
|
67
473
|
super(options);
|
|
68
474
|
this.agentId = agentId;
|
|
475
|
+
this.voice = new AgentVoice(options, this.agentId);
|
|
69
476
|
}
|
|
477
|
+
voice;
|
|
70
478
|
/**
|
|
71
479
|
* Retrieves details about the agent
|
|
72
480
|
* @returns Promise containing agent details including model and instructions
|
|
@@ -74,36 +482,907 @@ var Agent = class extends BaseResource {
|
|
|
74
482
|
details() {
|
|
75
483
|
return this.request(`/api/agents/${this.agentId}`);
|
|
76
484
|
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
485
|
+
async generate(params) {
|
|
486
|
+
console.warn(
|
|
487
|
+
"Deprecation NOTICE:Generate method will switch to use generateVNext implementation September 16th. Please use generateLegacy if you don't want to upgrade just yet."
|
|
488
|
+
);
|
|
489
|
+
return this.generateLegacy(params);
|
|
490
|
+
}
|
|
491
|
+
async generateLegacy(params) {
|
|
83
492
|
const processedParams = {
|
|
84
493
|
...params,
|
|
85
|
-
output: params.output
|
|
494
|
+
output: params.output ? zodToJsonSchema(params.output) : void 0,
|
|
495
|
+
experimental_output: params.experimental_output ? zodToJsonSchema(params.experimental_output) : void 0,
|
|
496
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext),
|
|
497
|
+
clientTools: processClientTools(params.clientTools)
|
|
86
498
|
};
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
499
|
+
const { runId, resourceId, threadId, runtimeContext } = processedParams;
|
|
500
|
+
const response = await this.request(
|
|
501
|
+
`/api/agents/${this.agentId}/generate-legacy`,
|
|
502
|
+
{
|
|
503
|
+
method: "POST",
|
|
504
|
+
body: processedParams
|
|
505
|
+
}
|
|
506
|
+
);
|
|
507
|
+
if (response.finishReason === "tool-calls") {
|
|
508
|
+
const toolCalls = response.toolCalls;
|
|
509
|
+
if (!toolCalls || !Array.isArray(toolCalls)) {
|
|
510
|
+
return response;
|
|
511
|
+
}
|
|
512
|
+
for (const toolCall of toolCalls) {
|
|
513
|
+
const clientTool = params.clientTools?.[toolCall.toolName];
|
|
514
|
+
if (clientTool && clientTool.execute) {
|
|
515
|
+
const result = await clientTool.execute(
|
|
516
|
+
{
|
|
517
|
+
context: toolCall?.args,
|
|
518
|
+
runId,
|
|
519
|
+
resourceId,
|
|
520
|
+
threadId,
|
|
521
|
+
runtimeContext,
|
|
522
|
+
tracingContext: { currentSpan: void 0 }
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
messages: response.messages,
|
|
526
|
+
toolCallId: toolCall?.toolCallId
|
|
527
|
+
}
|
|
528
|
+
);
|
|
529
|
+
const updatedMessages = [
|
|
530
|
+
{
|
|
531
|
+
role: "user",
|
|
532
|
+
content: params.messages
|
|
533
|
+
},
|
|
534
|
+
...response.response.messages,
|
|
535
|
+
{
|
|
536
|
+
role: "tool",
|
|
537
|
+
content: [
|
|
538
|
+
{
|
|
539
|
+
type: "tool-result",
|
|
540
|
+
toolCallId: toolCall.toolCallId,
|
|
541
|
+
toolName: toolCall.toolName,
|
|
542
|
+
result
|
|
543
|
+
}
|
|
544
|
+
]
|
|
545
|
+
}
|
|
546
|
+
];
|
|
547
|
+
return this.generate({
|
|
548
|
+
...params,
|
|
549
|
+
messages: updatedMessages
|
|
550
|
+
});
|
|
551
|
+
}
|
|
552
|
+
}
|
|
553
|
+
}
|
|
554
|
+
return response;
|
|
555
|
+
}
|
|
556
|
+
async generateVNext(params) {
|
|
557
|
+
const processedParams = {
|
|
558
|
+
...params,
|
|
559
|
+
output: params.output ? zodToJsonSchema(params.output) : void 0,
|
|
560
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext),
|
|
561
|
+
clientTools: processClientTools(params.clientTools)
|
|
562
|
+
};
|
|
563
|
+
const { runId, resourceId, threadId, runtimeContext } = processedParams;
|
|
564
|
+
const response = await this.request(
|
|
565
|
+
`/api/agents/${this.agentId}/generate/vnext`,
|
|
566
|
+
{
|
|
567
|
+
method: "POST",
|
|
568
|
+
body: processedParams
|
|
569
|
+
}
|
|
570
|
+
);
|
|
571
|
+
if (response.finishReason === "tool-calls") {
|
|
572
|
+
return executeToolCallAndRespond({
|
|
573
|
+
response,
|
|
574
|
+
params,
|
|
575
|
+
runId,
|
|
576
|
+
resourceId,
|
|
577
|
+
threadId,
|
|
578
|
+
runtimeContext,
|
|
579
|
+
respondFn: this.generateVNext.bind(this)
|
|
580
|
+
});
|
|
581
|
+
}
|
|
582
|
+
return response;
|
|
583
|
+
}
|
|
584
|
+
async processChatResponse({
|
|
585
|
+
stream,
|
|
586
|
+
update,
|
|
587
|
+
onToolCall,
|
|
588
|
+
onFinish,
|
|
589
|
+
getCurrentDate = () => /* @__PURE__ */ new Date(),
|
|
590
|
+
lastMessage
|
|
591
|
+
}) {
|
|
592
|
+
const replaceLastMessage = lastMessage?.role === "assistant";
|
|
593
|
+
let step = replaceLastMessage ? 1 + // find max step in existing tool invocations:
|
|
594
|
+
(lastMessage.toolInvocations?.reduce((max, toolInvocation) => {
|
|
595
|
+
return Math.max(max, toolInvocation.step ?? 0);
|
|
596
|
+
}, 0) ?? 0) : 0;
|
|
597
|
+
const message = replaceLastMessage ? structuredClone(lastMessage) : {
|
|
598
|
+
id: v4(),
|
|
599
|
+
createdAt: getCurrentDate(),
|
|
600
|
+
role: "assistant",
|
|
601
|
+
content: "",
|
|
602
|
+
parts: []
|
|
603
|
+
};
|
|
604
|
+
let currentTextPart = void 0;
|
|
605
|
+
let currentReasoningPart = void 0;
|
|
606
|
+
let currentReasoningTextDetail = void 0;
|
|
607
|
+
function updateToolInvocationPart(toolCallId, invocation) {
|
|
608
|
+
const part = message.parts.find(
|
|
609
|
+
(part2) => part2.type === "tool-invocation" && part2.toolInvocation.toolCallId === toolCallId
|
|
610
|
+
);
|
|
611
|
+
if (part != null) {
|
|
612
|
+
part.toolInvocation = invocation;
|
|
613
|
+
} else {
|
|
614
|
+
message.parts.push({
|
|
615
|
+
type: "tool-invocation",
|
|
616
|
+
toolInvocation: invocation
|
|
617
|
+
});
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
const data = [];
|
|
621
|
+
let messageAnnotations = replaceLastMessage ? lastMessage?.annotations : void 0;
|
|
622
|
+
const partialToolCalls = {};
|
|
623
|
+
let usage = {
|
|
624
|
+
completionTokens: NaN,
|
|
625
|
+
promptTokens: NaN,
|
|
626
|
+
totalTokens: NaN
|
|
627
|
+
};
|
|
628
|
+
let finishReason = "unknown";
|
|
629
|
+
function execUpdate() {
|
|
630
|
+
const copiedData = [...data];
|
|
631
|
+
if (messageAnnotations?.length) {
|
|
632
|
+
message.annotations = messageAnnotations;
|
|
633
|
+
}
|
|
634
|
+
const copiedMessage = {
|
|
635
|
+
// deep copy the message to ensure that deep changes (msg attachments) are updated
|
|
636
|
+
// with SolidJS. SolidJS uses referential integration of sub-objects to detect changes.
|
|
637
|
+
...structuredClone(message),
|
|
638
|
+
// add a revision id to ensure that the message is updated with SWR. SWR uses a
|
|
639
|
+
// hashing approach by default to detect changes, but it only works for shallow
|
|
640
|
+
// changes. This is why we need to add a revision id to ensure that the message
|
|
641
|
+
// is updated with SWR (without it, the changes get stuck in SWR and are not
|
|
642
|
+
// forwarded to rendering):
|
|
643
|
+
revisionId: v4()
|
|
644
|
+
};
|
|
645
|
+
update({
|
|
646
|
+
message: copiedMessage,
|
|
647
|
+
data: copiedData,
|
|
648
|
+
replaceLastMessage
|
|
649
|
+
});
|
|
650
|
+
}
|
|
651
|
+
await processDataStream({
|
|
652
|
+
stream,
|
|
653
|
+
onTextPart(value) {
|
|
654
|
+
if (currentTextPart == null) {
|
|
655
|
+
currentTextPart = {
|
|
656
|
+
type: "text",
|
|
657
|
+
text: value
|
|
658
|
+
};
|
|
659
|
+
message.parts.push(currentTextPart);
|
|
660
|
+
} else {
|
|
661
|
+
currentTextPart.text += value;
|
|
662
|
+
}
|
|
663
|
+
message.content += value;
|
|
664
|
+
execUpdate();
|
|
665
|
+
},
|
|
666
|
+
onReasoningPart(value) {
|
|
667
|
+
if (currentReasoningTextDetail == null) {
|
|
668
|
+
currentReasoningTextDetail = { type: "text", text: value };
|
|
669
|
+
if (currentReasoningPart != null) {
|
|
670
|
+
currentReasoningPart.details.push(currentReasoningTextDetail);
|
|
671
|
+
}
|
|
672
|
+
} else {
|
|
673
|
+
currentReasoningTextDetail.text += value;
|
|
674
|
+
}
|
|
675
|
+
if (currentReasoningPart == null) {
|
|
676
|
+
currentReasoningPart = {
|
|
677
|
+
type: "reasoning",
|
|
678
|
+
reasoning: value,
|
|
679
|
+
details: [currentReasoningTextDetail]
|
|
680
|
+
};
|
|
681
|
+
message.parts.push(currentReasoningPart);
|
|
682
|
+
} else {
|
|
683
|
+
currentReasoningPart.reasoning += value;
|
|
684
|
+
}
|
|
685
|
+
message.reasoning = (message.reasoning ?? "") + value;
|
|
686
|
+
execUpdate();
|
|
687
|
+
},
|
|
688
|
+
onReasoningSignaturePart(value) {
|
|
689
|
+
if (currentReasoningTextDetail != null) {
|
|
690
|
+
currentReasoningTextDetail.signature = value.signature;
|
|
691
|
+
}
|
|
692
|
+
},
|
|
693
|
+
onRedactedReasoningPart(value) {
|
|
694
|
+
if (currentReasoningPart == null) {
|
|
695
|
+
currentReasoningPart = {
|
|
696
|
+
type: "reasoning",
|
|
697
|
+
reasoning: "",
|
|
698
|
+
details: []
|
|
699
|
+
};
|
|
700
|
+
message.parts.push(currentReasoningPart);
|
|
701
|
+
}
|
|
702
|
+
currentReasoningPart.details.push({
|
|
703
|
+
type: "redacted",
|
|
704
|
+
data: value.data
|
|
705
|
+
});
|
|
706
|
+
currentReasoningTextDetail = void 0;
|
|
707
|
+
execUpdate();
|
|
708
|
+
},
|
|
709
|
+
onFilePart(value) {
|
|
710
|
+
message.parts.push({
|
|
711
|
+
type: "file",
|
|
712
|
+
mimeType: value.mimeType,
|
|
713
|
+
data: value.data
|
|
714
|
+
});
|
|
715
|
+
execUpdate();
|
|
716
|
+
},
|
|
717
|
+
onSourcePart(value) {
|
|
718
|
+
message.parts.push({
|
|
719
|
+
type: "source",
|
|
720
|
+
source: value
|
|
721
|
+
});
|
|
722
|
+
execUpdate();
|
|
723
|
+
},
|
|
724
|
+
onToolCallStreamingStartPart(value) {
|
|
725
|
+
if (message.toolInvocations == null) {
|
|
726
|
+
message.toolInvocations = [];
|
|
727
|
+
}
|
|
728
|
+
partialToolCalls[value.toolCallId] = {
|
|
729
|
+
text: "",
|
|
730
|
+
step,
|
|
731
|
+
toolName: value.toolName,
|
|
732
|
+
index: message.toolInvocations.length
|
|
733
|
+
};
|
|
734
|
+
const invocation = {
|
|
735
|
+
state: "partial-call",
|
|
736
|
+
step,
|
|
737
|
+
toolCallId: value.toolCallId,
|
|
738
|
+
toolName: value.toolName,
|
|
739
|
+
args: void 0
|
|
740
|
+
};
|
|
741
|
+
message.toolInvocations.push(invocation);
|
|
742
|
+
updateToolInvocationPart(value.toolCallId, invocation);
|
|
743
|
+
execUpdate();
|
|
744
|
+
},
|
|
745
|
+
onToolCallDeltaPart(value) {
|
|
746
|
+
const partialToolCall = partialToolCalls[value.toolCallId];
|
|
747
|
+
partialToolCall.text += value.argsTextDelta;
|
|
748
|
+
const { value: partialArgs } = parsePartialJson(partialToolCall.text);
|
|
749
|
+
const invocation = {
|
|
750
|
+
state: "partial-call",
|
|
751
|
+
step: partialToolCall.step,
|
|
752
|
+
toolCallId: value.toolCallId,
|
|
753
|
+
toolName: partialToolCall.toolName,
|
|
754
|
+
args: partialArgs
|
|
755
|
+
};
|
|
756
|
+
message.toolInvocations[partialToolCall.index] = invocation;
|
|
757
|
+
updateToolInvocationPart(value.toolCallId, invocation);
|
|
758
|
+
execUpdate();
|
|
759
|
+
},
|
|
760
|
+
async onToolCallPart(value) {
|
|
761
|
+
const invocation = {
|
|
762
|
+
state: "call",
|
|
763
|
+
step,
|
|
764
|
+
...value
|
|
765
|
+
};
|
|
766
|
+
if (partialToolCalls[value.toolCallId] != null) {
|
|
767
|
+
message.toolInvocations[partialToolCalls[value.toolCallId].index] = invocation;
|
|
768
|
+
} else {
|
|
769
|
+
if (message.toolInvocations == null) {
|
|
770
|
+
message.toolInvocations = [];
|
|
771
|
+
}
|
|
772
|
+
message.toolInvocations.push(invocation);
|
|
773
|
+
}
|
|
774
|
+
updateToolInvocationPart(value.toolCallId, invocation);
|
|
775
|
+
execUpdate();
|
|
776
|
+
if (onToolCall) {
|
|
777
|
+
const result = await onToolCall({ toolCall: value });
|
|
778
|
+
if (result != null) {
|
|
779
|
+
const invocation2 = {
|
|
780
|
+
state: "result",
|
|
781
|
+
step,
|
|
782
|
+
...value,
|
|
783
|
+
result
|
|
784
|
+
};
|
|
785
|
+
message.toolInvocations[message.toolInvocations.length - 1] = invocation2;
|
|
786
|
+
updateToolInvocationPart(value.toolCallId, invocation2);
|
|
787
|
+
execUpdate();
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
},
|
|
791
|
+
onToolResultPart(value) {
|
|
792
|
+
const toolInvocations = message.toolInvocations;
|
|
793
|
+
if (toolInvocations == null) {
|
|
794
|
+
throw new Error("tool_result must be preceded by a tool_call");
|
|
795
|
+
}
|
|
796
|
+
const toolInvocationIndex = toolInvocations.findIndex((invocation2) => invocation2.toolCallId === value.toolCallId);
|
|
797
|
+
if (toolInvocationIndex === -1) {
|
|
798
|
+
throw new Error("tool_result must be preceded by a tool_call with the same toolCallId");
|
|
799
|
+
}
|
|
800
|
+
const invocation = {
|
|
801
|
+
...toolInvocations[toolInvocationIndex],
|
|
802
|
+
state: "result",
|
|
803
|
+
...value
|
|
804
|
+
};
|
|
805
|
+
toolInvocations[toolInvocationIndex] = invocation;
|
|
806
|
+
updateToolInvocationPart(value.toolCallId, invocation);
|
|
807
|
+
execUpdate();
|
|
808
|
+
},
|
|
809
|
+
onDataPart(value) {
|
|
810
|
+
data.push(...value);
|
|
811
|
+
execUpdate();
|
|
812
|
+
},
|
|
813
|
+
onMessageAnnotationsPart(value) {
|
|
814
|
+
if (messageAnnotations == null) {
|
|
815
|
+
messageAnnotations = [...value];
|
|
816
|
+
} else {
|
|
817
|
+
messageAnnotations.push(...value);
|
|
818
|
+
}
|
|
819
|
+
execUpdate();
|
|
820
|
+
},
|
|
821
|
+
onFinishStepPart(value) {
|
|
822
|
+
step += 1;
|
|
823
|
+
currentTextPart = value.isContinued ? currentTextPart : void 0;
|
|
824
|
+
currentReasoningPart = void 0;
|
|
825
|
+
currentReasoningTextDetail = void 0;
|
|
826
|
+
},
|
|
827
|
+
onStartStepPart(value) {
|
|
828
|
+
if (!replaceLastMessage) {
|
|
829
|
+
message.id = value.messageId;
|
|
830
|
+
}
|
|
831
|
+
message.parts.push({ type: "step-start" });
|
|
832
|
+
execUpdate();
|
|
833
|
+
},
|
|
834
|
+
onFinishMessagePart(value) {
|
|
835
|
+
finishReason = value.finishReason;
|
|
836
|
+
if (value.usage != null) {
|
|
837
|
+
usage = value.usage;
|
|
838
|
+
}
|
|
839
|
+
},
|
|
840
|
+
onErrorPart(error) {
|
|
841
|
+
throw new Error(error);
|
|
842
|
+
}
|
|
90
843
|
});
|
|
844
|
+
onFinish?.({ message, finishReason, usage });
|
|
845
|
+
}
|
|
846
|
+
/**
|
|
847
|
+
* Streams a response from the agent
|
|
848
|
+
* @param params - Stream parameters including prompt
|
|
849
|
+
* @returns Promise containing the enhanced Response object with processDataStream method
|
|
850
|
+
*/
|
|
851
|
+
async stream(params) {
|
|
852
|
+
console.warn(
|
|
853
|
+
"Deprecation NOTICE:\nStream method will switch to use streamVNext implementation September 16th. Please use streamLegacy if you don't want to upgrade just yet."
|
|
854
|
+
);
|
|
855
|
+
return this.streamLegacy(params);
|
|
91
856
|
}
|
|
92
857
|
/**
|
|
93
858
|
* Streams a response from the agent
|
|
94
859
|
* @param params - Stream parameters including prompt
|
|
95
|
-
* @returns Promise containing the
|
|
860
|
+
* @returns Promise containing the enhanced Response object with processDataStream method
|
|
96
861
|
*/
|
|
97
|
-
|
|
862
|
+
async streamLegacy(params) {
|
|
863
|
+
const processedParams = {
|
|
864
|
+
...params,
|
|
865
|
+
output: params.output ? zodToJsonSchema(params.output) : void 0,
|
|
866
|
+
experimental_output: params.experimental_output ? zodToJsonSchema(params.experimental_output) : void 0,
|
|
867
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext),
|
|
868
|
+
clientTools: processClientTools(params.clientTools)
|
|
869
|
+
};
|
|
870
|
+
const { readable, writable } = new TransformStream();
|
|
871
|
+
const response = await this.processStreamResponse(processedParams, writable);
|
|
872
|
+
const streamResponse = new Response(readable, {
|
|
873
|
+
status: response.status,
|
|
874
|
+
statusText: response.statusText,
|
|
875
|
+
headers: response.headers
|
|
876
|
+
});
|
|
877
|
+
streamResponse.processDataStream = async (options = {}) => {
|
|
878
|
+
await processDataStream({
|
|
879
|
+
stream: streamResponse.body,
|
|
880
|
+
...options
|
|
881
|
+
});
|
|
882
|
+
};
|
|
883
|
+
return streamResponse;
|
|
884
|
+
}
|
|
885
|
+
async processChatResponse_vNext({
|
|
886
|
+
stream,
|
|
887
|
+
update,
|
|
888
|
+
onToolCall,
|
|
889
|
+
onFinish,
|
|
890
|
+
getCurrentDate = () => /* @__PURE__ */ new Date(),
|
|
891
|
+
lastMessage
|
|
892
|
+
}) {
|
|
893
|
+
const replaceLastMessage = lastMessage?.role === "assistant";
|
|
894
|
+
let step = replaceLastMessage ? 1 + // find max step in existing tool invocations:
|
|
895
|
+
(lastMessage.toolInvocations?.reduce((max, toolInvocation) => {
|
|
896
|
+
return Math.max(max, toolInvocation.step ?? 0);
|
|
897
|
+
}, 0) ?? 0) : 0;
|
|
898
|
+
const message = replaceLastMessage ? structuredClone(lastMessage) : {
|
|
899
|
+
id: v4(),
|
|
900
|
+
createdAt: getCurrentDate(),
|
|
901
|
+
role: "assistant",
|
|
902
|
+
content: "",
|
|
903
|
+
parts: []
|
|
904
|
+
};
|
|
905
|
+
let currentTextPart = void 0;
|
|
906
|
+
let currentReasoningPart = void 0;
|
|
907
|
+
let currentReasoningTextDetail = void 0;
|
|
908
|
+
function updateToolInvocationPart(toolCallId, invocation) {
|
|
909
|
+
const part = message.parts.find(
|
|
910
|
+
(part2) => part2.type === "tool-invocation" && part2.toolInvocation.toolCallId === toolCallId
|
|
911
|
+
);
|
|
912
|
+
if (part != null) {
|
|
913
|
+
part.toolInvocation = invocation;
|
|
914
|
+
} else {
|
|
915
|
+
message.parts.push({
|
|
916
|
+
type: "tool-invocation",
|
|
917
|
+
toolInvocation: invocation
|
|
918
|
+
});
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
const data = [];
|
|
922
|
+
let messageAnnotations = replaceLastMessage ? lastMessage?.annotations : void 0;
|
|
923
|
+
const partialToolCalls = {};
|
|
924
|
+
let usage = {
|
|
925
|
+
completionTokens: NaN,
|
|
926
|
+
promptTokens: NaN,
|
|
927
|
+
totalTokens: NaN
|
|
928
|
+
};
|
|
929
|
+
let finishReason = "unknown";
|
|
930
|
+
function execUpdate() {
|
|
931
|
+
const copiedData = [...data];
|
|
932
|
+
if (messageAnnotations?.length) {
|
|
933
|
+
message.annotations = messageAnnotations;
|
|
934
|
+
}
|
|
935
|
+
const copiedMessage = {
|
|
936
|
+
// deep copy the message to ensure that deep changes (msg attachments) are updated
|
|
937
|
+
// with SolidJS. SolidJS uses referential integration of sub-objects to detect changes.
|
|
938
|
+
...structuredClone(message),
|
|
939
|
+
// add a revision id to ensure that the message is updated with SWR. SWR uses a
|
|
940
|
+
// hashing approach by default to detect changes, but it only works for shallow
|
|
941
|
+
// changes. This is why we need to add a revision id to ensure that the message
|
|
942
|
+
// is updated with SWR (without it, the changes get stuck in SWR and are not
|
|
943
|
+
// forwarded to rendering):
|
|
944
|
+
revisionId: v4()
|
|
945
|
+
};
|
|
946
|
+
update({
|
|
947
|
+
message: copiedMessage,
|
|
948
|
+
data: copiedData,
|
|
949
|
+
replaceLastMessage
|
|
950
|
+
});
|
|
951
|
+
}
|
|
952
|
+
await processMastraStream({
|
|
953
|
+
stream,
|
|
954
|
+
// TODO: casting as any here because the stream types were all typed as any before in core.
|
|
955
|
+
// but this is completely wrong and this fn is probably broken. Remove ":any" and you'll see a bunch of type errors
|
|
956
|
+
onChunk: async (chunk) => {
|
|
957
|
+
switch (chunk.type) {
|
|
958
|
+
case "step-start": {
|
|
959
|
+
if (!replaceLastMessage) {
|
|
960
|
+
message.id = chunk.payload.messageId;
|
|
961
|
+
}
|
|
962
|
+
message.parts.push({ type: "step-start" });
|
|
963
|
+
execUpdate();
|
|
964
|
+
break;
|
|
965
|
+
}
|
|
966
|
+
case "text-delta": {
|
|
967
|
+
if (currentTextPart == null) {
|
|
968
|
+
currentTextPart = {
|
|
969
|
+
type: "text",
|
|
970
|
+
text: chunk.payload.text
|
|
971
|
+
};
|
|
972
|
+
message.parts.push(currentTextPart);
|
|
973
|
+
} else {
|
|
974
|
+
currentTextPart.text += chunk.payload.text;
|
|
975
|
+
}
|
|
976
|
+
message.content += chunk.payload.text;
|
|
977
|
+
execUpdate();
|
|
978
|
+
break;
|
|
979
|
+
}
|
|
980
|
+
case "reasoning-delta": {
|
|
981
|
+
if (currentReasoningTextDetail == null) {
|
|
982
|
+
currentReasoningTextDetail = { type: "text", text: chunk.payload.text };
|
|
983
|
+
if (currentReasoningPart != null) {
|
|
984
|
+
currentReasoningPart.details.push(currentReasoningTextDetail);
|
|
985
|
+
}
|
|
986
|
+
} else {
|
|
987
|
+
currentReasoningTextDetail.text += chunk.payload.text;
|
|
988
|
+
}
|
|
989
|
+
if (currentReasoningPart == null) {
|
|
990
|
+
currentReasoningPart = {
|
|
991
|
+
type: "reasoning",
|
|
992
|
+
reasoning: chunk.payload.text,
|
|
993
|
+
details: [currentReasoningTextDetail]
|
|
994
|
+
};
|
|
995
|
+
message.parts.push(currentReasoningPart);
|
|
996
|
+
} else {
|
|
997
|
+
currentReasoningPart.reasoning += chunk.payload.text;
|
|
998
|
+
}
|
|
999
|
+
message.reasoning = (message.reasoning ?? "") + chunk.payload.text;
|
|
1000
|
+
execUpdate();
|
|
1001
|
+
break;
|
|
1002
|
+
}
|
|
1003
|
+
case "file": {
|
|
1004
|
+
message.parts.push({
|
|
1005
|
+
type: "file",
|
|
1006
|
+
mimeType: chunk.payload.mimeType,
|
|
1007
|
+
data: chunk.payload.data
|
|
1008
|
+
});
|
|
1009
|
+
execUpdate();
|
|
1010
|
+
break;
|
|
1011
|
+
}
|
|
1012
|
+
case "source": {
|
|
1013
|
+
message.parts.push({
|
|
1014
|
+
type: "source",
|
|
1015
|
+
source: chunk.payload.source
|
|
1016
|
+
});
|
|
1017
|
+
execUpdate();
|
|
1018
|
+
break;
|
|
1019
|
+
}
|
|
1020
|
+
case "tool-call": {
|
|
1021
|
+
const invocation = {
|
|
1022
|
+
state: "call",
|
|
1023
|
+
step,
|
|
1024
|
+
...chunk.payload
|
|
1025
|
+
};
|
|
1026
|
+
if (partialToolCalls[chunk.payload.toolCallId] != null) {
|
|
1027
|
+
message.toolInvocations[partialToolCalls[chunk.payload.toolCallId].index] = invocation;
|
|
1028
|
+
} else {
|
|
1029
|
+
if (message.toolInvocations == null) {
|
|
1030
|
+
message.toolInvocations = [];
|
|
1031
|
+
}
|
|
1032
|
+
message.toolInvocations.push(invocation);
|
|
1033
|
+
}
|
|
1034
|
+
updateToolInvocationPart(chunk.payload.toolCallId, invocation);
|
|
1035
|
+
execUpdate();
|
|
1036
|
+
if (onToolCall) {
|
|
1037
|
+
const result = await onToolCall({ toolCall: chunk.payload });
|
|
1038
|
+
if (result != null) {
|
|
1039
|
+
const invocation2 = {
|
|
1040
|
+
state: "result",
|
|
1041
|
+
step,
|
|
1042
|
+
...chunk.payload,
|
|
1043
|
+
result
|
|
1044
|
+
};
|
|
1045
|
+
message.toolInvocations[message.toolInvocations.length - 1] = invocation2;
|
|
1046
|
+
updateToolInvocationPart(chunk.payload.toolCallId, invocation2);
|
|
1047
|
+
execUpdate();
|
|
1048
|
+
}
|
|
1049
|
+
}
|
|
1050
|
+
}
|
|
1051
|
+
case "tool-call-input-streaming-start": {
|
|
1052
|
+
if (message.toolInvocations == null) {
|
|
1053
|
+
message.toolInvocations = [];
|
|
1054
|
+
}
|
|
1055
|
+
partialToolCalls[chunk.payload.toolCallId] = {
|
|
1056
|
+
text: "",
|
|
1057
|
+
step,
|
|
1058
|
+
toolName: chunk.payload.toolName,
|
|
1059
|
+
index: message.toolInvocations.length
|
|
1060
|
+
};
|
|
1061
|
+
const invocation = {
|
|
1062
|
+
state: "partial-call",
|
|
1063
|
+
step,
|
|
1064
|
+
toolCallId: chunk.payload.toolCallId,
|
|
1065
|
+
toolName: chunk.payload.toolName,
|
|
1066
|
+
args: void 0
|
|
1067
|
+
};
|
|
1068
|
+
message.toolInvocations.push(invocation);
|
|
1069
|
+
updateToolInvocationPart(chunk.payload.toolCallId, invocation);
|
|
1070
|
+
execUpdate();
|
|
1071
|
+
break;
|
|
1072
|
+
}
|
|
1073
|
+
case "tool-call-delta": {
|
|
1074
|
+
const partialToolCall = partialToolCalls[chunk.payload.toolCallId];
|
|
1075
|
+
partialToolCall.text += chunk.payload.argsTextDelta;
|
|
1076
|
+
const { value: partialArgs } = parsePartialJson(partialToolCall.text);
|
|
1077
|
+
const invocation = {
|
|
1078
|
+
state: "partial-call",
|
|
1079
|
+
step: partialToolCall.step,
|
|
1080
|
+
toolCallId: chunk.payload.toolCallId,
|
|
1081
|
+
toolName: partialToolCall.toolName,
|
|
1082
|
+
args: partialArgs
|
|
1083
|
+
};
|
|
1084
|
+
message.toolInvocations[partialToolCall.index] = invocation;
|
|
1085
|
+
updateToolInvocationPart(chunk.payload.toolCallId, invocation);
|
|
1086
|
+
execUpdate();
|
|
1087
|
+
break;
|
|
1088
|
+
}
|
|
1089
|
+
case "tool-result": {
|
|
1090
|
+
const toolInvocations = message.toolInvocations;
|
|
1091
|
+
if (toolInvocations == null) {
|
|
1092
|
+
throw new Error("tool_result must be preceded by a tool_call");
|
|
1093
|
+
}
|
|
1094
|
+
const toolInvocationIndex = toolInvocations.findIndex(
|
|
1095
|
+
(invocation2) => invocation2.toolCallId === chunk.payload.toolCallId
|
|
1096
|
+
);
|
|
1097
|
+
if (toolInvocationIndex === -1) {
|
|
1098
|
+
throw new Error("tool_result must be preceded by a tool_call with the same toolCallId");
|
|
1099
|
+
}
|
|
1100
|
+
const invocation = {
|
|
1101
|
+
...toolInvocations[toolInvocationIndex],
|
|
1102
|
+
state: "result",
|
|
1103
|
+
...chunk.payload
|
|
1104
|
+
};
|
|
1105
|
+
toolInvocations[toolInvocationIndex] = invocation;
|
|
1106
|
+
updateToolInvocationPart(chunk.payload.toolCallId, invocation);
|
|
1107
|
+
execUpdate();
|
|
1108
|
+
break;
|
|
1109
|
+
}
|
|
1110
|
+
case "error": {
|
|
1111
|
+
throw new Error(chunk.payload.error);
|
|
1112
|
+
}
|
|
1113
|
+
case "data": {
|
|
1114
|
+
data.push(...chunk.payload.data);
|
|
1115
|
+
execUpdate();
|
|
1116
|
+
break;
|
|
1117
|
+
}
|
|
1118
|
+
case "step-finish": {
|
|
1119
|
+
step += 1;
|
|
1120
|
+
currentTextPart = chunk.payload.isContinued ? currentTextPart : void 0;
|
|
1121
|
+
currentReasoningPart = void 0;
|
|
1122
|
+
currentReasoningTextDetail = void 0;
|
|
1123
|
+
execUpdate();
|
|
1124
|
+
break;
|
|
1125
|
+
}
|
|
1126
|
+
case "finish": {
|
|
1127
|
+
finishReason = chunk.payload.finishReason;
|
|
1128
|
+
if (chunk.payload.usage != null) {
|
|
1129
|
+
usage = chunk.payload.usage;
|
|
1130
|
+
}
|
|
1131
|
+
break;
|
|
1132
|
+
}
|
|
1133
|
+
}
|
|
1134
|
+
}
|
|
1135
|
+
});
|
|
1136
|
+
onFinish?.({ message, finishReason, usage });
|
|
1137
|
+
}
|
|
1138
|
+
async processStreamResponse_vNext(processedParams, writable) {
|
|
1139
|
+
const response = await this.request(`/api/agents/${this.agentId}/stream/vnext`, {
|
|
1140
|
+
method: "POST",
|
|
1141
|
+
body: processedParams,
|
|
1142
|
+
stream: true
|
|
1143
|
+
});
|
|
1144
|
+
if (!response.body) {
|
|
1145
|
+
throw new Error("No response body");
|
|
1146
|
+
}
|
|
1147
|
+
try {
|
|
1148
|
+
let toolCalls = [];
|
|
1149
|
+
let messages = [];
|
|
1150
|
+
const [streamForWritable, streamForProcessing] = response.body.tee();
|
|
1151
|
+
streamForWritable.pipeTo(writable, {
|
|
1152
|
+
preventClose: true
|
|
1153
|
+
}).catch((error) => {
|
|
1154
|
+
console.error("Error piping to writable stream:", error);
|
|
1155
|
+
});
|
|
1156
|
+
this.processChatResponse_vNext({
|
|
1157
|
+
stream: streamForProcessing,
|
|
1158
|
+
update: ({ message }) => {
|
|
1159
|
+
const existingIndex = messages.findIndex((m) => m.id === message.id);
|
|
1160
|
+
if (existingIndex !== -1) {
|
|
1161
|
+
messages[existingIndex] = message;
|
|
1162
|
+
} else {
|
|
1163
|
+
messages.push(message);
|
|
1164
|
+
}
|
|
1165
|
+
},
|
|
1166
|
+
onFinish: async ({ finishReason, message }) => {
|
|
1167
|
+
if (finishReason === "tool-calls") {
|
|
1168
|
+
const toolCall = [...message?.parts ?? []].reverse().find((part) => part.type === "tool-invocation")?.toolInvocation;
|
|
1169
|
+
if (toolCall) {
|
|
1170
|
+
toolCalls.push(toolCall);
|
|
1171
|
+
}
|
|
1172
|
+
for (const toolCall2 of toolCalls) {
|
|
1173
|
+
const clientTool = processedParams.clientTools?.[toolCall2.toolName];
|
|
1174
|
+
if (clientTool && clientTool.execute) {
|
|
1175
|
+
const result = await clientTool.execute(
|
|
1176
|
+
{
|
|
1177
|
+
context: toolCall2?.args,
|
|
1178
|
+
runId: processedParams.runId,
|
|
1179
|
+
resourceId: processedParams.resourceId,
|
|
1180
|
+
threadId: processedParams.threadId,
|
|
1181
|
+
runtimeContext: processedParams.runtimeContext,
|
|
1182
|
+
// TODO: Pass proper tracing context when client-js supports tracing
|
|
1183
|
+
tracingContext: { currentSpan: void 0 }
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
messages: response.messages,
|
|
1187
|
+
toolCallId: toolCall2?.toolCallId
|
|
1188
|
+
}
|
|
1189
|
+
);
|
|
1190
|
+
const lastMessage = JSON.parse(JSON.stringify(messages[messages.length - 1]));
|
|
1191
|
+
const toolInvocationPart = lastMessage?.parts?.find(
|
|
1192
|
+
(part) => part.type === "tool-invocation" && part.toolInvocation?.toolCallId === toolCall2.toolCallId
|
|
1193
|
+
);
|
|
1194
|
+
if (toolInvocationPart) {
|
|
1195
|
+
toolInvocationPart.toolInvocation = {
|
|
1196
|
+
...toolInvocationPart.toolInvocation,
|
|
1197
|
+
state: "result",
|
|
1198
|
+
result
|
|
1199
|
+
};
|
|
1200
|
+
}
|
|
1201
|
+
const toolInvocation = lastMessage?.toolInvocations?.find(
|
|
1202
|
+
(toolInvocation2) => toolInvocation2.toolCallId === toolCall2.toolCallId
|
|
1203
|
+
);
|
|
1204
|
+
if (toolInvocation) {
|
|
1205
|
+
toolInvocation.state = "result";
|
|
1206
|
+
toolInvocation.result = result;
|
|
1207
|
+
}
|
|
1208
|
+
const writer = writable.getWriter();
|
|
1209
|
+
try {
|
|
1210
|
+
await writer.write(
|
|
1211
|
+
new TextEncoder().encode(
|
|
1212
|
+
"a:" + JSON.stringify({
|
|
1213
|
+
toolCallId: toolCall2.toolCallId,
|
|
1214
|
+
result
|
|
1215
|
+
}) + "\n"
|
|
1216
|
+
)
|
|
1217
|
+
);
|
|
1218
|
+
} finally {
|
|
1219
|
+
writer.releaseLock();
|
|
1220
|
+
}
|
|
1221
|
+
const originalMessages = processedParams.messages;
|
|
1222
|
+
const messageArray = Array.isArray(originalMessages) ? originalMessages : [originalMessages];
|
|
1223
|
+
this.processStreamResponse_vNext(
|
|
1224
|
+
{
|
|
1225
|
+
...processedParams,
|
|
1226
|
+
messages: [...messageArray, ...messages.filter((m) => m.id !== lastMessage.id), lastMessage]
|
|
1227
|
+
},
|
|
1228
|
+
writable
|
|
1229
|
+
).catch((error) => {
|
|
1230
|
+
console.error("Error processing stream response:", error);
|
|
1231
|
+
});
|
|
1232
|
+
}
|
|
1233
|
+
}
|
|
1234
|
+
} else {
|
|
1235
|
+
setTimeout(() => {
|
|
1236
|
+
writable.close();
|
|
1237
|
+
}, 0);
|
|
1238
|
+
}
|
|
1239
|
+
},
|
|
1240
|
+
lastMessage: void 0
|
|
1241
|
+
}).catch((error) => {
|
|
1242
|
+
console.error("Error processing stream response:", error);
|
|
1243
|
+
});
|
|
1244
|
+
} catch (error) {
|
|
1245
|
+
console.error("Error processing stream response:", error);
|
|
1246
|
+
}
|
|
1247
|
+
return response;
|
|
1248
|
+
}
|
|
1249
|
+
async streamVNext(params) {
|
|
98
1250
|
const processedParams = {
|
|
99
1251
|
...params,
|
|
100
|
-
output: params.output
|
|
1252
|
+
output: params.output ? zodToJsonSchema(params.output) : void 0,
|
|
1253
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext),
|
|
1254
|
+
clientTools: processClientTools(params.clientTools)
|
|
1255
|
+
};
|
|
1256
|
+
const { readable, writable } = new TransformStream();
|
|
1257
|
+
const response = await this.processStreamResponse_vNext(processedParams, writable);
|
|
1258
|
+
const streamResponse = new Response(readable, {
|
|
1259
|
+
status: response.status,
|
|
1260
|
+
statusText: response.statusText,
|
|
1261
|
+
headers: response.headers
|
|
1262
|
+
});
|
|
1263
|
+
streamResponse.processDataStream = async ({
|
|
1264
|
+
onChunk
|
|
1265
|
+
}) => {
|
|
1266
|
+
await processMastraStream({
|
|
1267
|
+
stream: streamResponse.body,
|
|
1268
|
+
onChunk
|
|
1269
|
+
});
|
|
101
1270
|
};
|
|
102
|
-
return
|
|
1271
|
+
return streamResponse;
|
|
1272
|
+
}
|
|
1273
|
+
/**
|
|
1274
|
+
* Processes the stream response and handles tool calls
|
|
1275
|
+
*/
|
|
1276
|
+
async processStreamResponse(processedParams, writable) {
|
|
1277
|
+
const response = await this.request(`/api/agents/${this.agentId}/stream-legacy`, {
|
|
103
1278
|
method: "POST",
|
|
104
1279
|
body: processedParams,
|
|
105
1280
|
stream: true
|
|
106
1281
|
});
|
|
1282
|
+
if (!response.body) {
|
|
1283
|
+
throw new Error("No response body");
|
|
1284
|
+
}
|
|
1285
|
+
try {
|
|
1286
|
+
let toolCalls = [];
|
|
1287
|
+
let messages = [];
|
|
1288
|
+
const [streamForWritable, streamForProcessing] = response.body.tee();
|
|
1289
|
+
streamForWritable.pipeTo(writable, {
|
|
1290
|
+
preventClose: true
|
|
1291
|
+
}).catch((error) => {
|
|
1292
|
+
console.error("Error piping to writable stream:", error);
|
|
1293
|
+
});
|
|
1294
|
+
this.processChatResponse({
|
|
1295
|
+
stream: streamForProcessing,
|
|
1296
|
+
update: ({ message }) => {
|
|
1297
|
+
const existingIndex = messages.findIndex((m) => m.id === message.id);
|
|
1298
|
+
if (existingIndex !== -1) {
|
|
1299
|
+
messages[existingIndex] = message;
|
|
1300
|
+
} else {
|
|
1301
|
+
messages.push(message);
|
|
1302
|
+
}
|
|
1303
|
+
},
|
|
1304
|
+
onFinish: async ({ finishReason, message }) => {
|
|
1305
|
+
if (finishReason === "tool-calls") {
|
|
1306
|
+
const toolCall = [...message?.parts ?? []].reverse().find((part) => part.type === "tool-invocation")?.toolInvocation;
|
|
1307
|
+
if (toolCall) {
|
|
1308
|
+
toolCalls.push(toolCall);
|
|
1309
|
+
}
|
|
1310
|
+
for (const toolCall2 of toolCalls) {
|
|
1311
|
+
const clientTool = processedParams.clientTools?.[toolCall2.toolName];
|
|
1312
|
+
if (clientTool && clientTool.execute) {
|
|
1313
|
+
const result = await clientTool.execute(
|
|
1314
|
+
{
|
|
1315
|
+
context: toolCall2?.args,
|
|
1316
|
+
runId: processedParams.runId,
|
|
1317
|
+
resourceId: processedParams.resourceId,
|
|
1318
|
+
threadId: processedParams.threadId,
|
|
1319
|
+
runtimeContext: processedParams.runtimeContext,
|
|
1320
|
+
// TODO: Pass proper tracing context when client-js supports tracing
|
|
1321
|
+
tracingContext: { currentSpan: void 0 }
|
|
1322
|
+
},
|
|
1323
|
+
{
|
|
1324
|
+
messages: response.messages,
|
|
1325
|
+
toolCallId: toolCall2?.toolCallId
|
|
1326
|
+
}
|
|
1327
|
+
);
|
|
1328
|
+
const lastMessage = JSON.parse(JSON.stringify(messages[messages.length - 1]));
|
|
1329
|
+
const toolInvocationPart = lastMessage?.parts?.find(
|
|
1330
|
+
(part) => part.type === "tool-invocation" && part.toolInvocation?.toolCallId === toolCall2.toolCallId
|
|
1331
|
+
);
|
|
1332
|
+
if (toolInvocationPart) {
|
|
1333
|
+
toolInvocationPart.toolInvocation = {
|
|
1334
|
+
...toolInvocationPart.toolInvocation,
|
|
1335
|
+
state: "result",
|
|
1336
|
+
result
|
|
1337
|
+
};
|
|
1338
|
+
}
|
|
1339
|
+
const toolInvocation = lastMessage?.toolInvocations?.find(
|
|
1340
|
+
(toolInvocation2) => toolInvocation2.toolCallId === toolCall2.toolCallId
|
|
1341
|
+
);
|
|
1342
|
+
if (toolInvocation) {
|
|
1343
|
+
toolInvocation.state = "result";
|
|
1344
|
+
toolInvocation.result = result;
|
|
1345
|
+
}
|
|
1346
|
+
const writer = writable.getWriter();
|
|
1347
|
+
try {
|
|
1348
|
+
await writer.write(
|
|
1349
|
+
new TextEncoder().encode(
|
|
1350
|
+
"a:" + JSON.stringify({
|
|
1351
|
+
toolCallId: toolCall2.toolCallId,
|
|
1352
|
+
result
|
|
1353
|
+
}) + "\n"
|
|
1354
|
+
)
|
|
1355
|
+
);
|
|
1356
|
+
} finally {
|
|
1357
|
+
writer.releaseLock();
|
|
1358
|
+
}
|
|
1359
|
+
const originalMessages = processedParams.messages;
|
|
1360
|
+
const messageArray = Array.isArray(originalMessages) ? originalMessages : [originalMessages];
|
|
1361
|
+
this.processStreamResponse(
|
|
1362
|
+
{
|
|
1363
|
+
...processedParams,
|
|
1364
|
+
messages: [...messageArray, ...messages.filter((m) => m.id !== lastMessage.id), lastMessage]
|
|
1365
|
+
},
|
|
1366
|
+
writable
|
|
1367
|
+
).catch((error) => {
|
|
1368
|
+
console.error("Error processing stream response:", error);
|
|
1369
|
+
});
|
|
1370
|
+
}
|
|
1371
|
+
}
|
|
1372
|
+
} else {
|
|
1373
|
+
setTimeout(() => {
|
|
1374
|
+
writable.close();
|
|
1375
|
+
}, 0);
|
|
1376
|
+
}
|
|
1377
|
+
},
|
|
1378
|
+
lastMessage: void 0
|
|
1379
|
+
}).catch((error) => {
|
|
1380
|
+
console.error("Error processing stream response:", error);
|
|
1381
|
+
});
|
|
1382
|
+
} catch (error) {
|
|
1383
|
+
console.error("Error processing stream response:", error);
|
|
1384
|
+
}
|
|
1385
|
+
return response;
|
|
107
1386
|
}
|
|
108
1387
|
/**
|
|
109
1388
|
* Gets details about a specific tool available to the agent
|
|
@@ -113,6 +1392,22 @@ var Agent = class extends BaseResource {
|
|
|
113
1392
|
getTool(toolId) {
|
|
114
1393
|
return this.request(`/api/agents/${this.agentId}/tools/${toolId}`);
|
|
115
1394
|
}
|
|
1395
|
+
/**
|
|
1396
|
+
* Executes a tool for the agent
|
|
1397
|
+
* @param toolId - ID of the tool to execute
|
|
1398
|
+
* @param params - Parameters required for tool execution
|
|
1399
|
+
* @returns Promise containing the tool execution results
|
|
1400
|
+
*/
|
|
1401
|
+
executeTool(toolId, params) {
|
|
1402
|
+
const body = {
|
|
1403
|
+
data: params.data,
|
|
1404
|
+
runtimeContext: params.runtimeContext ? Object.fromEntries(params.runtimeContext.entries()) : void 0
|
|
1405
|
+
};
|
|
1406
|
+
return this.request(`/api/agents/${this.agentId}/tools/${toolId}/execute`, {
|
|
1407
|
+
method: "POST",
|
|
1408
|
+
body
|
|
1409
|
+
});
|
|
1410
|
+
}
|
|
116
1411
|
/**
|
|
117
1412
|
* Retrieves evaluation results for the agent
|
|
118
1413
|
* @returns Promise containing agent evaluations
|
|
@@ -127,6 +1422,73 @@ var Agent = class extends BaseResource {
|
|
|
127
1422
|
liveEvals() {
|
|
128
1423
|
return this.request(`/api/agents/${this.agentId}/evals/live`);
|
|
129
1424
|
}
|
|
1425
|
+
/**
|
|
1426
|
+
* Updates the model for the agent
|
|
1427
|
+
* @param params - Parameters for updating the model
|
|
1428
|
+
* @returns Promise containing the updated model
|
|
1429
|
+
*/
|
|
1430
|
+
updateModel(params) {
|
|
1431
|
+
return this.request(`/api/agents/${this.agentId}/model`, {
|
|
1432
|
+
method: "POST",
|
|
1433
|
+
body: params
|
|
1434
|
+
});
|
|
1435
|
+
}
|
|
1436
|
+
};
|
|
1437
|
+
var Network = class extends BaseResource {
|
|
1438
|
+
constructor(options, networkId) {
|
|
1439
|
+
super(options);
|
|
1440
|
+
this.networkId = networkId;
|
|
1441
|
+
}
|
|
1442
|
+
/**
|
|
1443
|
+
* Retrieves details about the network
|
|
1444
|
+
* @returns Promise containing network details
|
|
1445
|
+
*/
|
|
1446
|
+
details() {
|
|
1447
|
+
return this.request(`/api/networks/${this.networkId}`);
|
|
1448
|
+
}
|
|
1449
|
+
/**
|
|
1450
|
+
* Generates a response from the agent
|
|
1451
|
+
* @param params - Generation parameters including prompt
|
|
1452
|
+
* @returns Promise containing the generated response
|
|
1453
|
+
*/
|
|
1454
|
+
generate(params) {
|
|
1455
|
+
const processedParams = {
|
|
1456
|
+
...params,
|
|
1457
|
+
output: zodToJsonSchema(params.output),
|
|
1458
|
+
experimental_output: zodToJsonSchema(params.experimental_output)
|
|
1459
|
+
};
|
|
1460
|
+
return this.request(`/api/networks/${this.networkId}/generate`, {
|
|
1461
|
+
method: "POST",
|
|
1462
|
+
body: processedParams
|
|
1463
|
+
});
|
|
1464
|
+
}
|
|
1465
|
+
/**
|
|
1466
|
+
* Streams a response from the agent
|
|
1467
|
+
* @param params - Stream parameters including prompt
|
|
1468
|
+
* @returns Promise containing the enhanced Response object with processDataStream method
|
|
1469
|
+
*/
|
|
1470
|
+
async stream(params) {
|
|
1471
|
+
const processedParams = {
|
|
1472
|
+
...params,
|
|
1473
|
+
output: zodToJsonSchema(params.output),
|
|
1474
|
+
experimental_output: zodToJsonSchema(params.experimental_output)
|
|
1475
|
+
};
|
|
1476
|
+
const response = await this.request(`/api/networks/${this.networkId}/stream`, {
|
|
1477
|
+
method: "POST",
|
|
1478
|
+
body: processedParams,
|
|
1479
|
+
stream: true
|
|
1480
|
+
});
|
|
1481
|
+
if (!response.body) {
|
|
1482
|
+
throw new Error("No response body");
|
|
1483
|
+
}
|
|
1484
|
+
response.processDataStream = async (options = {}) => {
|
|
1485
|
+
await processDataStream({
|
|
1486
|
+
stream: response.body,
|
|
1487
|
+
...options
|
|
1488
|
+
});
|
|
1489
|
+
};
|
|
1490
|
+
return response;
|
|
1491
|
+
}
|
|
130
1492
|
};
|
|
131
1493
|
|
|
132
1494
|
// src/resources/memory-thread.ts
|
|
@@ -165,17 +1527,52 @@ var MemoryThread = class extends BaseResource {
|
|
|
165
1527
|
}
|
|
166
1528
|
/**
|
|
167
1529
|
* Retrieves messages associated with the thread
|
|
1530
|
+
* @param params - Optional parameters including limit for number of messages to retrieve
|
|
168
1531
|
* @returns Promise containing thread messages and UI messages
|
|
169
1532
|
*/
|
|
170
|
-
getMessages() {
|
|
171
|
-
|
|
1533
|
+
getMessages(params) {
|
|
1534
|
+
const query = new URLSearchParams({
|
|
1535
|
+
agentId: this.agentId,
|
|
1536
|
+
...params?.limit ? { limit: params.limit.toString() } : {}
|
|
1537
|
+
});
|
|
1538
|
+
return this.request(`/api/memory/threads/${this.threadId}/messages?${query.toString()}`);
|
|
172
1539
|
}
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
1540
|
+
/**
|
|
1541
|
+
* Retrieves paginated messages associated with the thread with advanced filtering and selection options
|
|
1542
|
+
* @param params - Pagination parameters including selectBy criteria, page, perPage, date ranges, and message inclusion options
|
|
1543
|
+
* @returns Promise containing paginated thread messages with pagination metadata (total, page, perPage, hasMore)
|
|
1544
|
+
*/
|
|
1545
|
+
getMessagesPaginated({
|
|
1546
|
+
selectBy,
|
|
1547
|
+
...rest
|
|
1548
|
+
}) {
|
|
1549
|
+
const query = new URLSearchParams({
|
|
1550
|
+
...rest,
|
|
1551
|
+
...selectBy ? { selectBy: JSON.stringify(selectBy) } : {}
|
|
1552
|
+
});
|
|
1553
|
+
return this.request(`/api/memory/threads/${this.threadId}/messages/paginated?${query.toString()}`);
|
|
1554
|
+
}
|
|
1555
|
+
/**
|
|
1556
|
+
* Deletes one or more messages from the thread
|
|
1557
|
+
* @param messageIds - Can be a single message ID (string), array of message IDs,
|
|
1558
|
+
* message object with id property, or array of message objects
|
|
1559
|
+
* @returns Promise containing deletion result
|
|
1560
|
+
*/
|
|
1561
|
+
deleteMessages(messageIds) {
|
|
1562
|
+
const query = new URLSearchParams({
|
|
1563
|
+
agentId: this.agentId
|
|
1564
|
+
});
|
|
1565
|
+
return this.request(`/api/memory/messages/delete?${query.toString()}`, {
|
|
1566
|
+
method: "POST",
|
|
1567
|
+
body: { messageIds }
|
|
1568
|
+
});
|
|
1569
|
+
}
|
|
1570
|
+
};
|
|
1571
|
+
|
|
1572
|
+
// src/resources/vector.ts
|
|
1573
|
+
var Vector = class extends BaseResource {
|
|
1574
|
+
constructor(options, vectorName) {
|
|
1575
|
+
super(options);
|
|
179
1576
|
this.vectorName = vectorName;
|
|
180
1577
|
}
|
|
181
1578
|
/**
|
|
@@ -215,115 +1612,1281 @@ var Vector = class extends BaseResource {
|
|
|
215
1612
|
});
|
|
216
1613
|
}
|
|
217
1614
|
/**
|
|
218
|
-
* Upserts vectors into an index
|
|
219
|
-
* @param params - Parameters containing vectors, metadata, and optional IDs
|
|
220
|
-
* @returns Promise containing array of vector IDs
|
|
1615
|
+
* Upserts vectors into an index
|
|
1616
|
+
* @param params - Parameters containing vectors, metadata, and optional IDs
|
|
1617
|
+
* @returns Promise containing array of vector IDs
|
|
1618
|
+
*/
|
|
1619
|
+
upsert(params) {
|
|
1620
|
+
return this.request(`/api/vector/${this.vectorName}/upsert`, {
|
|
1621
|
+
method: "POST",
|
|
1622
|
+
body: params
|
|
1623
|
+
});
|
|
1624
|
+
}
|
|
1625
|
+
/**
|
|
1626
|
+
* Queries vectors in an index
|
|
1627
|
+
* @param params - Query parameters including query vector and search options
|
|
1628
|
+
* @returns Promise containing query results
|
|
1629
|
+
*/
|
|
1630
|
+
query(params) {
|
|
1631
|
+
return this.request(`/api/vector/${this.vectorName}/query`, {
|
|
1632
|
+
method: "POST",
|
|
1633
|
+
body: params
|
|
1634
|
+
});
|
|
1635
|
+
}
|
|
1636
|
+
};
|
|
1637
|
+
|
|
1638
|
+
// src/resources/legacy-workflow.ts
|
|
1639
|
+
var RECORD_SEPARATOR = "";
|
|
1640
|
+
var LegacyWorkflow = class extends BaseResource {
|
|
1641
|
+
constructor(options, workflowId) {
|
|
1642
|
+
super(options);
|
|
1643
|
+
this.workflowId = workflowId;
|
|
1644
|
+
}
|
|
1645
|
+
/**
|
|
1646
|
+
* Retrieves details about the legacy workflow
|
|
1647
|
+
* @returns Promise containing legacy workflow details including steps and graphs
|
|
1648
|
+
*/
|
|
1649
|
+
details() {
|
|
1650
|
+
return this.request(`/api/workflows/legacy/${this.workflowId}`);
|
|
1651
|
+
}
|
|
1652
|
+
/**
|
|
1653
|
+
* Retrieves all runs for a legacy workflow
|
|
1654
|
+
* @param params - Parameters for filtering runs
|
|
1655
|
+
* @returns Promise containing legacy workflow runs array
|
|
1656
|
+
*/
|
|
1657
|
+
runs(params) {
|
|
1658
|
+
const searchParams = new URLSearchParams();
|
|
1659
|
+
if (params?.fromDate) {
|
|
1660
|
+
searchParams.set("fromDate", params.fromDate.toISOString());
|
|
1661
|
+
}
|
|
1662
|
+
if (params?.toDate) {
|
|
1663
|
+
searchParams.set("toDate", params.toDate.toISOString());
|
|
1664
|
+
}
|
|
1665
|
+
if (params?.limit) {
|
|
1666
|
+
searchParams.set("limit", String(params.limit));
|
|
1667
|
+
}
|
|
1668
|
+
if (params?.offset) {
|
|
1669
|
+
searchParams.set("offset", String(params.offset));
|
|
1670
|
+
}
|
|
1671
|
+
if (params?.resourceId) {
|
|
1672
|
+
searchParams.set("resourceId", params.resourceId);
|
|
1673
|
+
}
|
|
1674
|
+
if (searchParams.size) {
|
|
1675
|
+
return this.request(`/api/workflows/legacy/${this.workflowId}/runs?${searchParams}`);
|
|
1676
|
+
} else {
|
|
1677
|
+
return this.request(`/api/workflows/legacy/${this.workflowId}/runs`);
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
/**
|
|
1681
|
+
* Creates a new legacy workflow run
|
|
1682
|
+
* @returns Promise containing the generated run ID
|
|
1683
|
+
*/
|
|
1684
|
+
createRun(params) {
|
|
1685
|
+
const searchParams = new URLSearchParams();
|
|
1686
|
+
if (!!params?.runId) {
|
|
1687
|
+
searchParams.set("runId", params.runId);
|
|
1688
|
+
}
|
|
1689
|
+
return this.request(`/api/workflows/legacy/${this.workflowId}/create-run?${searchParams.toString()}`, {
|
|
1690
|
+
method: "POST"
|
|
1691
|
+
});
|
|
1692
|
+
}
|
|
1693
|
+
/**
|
|
1694
|
+
* Starts a legacy workflow run synchronously without waiting for the workflow to complete
|
|
1695
|
+
* @param params - Object containing the runId and triggerData
|
|
1696
|
+
* @returns Promise containing success message
|
|
1697
|
+
*/
|
|
1698
|
+
start(params) {
|
|
1699
|
+
return this.request(`/api/workflows/legacy/${this.workflowId}/start?runId=${params.runId}`, {
|
|
1700
|
+
method: "POST",
|
|
1701
|
+
body: params?.triggerData
|
|
1702
|
+
});
|
|
1703
|
+
}
|
|
1704
|
+
/**
|
|
1705
|
+
* Resumes a suspended legacy workflow step synchronously without waiting for the workflow to complete
|
|
1706
|
+
* @param stepId - ID of the step to resume
|
|
1707
|
+
* @param runId - ID of the legacy workflow run
|
|
1708
|
+
* @param context - Context to resume the legacy workflow with
|
|
1709
|
+
* @returns Promise containing the legacy workflow resume results
|
|
1710
|
+
*/
|
|
1711
|
+
resume({
|
|
1712
|
+
stepId,
|
|
1713
|
+
runId,
|
|
1714
|
+
context
|
|
1715
|
+
}) {
|
|
1716
|
+
return this.request(`/api/workflows/legacy/${this.workflowId}/resume?runId=${runId}`, {
|
|
1717
|
+
method: "POST",
|
|
1718
|
+
body: {
|
|
1719
|
+
stepId,
|
|
1720
|
+
context
|
|
1721
|
+
}
|
|
1722
|
+
});
|
|
1723
|
+
}
|
|
1724
|
+
/**
|
|
1725
|
+
* Starts a workflow run asynchronously and returns a promise that resolves when the workflow is complete
|
|
1726
|
+
* @param params - Object containing the optional runId and triggerData
|
|
1727
|
+
* @returns Promise containing the workflow execution results
|
|
1728
|
+
*/
|
|
1729
|
+
startAsync(params) {
|
|
1730
|
+
const searchParams = new URLSearchParams();
|
|
1731
|
+
if (!!params?.runId) {
|
|
1732
|
+
searchParams.set("runId", params.runId);
|
|
1733
|
+
}
|
|
1734
|
+
return this.request(`/api/workflows/legacy/${this.workflowId}/start-async?${searchParams.toString()}`, {
|
|
1735
|
+
method: "POST",
|
|
1736
|
+
body: params?.triggerData
|
|
1737
|
+
});
|
|
1738
|
+
}
|
|
1739
|
+
/**
|
|
1740
|
+
* Resumes a suspended legacy workflow step asynchronously and returns a promise that resolves when the workflow is complete
|
|
1741
|
+
* @param params - Object containing the runId, stepId, and context
|
|
1742
|
+
* @returns Promise containing the workflow resume results
|
|
1743
|
+
*/
|
|
1744
|
+
resumeAsync(params) {
|
|
1745
|
+
return this.request(`/api/workflows/legacy/${this.workflowId}/resume-async?runId=${params.runId}`, {
|
|
1746
|
+
method: "POST",
|
|
1747
|
+
body: {
|
|
1748
|
+
stepId: params.stepId,
|
|
1749
|
+
context: params.context
|
|
1750
|
+
}
|
|
1751
|
+
});
|
|
1752
|
+
}
|
|
1753
|
+
/**
|
|
1754
|
+
* Creates an async generator that processes a readable stream and yields records
|
|
1755
|
+
* separated by the Record Separator character (\x1E)
|
|
1756
|
+
*
|
|
1757
|
+
* @param stream - The readable stream to process
|
|
1758
|
+
* @returns An async generator that yields parsed records
|
|
1759
|
+
*/
|
|
1760
|
+
async *streamProcessor(stream) {
|
|
1761
|
+
const reader = stream.getReader();
|
|
1762
|
+
let doneReading = false;
|
|
1763
|
+
let buffer = "";
|
|
1764
|
+
try {
|
|
1765
|
+
while (!doneReading) {
|
|
1766
|
+
const { done, value } = await reader.read();
|
|
1767
|
+
doneReading = done;
|
|
1768
|
+
if (done && !value) continue;
|
|
1769
|
+
try {
|
|
1770
|
+
const decoded = value ? new TextDecoder().decode(value) : "";
|
|
1771
|
+
const chunks = (buffer + decoded).split(RECORD_SEPARATOR);
|
|
1772
|
+
buffer = chunks.pop() || "";
|
|
1773
|
+
for (const chunk of chunks) {
|
|
1774
|
+
if (chunk) {
|
|
1775
|
+
if (typeof chunk === "string") {
|
|
1776
|
+
try {
|
|
1777
|
+
const parsedChunk = JSON.parse(chunk);
|
|
1778
|
+
yield parsedChunk;
|
|
1779
|
+
} catch {
|
|
1780
|
+
}
|
|
1781
|
+
}
|
|
1782
|
+
}
|
|
1783
|
+
}
|
|
1784
|
+
} catch {
|
|
1785
|
+
}
|
|
1786
|
+
}
|
|
1787
|
+
if (buffer) {
|
|
1788
|
+
try {
|
|
1789
|
+
yield JSON.parse(buffer);
|
|
1790
|
+
} catch {
|
|
1791
|
+
}
|
|
1792
|
+
}
|
|
1793
|
+
} finally {
|
|
1794
|
+
reader.cancel().catch(() => {
|
|
1795
|
+
});
|
|
1796
|
+
}
|
|
1797
|
+
}
|
|
1798
|
+
/**
|
|
1799
|
+
* Watches legacy workflow transitions in real-time
|
|
1800
|
+
* @param runId - Optional run ID to filter the watch stream
|
|
1801
|
+
* @returns AsyncGenerator that yields parsed records from the legacy workflow watch stream
|
|
1802
|
+
*/
|
|
1803
|
+
async watch({ runId }, onRecord) {
|
|
1804
|
+
const response = await this.request(`/api/workflows/legacy/${this.workflowId}/watch?runId=${runId}`, {
|
|
1805
|
+
stream: true
|
|
1806
|
+
});
|
|
1807
|
+
if (!response.ok) {
|
|
1808
|
+
throw new Error(`Failed to watch legacy workflow: ${response.statusText}`);
|
|
1809
|
+
}
|
|
1810
|
+
if (!response.body) {
|
|
1811
|
+
throw new Error("Response body is null");
|
|
1812
|
+
}
|
|
1813
|
+
for await (const record of this.streamProcessor(response.body)) {
|
|
1814
|
+
onRecord(record);
|
|
1815
|
+
}
|
|
1816
|
+
}
|
|
1817
|
+
};
|
|
1818
|
+
|
|
1819
|
+
// src/resources/tool.ts
|
|
1820
|
+
var Tool = class extends BaseResource {
|
|
1821
|
+
constructor(options, toolId) {
|
|
1822
|
+
super(options);
|
|
1823
|
+
this.toolId = toolId;
|
|
1824
|
+
}
|
|
1825
|
+
/**
|
|
1826
|
+
* Retrieves details about the tool
|
|
1827
|
+
* @returns Promise containing tool details including description and schemas
|
|
1828
|
+
*/
|
|
1829
|
+
details() {
|
|
1830
|
+
return this.request(`/api/tools/${this.toolId}`);
|
|
1831
|
+
}
|
|
1832
|
+
/**
|
|
1833
|
+
* Executes the tool with the provided parameters
|
|
1834
|
+
* @param params - Parameters required for tool execution
|
|
1835
|
+
* @returns Promise containing the tool execution results
|
|
1836
|
+
*/
|
|
1837
|
+
execute(params) {
|
|
1838
|
+
const url = new URLSearchParams();
|
|
1839
|
+
if (params.runId) {
|
|
1840
|
+
url.set("runId", params.runId);
|
|
1841
|
+
}
|
|
1842
|
+
const body = {
|
|
1843
|
+
data: params.data,
|
|
1844
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext)
|
|
1845
|
+
};
|
|
1846
|
+
return this.request(`/api/tools/${this.toolId}/execute?${url.toString()}`, {
|
|
1847
|
+
method: "POST",
|
|
1848
|
+
body
|
|
1849
|
+
});
|
|
1850
|
+
}
|
|
1851
|
+
};
|
|
1852
|
+
|
|
1853
|
+
// src/resources/workflow.ts
|
|
1854
|
+
var RECORD_SEPARATOR2 = "";
|
|
1855
|
+
var Workflow = class extends BaseResource {
|
|
1856
|
+
constructor(options, workflowId) {
|
|
1857
|
+
super(options);
|
|
1858
|
+
this.workflowId = workflowId;
|
|
1859
|
+
}
|
|
1860
|
+
/**
|
|
1861
|
+
* Creates an async generator that processes a readable stream and yields workflow records
|
|
1862
|
+
* separated by the Record Separator character (\x1E)
|
|
1863
|
+
*
|
|
1864
|
+
* @param stream - The readable stream to process
|
|
1865
|
+
* @returns An async generator that yields parsed records
|
|
1866
|
+
*/
|
|
1867
|
+
async *streamProcessor(stream) {
|
|
1868
|
+
const reader = stream.getReader();
|
|
1869
|
+
let doneReading = false;
|
|
1870
|
+
let buffer = "";
|
|
1871
|
+
try {
|
|
1872
|
+
while (!doneReading) {
|
|
1873
|
+
const { done, value } = await reader.read();
|
|
1874
|
+
doneReading = done;
|
|
1875
|
+
if (done && !value) continue;
|
|
1876
|
+
try {
|
|
1877
|
+
const decoded = value ? new TextDecoder().decode(value) : "";
|
|
1878
|
+
const chunks = (buffer + decoded).split(RECORD_SEPARATOR2);
|
|
1879
|
+
buffer = chunks.pop() || "";
|
|
1880
|
+
for (const chunk of chunks) {
|
|
1881
|
+
if (chunk) {
|
|
1882
|
+
if (typeof chunk === "string") {
|
|
1883
|
+
try {
|
|
1884
|
+
const parsedChunk = JSON.parse(chunk);
|
|
1885
|
+
yield parsedChunk;
|
|
1886
|
+
} catch {
|
|
1887
|
+
}
|
|
1888
|
+
}
|
|
1889
|
+
}
|
|
1890
|
+
}
|
|
1891
|
+
} catch {
|
|
1892
|
+
}
|
|
1893
|
+
}
|
|
1894
|
+
if (buffer) {
|
|
1895
|
+
try {
|
|
1896
|
+
yield JSON.parse(buffer);
|
|
1897
|
+
} catch {
|
|
1898
|
+
}
|
|
1899
|
+
}
|
|
1900
|
+
} finally {
|
|
1901
|
+
reader.cancel().catch(() => {
|
|
1902
|
+
});
|
|
1903
|
+
}
|
|
1904
|
+
}
|
|
1905
|
+
/**
|
|
1906
|
+
* Retrieves details about the workflow
|
|
1907
|
+
* @returns Promise containing workflow details including steps and graphs
|
|
1908
|
+
*/
|
|
1909
|
+
details() {
|
|
1910
|
+
return this.request(`/api/workflows/${this.workflowId}`);
|
|
1911
|
+
}
|
|
1912
|
+
/**
|
|
1913
|
+
* Retrieves all runs for a workflow
|
|
1914
|
+
* @param params - Parameters for filtering runs
|
|
1915
|
+
* @returns Promise containing workflow runs array
|
|
1916
|
+
*/
|
|
1917
|
+
runs(params) {
|
|
1918
|
+
const searchParams = new URLSearchParams();
|
|
1919
|
+
if (params?.fromDate) {
|
|
1920
|
+
searchParams.set("fromDate", params.fromDate.toISOString());
|
|
1921
|
+
}
|
|
1922
|
+
if (params?.toDate) {
|
|
1923
|
+
searchParams.set("toDate", params.toDate.toISOString());
|
|
1924
|
+
}
|
|
1925
|
+
if (params?.limit !== null && params?.limit !== void 0 && !isNaN(Number(params?.limit))) {
|
|
1926
|
+
searchParams.set("limit", String(params.limit));
|
|
1927
|
+
}
|
|
1928
|
+
if (params?.offset !== null && params?.offset !== void 0 && !isNaN(Number(params?.offset))) {
|
|
1929
|
+
searchParams.set("offset", String(params.offset));
|
|
1930
|
+
}
|
|
1931
|
+
if (params?.resourceId) {
|
|
1932
|
+
searchParams.set("resourceId", params.resourceId);
|
|
1933
|
+
}
|
|
1934
|
+
if (searchParams.size) {
|
|
1935
|
+
return this.request(`/api/workflows/${this.workflowId}/runs?${searchParams}`);
|
|
1936
|
+
} else {
|
|
1937
|
+
return this.request(`/api/workflows/${this.workflowId}/runs`);
|
|
1938
|
+
}
|
|
1939
|
+
}
|
|
1940
|
+
/**
|
|
1941
|
+
* Retrieves a specific workflow run by its ID
|
|
1942
|
+
* @param runId - The ID of the workflow run to retrieve
|
|
1943
|
+
* @returns Promise containing the workflow run details
|
|
1944
|
+
*/
|
|
1945
|
+
runById(runId) {
|
|
1946
|
+
return this.request(`/api/workflows/${this.workflowId}/runs/${runId}`);
|
|
1947
|
+
}
|
|
1948
|
+
/**
|
|
1949
|
+
* Retrieves the execution result for a specific workflow run by its ID
|
|
1950
|
+
* @param runId - The ID of the workflow run to retrieve the execution result for
|
|
1951
|
+
* @returns Promise containing the workflow run execution result
|
|
1952
|
+
*/
|
|
1953
|
+
runExecutionResult(runId) {
|
|
1954
|
+
return this.request(`/api/workflows/${this.workflowId}/runs/${runId}/execution-result`);
|
|
1955
|
+
}
|
|
1956
|
+
/**
|
|
1957
|
+
* Cancels a specific workflow run by its ID
|
|
1958
|
+
* @param runId - The ID of the workflow run to cancel
|
|
1959
|
+
* @returns Promise containing a success message
|
|
1960
|
+
*/
|
|
1961
|
+
cancelRun(runId) {
|
|
1962
|
+
return this.request(`/api/workflows/${this.workflowId}/runs/${runId}/cancel`, {
|
|
1963
|
+
method: "POST"
|
|
1964
|
+
});
|
|
1965
|
+
}
|
|
1966
|
+
/**
|
|
1967
|
+
* Sends an event to a specific workflow run by its ID
|
|
1968
|
+
* @param params - Object containing the runId, event and data
|
|
1969
|
+
* @returns Promise containing a success message
|
|
1970
|
+
*/
|
|
1971
|
+
sendRunEvent(params) {
|
|
1972
|
+
return this.request(`/api/workflows/${this.workflowId}/runs/${params.runId}/send-event`, {
|
|
1973
|
+
method: "POST",
|
|
1974
|
+
body: { event: params.event, data: params.data }
|
|
1975
|
+
});
|
|
1976
|
+
}
|
|
1977
|
+
/**
|
|
1978
|
+
* Creates a new workflow run
|
|
1979
|
+
* @param params - Optional object containing the optional runId
|
|
1980
|
+
* @returns Promise containing the runId of the created run
|
|
1981
|
+
*/
|
|
1982
|
+
createRun(params) {
|
|
1983
|
+
const searchParams = new URLSearchParams();
|
|
1984
|
+
if (!!params?.runId) {
|
|
1985
|
+
searchParams.set("runId", params.runId);
|
|
1986
|
+
}
|
|
1987
|
+
return this.request(`/api/workflows/${this.workflowId}/create-run?${searchParams.toString()}`, {
|
|
1988
|
+
method: "POST"
|
|
1989
|
+
});
|
|
1990
|
+
}
|
|
1991
|
+
/**
|
|
1992
|
+
* Creates a new workflow run (alias for createRun)
|
|
1993
|
+
* @param params - Optional object containing the optional runId
|
|
1994
|
+
* @returns Promise containing the runId of the created run
|
|
1995
|
+
*/
|
|
1996
|
+
createRunAsync(params) {
|
|
1997
|
+
return this.createRun(params);
|
|
1998
|
+
}
|
|
1999
|
+
/**
|
|
2000
|
+
* Starts a workflow run synchronously without waiting for the workflow to complete
|
|
2001
|
+
* @param params - Object containing the runId, inputData and runtimeContext
|
|
2002
|
+
* @returns Promise containing success message
|
|
2003
|
+
*/
|
|
2004
|
+
start(params) {
|
|
2005
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2006
|
+
return this.request(`/api/workflows/${this.workflowId}/start?runId=${params.runId}`, {
|
|
2007
|
+
method: "POST",
|
|
2008
|
+
body: { inputData: params?.inputData, runtimeContext }
|
|
2009
|
+
});
|
|
2010
|
+
}
|
|
2011
|
+
/**
|
|
2012
|
+
* Resumes a suspended workflow step synchronously without waiting for the workflow to complete
|
|
2013
|
+
* @param params - Object containing the runId, step, resumeData and runtimeContext
|
|
2014
|
+
* @returns Promise containing success message
|
|
2015
|
+
*/
|
|
2016
|
+
resume({
|
|
2017
|
+
step,
|
|
2018
|
+
runId,
|
|
2019
|
+
resumeData,
|
|
2020
|
+
...rest
|
|
2021
|
+
}) {
|
|
2022
|
+
const runtimeContext = parseClientRuntimeContext(rest.runtimeContext);
|
|
2023
|
+
return this.request(`/api/workflows/${this.workflowId}/resume?runId=${runId}`, {
|
|
2024
|
+
method: "POST",
|
|
2025
|
+
stream: true,
|
|
2026
|
+
body: {
|
|
2027
|
+
step,
|
|
2028
|
+
resumeData,
|
|
2029
|
+
runtimeContext
|
|
2030
|
+
}
|
|
2031
|
+
});
|
|
2032
|
+
}
|
|
2033
|
+
/**
|
|
2034
|
+
* Starts a workflow run asynchronously and returns a promise that resolves when the workflow is complete
|
|
2035
|
+
* @param params - Object containing the optional runId, inputData and runtimeContext
|
|
2036
|
+
* @returns Promise containing the workflow execution results
|
|
2037
|
+
*/
|
|
2038
|
+
startAsync(params) {
|
|
2039
|
+
const searchParams = new URLSearchParams();
|
|
2040
|
+
if (!!params?.runId) {
|
|
2041
|
+
searchParams.set("runId", params.runId);
|
|
2042
|
+
}
|
|
2043
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2044
|
+
return this.request(`/api/workflows/${this.workflowId}/start-async?${searchParams.toString()}`, {
|
|
2045
|
+
method: "POST",
|
|
2046
|
+
body: { inputData: params.inputData, runtimeContext }
|
|
2047
|
+
});
|
|
2048
|
+
}
|
|
2049
|
+
/**
|
|
2050
|
+
* Starts a workflow run and returns a stream
|
|
2051
|
+
* @param params - Object containing the optional runId, inputData and runtimeContext
|
|
2052
|
+
* @returns Promise containing the workflow execution results
|
|
2053
|
+
*/
|
|
2054
|
+
async stream(params) {
|
|
2055
|
+
const searchParams = new URLSearchParams();
|
|
2056
|
+
if (!!params?.runId) {
|
|
2057
|
+
searchParams.set("runId", params.runId);
|
|
2058
|
+
}
|
|
2059
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2060
|
+
const response = await this.request(
|
|
2061
|
+
`/api/workflows/${this.workflowId}/stream?${searchParams.toString()}`,
|
|
2062
|
+
{
|
|
2063
|
+
method: "POST",
|
|
2064
|
+
body: { inputData: params.inputData, runtimeContext },
|
|
2065
|
+
stream: true
|
|
2066
|
+
}
|
|
2067
|
+
);
|
|
2068
|
+
if (!response.ok) {
|
|
2069
|
+
throw new Error(`Failed to stream vNext workflow: ${response.statusText}`);
|
|
2070
|
+
}
|
|
2071
|
+
if (!response.body) {
|
|
2072
|
+
throw new Error("Response body is null");
|
|
2073
|
+
}
|
|
2074
|
+
let failedChunk = void 0;
|
|
2075
|
+
const transformStream = new TransformStream({
|
|
2076
|
+
start() {
|
|
2077
|
+
},
|
|
2078
|
+
async transform(chunk, controller) {
|
|
2079
|
+
try {
|
|
2080
|
+
const decoded = new TextDecoder().decode(chunk);
|
|
2081
|
+
const chunks = decoded.split(RECORD_SEPARATOR2);
|
|
2082
|
+
for (const chunk2 of chunks) {
|
|
2083
|
+
if (chunk2) {
|
|
2084
|
+
const newChunk = failedChunk ? failedChunk + chunk2 : chunk2;
|
|
2085
|
+
try {
|
|
2086
|
+
const parsedChunk = JSON.parse(newChunk);
|
|
2087
|
+
controller.enqueue(parsedChunk);
|
|
2088
|
+
failedChunk = void 0;
|
|
2089
|
+
} catch {
|
|
2090
|
+
failedChunk = newChunk;
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2093
|
+
}
|
|
2094
|
+
} catch {
|
|
2095
|
+
}
|
|
2096
|
+
}
|
|
2097
|
+
});
|
|
2098
|
+
return response.body.pipeThrough(transformStream);
|
|
2099
|
+
}
|
|
2100
|
+
/**
|
|
2101
|
+
* Resumes a suspended workflow step asynchronously and returns a promise that resolves when the workflow is complete
|
|
2102
|
+
* @param params - Object containing the runId, step, resumeData and runtimeContext
|
|
2103
|
+
* @returns Promise containing the workflow resume results
|
|
2104
|
+
*/
|
|
2105
|
+
resumeAsync(params) {
|
|
2106
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2107
|
+
return this.request(`/api/workflows/${this.workflowId}/resume-async?runId=${params.runId}`, {
|
|
2108
|
+
method: "POST",
|
|
2109
|
+
body: {
|
|
2110
|
+
step: params.step,
|
|
2111
|
+
resumeData: params.resumeData,
|
|
2112
|
+
runtimeContext
|
|
2113
|
+
}
|
|
2114
|
+
});
|
|
2115
|
+
}
|
|
2116
|
+
/**
|
|
2117
|
+
* Watches workflow transitions in real-time
|
|
2118
|
+
* @param runId - Optional run ID to filter the watch stream
|
|
2119
|
+
* @returns AsyncGenerator that yields parsed records from the workflow watch stream
|
|
2120
|
+
*/
|
|
2121
|
+
async watch({ runId }, onRecord) {
|
|
2122
|
+
const response = await this.request(`/api/workflows/${this.workflowId}/watch?runId=${runId}`, {
|
|
2123
|
+
stream: true
|
|
2124
|
+
});
|
|
2125
|
+
if (!response.ok) {
|
|
2126
|
+
throw new Error(`Failed to watch workflow: ${response.statusText}`);
|
|
2127
|
+
}
|
|
2128
|
+
if (!response.body) {
|
|
2129
|
+
throw new Error("Response body is null");
|
|
2130
|
+
}
|
|
2131
|
+
for await (const record of this.streamProcessor(response.body)) {
|
|
2132
|
+
if (typeof record === "string") {
|
|
2133
|
+
onRecord(JSON.parse(record));
|
|
2134
|
+
} else {
|
|
2135
|
+
onRecord(record);
|
|
2136
|
+
}
|
|
2137
|
+
}
|
|
2138
|
+
}
|
|
2139
|
+
/**
|
|
2140
|
+
* Creates a new ReadableStream from an iterable or async iterable of objects,
|
|
2141
|
+
* serializing each as JSON and separating them with the record separator (\x1E).
|
|
2142
|
+
*
|
|
2143
|
+
* @param records - An iterable or async iterable of objects to stream
|
|
2144
|
+
* @returns A ReadableStream emitting the records as JSON strings separated by the record separator
|
|
2145
|
+
*/
|
|
2146
|
+
static createRecordStream(records) {
|
|
2147
|
+
const encoder = new TextEncoder();
|
|
2148
|
+
return new ReadableStream({
|
|
2149
|
+
async start(controller) {
|
|
2150
|
+
try {
|
|
2151
|
+
for await (const record of records) {
|
|
2152
|
+
const json = JSON.stringify(record) + RECORD_SEPARATOR2;
|
|
2153
|
+
controller.enqueue(encoder.encode(json));
|
|
2154
|
+
}
|
|
2155
|
+
controller.close();
|
|
2156
|
+
} catch (err) {
|
|
2157
|
+
controller.error(err);
|
|
2158
|
+
}
|
|
2159
|
+
}
|
|
2160
|
+
});
|
|
2161
|
+
}
|
|
2162
|
+
};
|
|
2163
|
+
|
|
2164
|
+
// src/resources/a2a.ts
|
|
2165
|
+
var A2A = class extends BaseResource {
|
|
2166
|
+
constructor(options, agentId) {
|
|
2167
|
+
super(options);
|
|
2168
|
+
this.agentId = agentId;
|
|
2169
|
+
}
|
|
2170
|
+
/**
|
|
2171
|
+
* Get the agent card with metadata about the agent
|
|
2172
|
+
* @returns Promise containing the agent card information
|
|
2173
|
+
*/
|
|
2174
|
+
async getCard() {
|
|
2175
|
+
return this.request(`/.well-known/${this.agentId}/agent-card.json`);
|
|
2176
|
+
}
|
|
2177
|
+
/**
|
|
2178
|
+
* Send a message to the agent and gets a message or task response
|
|
2179
|
+
* @param params - Parameters for the task
|
|
2180
|
+
* @returns Promise containing the response
|
|
2181
|
+
*/
|
|
2182
|
+
async sendMessage(params) {
|
|
2183
|
+
const response = await this.request(`/a2a/${this.agentId}`, {
|
|
2184
|
+
method: "POST",
|
|
2185
|
+
body: {
|
|
2186
|
+
method: "message/send",
|
|
2187
|
+
params
|
|
2188
|
+
}
|
|
2189
|
+
});
|
|
2190
|
+
return response;
|
|
2191
|
+
}
|
|
2192
|
+
/**
|
|
2193
|
+
* Sends a message to an agent to initiate/continue a task and subscribes
|
|
2194
|
+
* the client to real-time updates for that task via Server-Sent Events (SSE).
|
|
2195
|
+
* @param params - Parameters for the task
|
|
2196
|
+
* @returns A stream of Server-Sent Events. Each SSE `data` field contains a `SendStreamingMessageResponse`
|
|
2197
|
+
*/
|
|
2198
|
+
async sendStreamingMessage(params) {
|
|
2199
|
+
const response = await this.request(`/a2a/${this.agentId}`, {
|
|
2200
|
+
method: "POST",
|
|
2201
|
+
body: {
|
|
2202
|
+
method: "message/stream",
|
|
2203
|
+
params
|
|
2204
|
+
}
|
|
2205
|
+
});
|
|
2206
|
+
return response;
|
|
2207
|
+
}
|
|
2208
|
+
/**
|
|
2209
|
+
* Get the status and result of a task
|
|
2210
|
+
* @param params - Parameters for querying the task
|
|
2211
|
+
* @returns Promise containing the task response
|
|
2212
|
+
*/
|
|
2213
|
+
async getTask(params) {
|
|
2214
|
+
const response = await this.request(`/a2a/${this.agentId}`, {
|
|
2215
|
+
method: "POST",
|
|
2216
|
+
body: {
|
|
2217
|
+
method: "tasks/get",
|
|
2218
|
+
params
|
|
2219
|
+
}
|
|
2220
|
+
});
|
|
2221
|
+
return response;
|
|
2222
|
+
}
|
|
2223
|
+
/**
|
|
2224
|
+
* Cancel a running task
|
|
2225
|
+
* @param params - Parameters identifying the task to cancel
|
|
2226
|
+
* @returns Promise containing the task response
|
|
2227
|
+
*/
|
|
2228
|
+
async cancelTask(params) {
|
|
2229
|
+
return this.request(`/a2a/${this.agentId}`, {
|
|
2230
|
+
method: "POST",
|
|
2231
|
+
body: {
|
|
2232
|
+
method: "tasks/cancel",
|
|
2233
|
+
params
|
|
2234
|
+
}
|
|
2235
|
+
});
|
|
2236
|
+
}
|
|
2237
|
+
};
|
|
2238
|
+
|
|
2239
|
+
// src/resources/mcp-tool.ts
|
|
2240
|
+
var MCPTool = class extends BaseResource {
|
|
2241
|
+
serverId;
|
|
2242
|
+
toolId;
|
|
2243
|
+
constructor(options, serverId, toolId) {
|
|
2244
|
+
super(options);
|
|
2245
|
+
this.serverId = serverId;
|
|
2246
|
+
this.toolId = toolId;
|
|
2247
|
+
}
|
|
2248
|
+
/**
|
|
2249
|
+
* Retrieves details about this specific tool from the MCP server.
|
|
2250
|
+
* @returns Promise containing the tool's information (name, description, schema).
|
|
2251
|
+
*/
|
|
2252
|
+
details() {
|
|
2253
|
+
return this.request(`/api/mcp/${this.serverId}/tools/${this.toolId}`);
|
|
2254
|
+
}
|
|
2255
|
+
/**
|
|
2256
|
+
* Executes this specific tool on the MCP server.
|
|
2257
|
+
* @param params - Parameters for tool execution, including data/args and optional runtimeContext.
|
|
2258
|
+
* @returns Promise containing the result of the tool execution.
|
|
2259
|
+
*/
|
|
2260
|
+
execute(params) {
|
|
2261
|
+
const body = {};
|
|
2262
|
+
if (params.data !== void 0) body.data = params.data;
|
|
2263
|
+
if (params.runtimeContext !== void 0) {
|
|
2264
|
+
body.runtimeContext = params.runtimeContext;
|
|
2265
|
+
}
|
|
2266
|
+
return this.request(`/api/mcp/${this.serverId}/tools/${this.toolId}/execute`, {
|
|
2267
|
+
method: "POST",
|
|
2268
|
+
body: Object.keys(body).length > 0 ? body : void 0
|
|
2269
|
+
});
|
|
2270
|
+
}
|
|
2271
|
+
};
|
|
2272
|
+
|
|
2273
|
+
// src/resources/agent-builder.ts
|
|
2274
|
+
var RECORD_SEPARATOR3 = "";
|
|
2275
|
+
var AgentBuilder = class extends BaseResource {
|
|
2276
|
+
constructor(options, actionId) {
|
|
2277
|
+
super(options);
|
|
2278
|
+
this.actionId = actionId;
|
|
2279
|
+
}
|
|
2280
|
+
// Helper function to transform workflow result to action result
|
|
2281
|
+
transformWorkflowResult(result) {
|
|
2282
|
+
if (result.status === "success") {
|
|
2283
|
+
return {
|
|
2284
|
+
success: result.result.success || false,
|
|
2285
|
+
applied: result.result.applied || false,
|
|
2286
|
+
branchName: result.result.branchName,
|
|
2287
|
+
message: result.result.message || "Agent builder action completed",
|
|
2288
|
+
validationResults: result.result.validationResults,
|
|
2289
|
+
error: result.result.error,
|
|
2290
|
+
errors: result.result.errors,
|
|
2291
|
+
stepResults: result.result.stepResults
|
|
2292
|
+
};
|
|
2293
|
+
} else if (result.status === "failed") {
|
|
2294
|
+
return {
|
|
2295
|
+
success: false,
|
|
2296
|
+
applied: false,
|
|
2297
|
+
message: `Agent builder action failed: ${result.error.message}`,
|
|
2298
|
+
error: result.error.message
|
|
2299
|
+
};
|
|
2300
|
+
} else {
|
|
2301
|
+
return {
|
|
2302
|
+
success: false,
|
|
2303
|
+
applied: false,
|
|
2304
|
+
message: "Agent builder action was suspended",
|
|
2305
|
+
error: "Workflow suspended - manual intervention required"
|
|
2306
|
+
};
|
|
2307
|
+
}
|
|
2308
|
+
}
|
|
2309
|
+
/**
|
|
2310
|
+
* Creates a new agent builder action run and returns the runId.
|
|
2311
|
+
* This calls `/api/agent-builder/:actionId/create-run`.
|
|
2312
|
+
*/
|
|
2313
|
+
async createRun(params, runId) {
|
|
2314
|
+
const searchParams = new URLSearchParams();
|
|
2315
|
+
if (runId) {
|
|
2316
|
+
searchParams.set("runId", runId);
|
|
2317
|
+
}
|
|
2318
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2319
|
+
const { runtimeContext: _, ...actionParams } = params;
|
|
2320
|
+
const url = `/api/agent-builder/${this.actionId}/create-run${searchParams.toString() ? `?${searchParams.toString()}` : ""}`;
|
|
2321
|
+
return this.request(url, {
|
|
2322
|
+
method: "POST",
|
|
2323
|
+
body: { ...actionParams, runtimeContext }
|
|
2324
|
+
});
|
|
2325
|
+
}
|
|
2326
|
+
/**
|
|
2327
|
+
* Starts agent builder action asynchronously and waits for completion.
|
|
2328
|
+
* This calls `/api/agent-builder/:actionId/start-async`.
|
|
2329
|
+
*/
|
|
2330
|
+
async startAsync(params, runId) {
|
|
2331
|
+
const searchParams = new URLSearchParams();
|
|
2332
|
+
if (runId) {
|
|
2333
|
+
searchParams.set("runId", runId);
|
|
2334
|
+
}
|
|
2335
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2336
|
+
const { runtimeContext: _, ...actionParams } = params;
|
|
2337
|
+
const url = `/api/agent-builder/${this.actionId}/start-async${searchParams.toString() ? `?${searchParams.toString()}` : ""}`;
|
|
2338
|
+
const result = await this.request(url, {
|
|
2339
|
+
method: "POST",
|
|
2340
|
+
body: { ...actionParams, runtimeContext }
|
|
2341
|
+
});
|
|
2342
|
+
return this.transformWorkflowResult(result);
|
|
2343
|
+
}
|
|
2344
|
+
/**
|
|
2345
|
+
* Starts an existing agent builder action run.
|
|
2346
|
+
* This calls `/api/agent-builder/:actionId/start`.
|
|
2347
|
+
*/
|
|
2348
|
+
async startActionRun(params, runId) {
|
|
2349
|
+
const searchParams = new URLSearchParams();
|
|
2350
|
+
searchParams.set("runId", runId);
|
|
2351
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2352
|
+
const { runtimeContext: _, ...actionParams } = params;
|
|
2353
|
+
const url = `/api/agent-builder/${this.actionId}/start?${searchParams.toString()}`;
|
|
2354
|
+
return this.request(url, {
|
|
2355
|
+
method: "POST",
|
|
2356
|
+
body: { ...actionParams, runtimeContext }
|
|
2357
|
+
});
|
|
2358
|
+
}
|
|
2359
|
+
/**
|
|
2360
|
+
* Resumes a suspended agent builder action step.
|
|
2361
|
+
* This calls `/api/agent-builder/:actionId/resume`.
|
|
2362
|
+
*/
|
|
2363
|
+
async resume(params, runId) {
|
|
2364
|
+
const searchParams = new URLSearchParams();
|
|
2365
|
+
searchParams.set("runId", runId);
|
|
2366
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2367
|
+
const { runtimeContext: _, ...resumeParams } = params;
|
|
2368
|
+
const url = `/api/agent-builder/${this.actionId}/resume?${searchParams.toString()}`;
|
|
2369
|
+
return this.request(url, {
|
|
2370
|
+
method: "POST",
|
|
2371
|
+
body: { ...resumeParams, runtimeContext }
|
|
2372
|
+
});
|
|
2373
|
+
}
|
|
2374
|
+
/**
|
|
2375
|
+
* Resumes a suspended agent builder action step asynchronously.
|
|
2376
|
+
* This calls `/api/agent-builder/:actionId/resume-async`.
|
|
2377
|
+
*/
|
|
2378
|
+
async resumeAsync(params, runId) {
|
|
2379
|
+
const searchParams = new URLSearchParams();
|
|
2380
|
+
searchParams.set("runId", runId);
|
|
2381
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2382
|
+
const { runtimeContext: _, ...resumeParams } = params;
|
|
2383
|
+
const url = `/api/agent-builder/${this.actionId}/resume-async?${searchParams.toString()}`;
|
|
2384
|
+
const result = await this.request(url, {
|
|
2385
|
+
method: "POST",
|
|
2386
|
+
body: { ...resumeParams, runtimeContext }
|
|
2387
|
+
});
|
|
2388
|
+
return this.transformWorkflowResult(result);
|
|
2389
|
+
}
|
|
2390
|
+
/**
|
|
2391
|
+
* Creates an async generator that processes a readable stream and yields action records
|
|
2392
|
+
* separated by the Record Separator character (\x1E)
|
|
2393
|
+
*
|
|
2394
|
+
* @param stream - The readable stream to process
|
|
2395
|
+
* @returns An async generator that yields parsed records
|
|
2396
|
+
*/
|
|
2397
|
+
async *streamProcessor(stream) {
|
|
2398
|
+
const reader = stream.getReader();
|
|
2399
|
+
let doneReading = false;
|
|
2400
|
+
let buffer = "";
|
|
2401
|
+
try {
|
|
2402
|
+
while (!doneReading) {
|
|
2403
|
+
const { done, value } = await reader.read();
|
|
2404
|
+
doneReading = done;
|
|
2405
|
+
if (done && !value) continue;
|
|
2406
|
+
try {
|
|
2407
|
+
const decoded = value ? new TextDecoder().decode(value) : "";
|
|
2408
|
+
const chunks = (buffer + decoded).split(RECORD_SEPARATOR3);
|
|
2409
|
+
buffer = chunks.pop() || "";
|
|
2410
|
+
for (const chunk of chunks) {
|
|
2411
|
+
if (chunk) {
|
|
2412
|
+
if (typeof chunk === "string") {
|
|
2413
|
+
try {
|
|
2414
|
+
const parsedChunk = JSON.parse(chunk);
|
|
2415
|
+
yield parsedChunk;
|
|
2416
|
+
} catch {
|
|
2417
|
+
}
|
|
2418
|
+
}
|
|
2419
|
+
}
|
|
2420
|
+
}
|
|
2421
|
+
} catch {
|
|
2422
|
+
}
|
|
2423
|
+
}
|
|
2424
|
+
if (buffer) {
|
|
2425
|
+
try {
|
|
2426
|
+
yield JSON.parse(buffer);
|
|
2427
|
+
} catch {
|
|
2428
|
+
}
|
|
2429
|
+
}
|
|
2430
|
+
} finally {
|
|
2431
|
+
reader.cancel().catch(() => {
|
|
2432
|
+
});
|
|
2433
|
+
}
|
|
2434
|
+
}
|
|
2435
|
+
/**
|
|
2436
|
+
* Streams agent builder action progress in real-time.
|
|
2437
|
+
* This calls `/api/agent-builder/:actionId/stream`.
|
|
2438
|
+
*/
|
|
2439
|
+
async stream(params, runId) {
|
|
2440
|
+
const searchParams = new URLSearchParams();
|
|
2441
|
+
if (runId) {
|
|
2442
|
+
searchParams.set("runId", runId);
|
|
2443
|
+
}
|
|
2444
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2445
|
+
const { runtimeContext: _, ...actionParams } = params;
|
|
2446
|
+
const url = `/api/agent-builder/${this.actionId}/stream${searchParams.toString() ? `?${searchParams.toString()}` : ""}`;
|
|
2447
|
+
const response = await this.request(url, {
|
|
2448
|
+
method: "POST",
|
|
2449
|
+
body: { ...actionParams, runtimeContext },
|
|
2450
|
+
stream: true
|
|
2451
|
+
});
|
|
2452
|
+
if (!response.ok) {
|
|
2453
|
+
throw new Error(`Failed to stream agent builder action: ${response.statusText}`);
|
|
2454
|
+
}
|
|
2455
|
+
if (!response.body) {
|
|
2456
|
+
throw new Error("Response body is null");
|
|
2457
|
+
}
|
|
2458
|
+
let failedChunk = void 0;
|
|
2459
|
+
const transformStream = new TransformStream({
|
|
2460
|
+
start() {
|
|
2461
|
+
},
|
|
2462
|
+
async transform(chunk, controller) {
|
|
2463
|
+
try {
|
|
2464
|
+
const decoded = new TextDecoder().decode(chunk);
|
|
2465
|
+
const chunks = decoded.split(RECORD_SEPARATOR3);
|
|
2466
|
+
for (const chunk2 of chunks) {
|
|
2467
|
+
if (chunk2) {
|
|
2468
|
+
const newChunk = failedChunk ? failedChunk + chunk2 : chunk2;
|
|
2469
|
+
try {
|
|
2470
|
+
const parsedChunk = JSON.parse(newChunk);
|
|
2471
|
+
controller.enqueue(parsedChunk);
|
|
2472
|
+
failedChunk = void 0;
|
|
2473
|
+
} catch {
|
|
2474
|
+
failedChunk = newChunk;
|
|
2475
|
+
}
|
|
2476
|
+
}
|
|
2477
|
+
}
|
|
2478
|
+
} catch {
|
|
2479
|
+
}
|
|
2480
|
+
}
|
|
2481
|
+
});
|
|
2482
|
+
return response.body.pipeThrough(transformStream);
|
|
2483
|
+
}
|
|
2484
|
+
/**
|
|
2485
|
+
* Streams agent builder action progress in real-time using VNext streaming.
|
|
2486
|
+
* This calls `/api/agent-builder/:actionId/streamVNext`.
|
|
2487
|
+
*/
|
|
2488
|
+
async streamVNext(params, runId) {
|
|
2489
|
+
const searchParams = new URLSearchParams();
|
|
2490
|
+
if (runId) {
|
|
2491
|
+
searchParams.set("runId", runId);
|
|
2492
|
+
}
|
|
2493
|
+
const runtimeContext = parseClientRuntimeContext(params.runtimeContext);
|
|
2494
|
+
const { runtimeContext: _, ...actionParams } = params;
|
|
2495
|
+
const url = `/api/agent-builder/${this.actionId}/streamVNext${searchParams.toString() ? `?${searchParams.toString()}` : ""}`;
|
|
2496
|
+
const response = await this.request(url, {
|
|
2497
|
+
method: "POST",
|
|
2498
|
+
body: { ...actionParams, runtimeContext },
|
|
2499
|
+
stream: true
|
|
2500
|
+
});
|
|
2501
|
+
if (!response.ok) {
|
|
2502
|
+
throw new Error(`Failed to stream agent builder action VNext: ${response.statusText}`);
|
|
2503
|
+
}
|
|
2504
|
+
if (!response.body) {
|
|
2505
|
+
throw new Error("Response body is null");
|
|
2506
|
+
}
|
|
2507
|
+
let failedChunk = void 0;
|
|
2508
|
+
const transformStream = new TransformStream({
|
|
2509
|
+
start() {
|
|
2510
|
+
},
|
|
2511
|
+
async transform(chunk, controller) {
|
|
2512
|
+
try {
|
|
2513
|
+
const decoded = new TextDecoder().decode(chunk);
|
|
2514
|
+
const chunks = decoded.split(RECORD_SEPARATOR3);
|
|
2515
|
+
for (const chunk2 of chunks) {
|
|
2516
|
+
if (chunk2) {
|
|
2517
|
+
const newChunk = failedChunk ? failedChunk + chunk2 : chunk2;
|
|
2518
|
+
try {
|
|
2519
|
+
const parsedChunk = JSON.parse(newChunk);
|
|
2520
|
+
controller.enqueue(parsedChunk);
|
|
2521
|
+
failedChunk = void 0;
|
|
2522
|
+
} catch {
|
|
2523
|
+
failedChunk = newChunk;
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
}
|
|
2527
|
+
} catch {
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
});
|
|
2531
|
+
return response.body.pipeThrough(transformStream);
|
|
2532
|
+
}
|
|
2533
|
+
/**
|
|
2534
|
+
* Watches an existing agent builder action run by runId.
|
|
2535
|
+
* This is used for hot reload recovery - it loads the existing run state
|
|
2536
|
+
* and streams any remaining progress.
|
|
2537
|
+
* This calls `/api/agent-builder/:actionId/watch`.
|
|
2538
|
+
*/
|
|
2539
|
+
async watch({ runId }, onRecord) {
|
|
2540
|
+
const url = `/api/agent-builder/${this.actionId}/watch?runId=${runId}`;
|
|
2541
|
+
const response = await this.request(url, {
|
|
2542
|
+
method: "GET",
|
|
2543
|
+
stream: true
|
|
2544
|
+
});
|
|
2545
|
+
if (!response.ok) {
|
|
2546
|
+
throw new Error(`Failed to watch agent builder action: ${response.statusText}`);
|
|
2547
|
+
}
|
|
2548
|
+
if (!response.body) {
|
|
2549
|
+
throw new Error("Response body is null");
|
|
2550
|
+
}
|
|
2551
|
+
for await (const record of this.streamProcessor(response.body)) {
|
|
2552
|
+
if (typeof record === "string") {
|
|
2553
|
+
onRecord(JSON.parse(record));
|
|
2554
|
+
} else {
|
|
2555
|
+
onRecord(record);
|
|
2556
|
+
}
|
|
2557
|
+
}
|
|
2558
|
+
}
|
|
2559
|
+
/**
|
|
2560
|
+
* Gets a specific action run by its ID.
|
|
2561
|
+
* This calls `/api/agent-builder/:actionId/runs/:runId`.
|
|
2562
|
+
*/
|
|
2563
|
+
async runById(runId) {
|
|
2564
|
+
const url = `/api/agent-builder/${this.actionId}/runs/${runId}`;
|
|
2565
|
+
return this.request(url, {
|
|
2566
|
+
method: "GET"
|
|
2567
|
+
});
|
|
2568
|
+
}
|
|
2569
|
+
/**
|
|
2570
|
+
* Gets details about this agent builder action.
|
|
2571
|
+
* This calls `/api/agent-builder/:actionId`.
|
|
2572
|
+
*/
|
|
2573
|
+
async details() {
|
|
2574
|
+
const result = await this.request(`/api/agent-builder/${this.actionId}`);
|
|
2575
|
+
return result;
|
|
2576
|
+
}
|
|
2577
|
+
/**
|
|
2578
|
+
* Gets all runs for this agent builder action.
|
|
2579
|
+
* This calls `/api/agent-builder/:actionId/runs`.
|
|
2580
|
+
*/
|
|
2581
|
+
async runs(params) {
|
|
2582
|
+
const searchParams = new URLSearchParams();
|
|
2583
|
+
if (params?.fromDate) {
|
|
2584
|
+
searchParams.set("fromDate", params.fromDate.toISOString());
|
|
2585
|
+
}
|
|
2586
|
+
if (params?.toDate) {
|
|
2587
|
+
searchParams.set("toDate", params.toDate.toISOString());
|
|
2588
|
+
}
|
|
2589
|
+
if (params?.limit !== void 0) {
|
|
2590
|
+
searchParams.set("limit", String(params.limit));
|
|
2591
|
+
}
|
|
2592
|
+
if (params?.offset !== void 0) {
|
|
2593
|
+
searchParams.set("offset", String(params.offset));
|
|
2594
|
+
}
|
|
2595
|
+
if (params?.resourceId) {
|
|
2596
|
+
searchParams.set("resourceId", params.resourceId);
|
|
2597
|
+
}
|
|
2598
|
+
const url = `/api/agent-builder/${this.actionId}/runs${searchParams.toString() ? `?${searchParams.toString()}` : ""}`;
|
|
2599
|
+
return this.request(url, {
|
|
2600
|
+
method: "GET"
|
|
2601
|
+
});
|
|
2602
|
+
}
|
|
2603
|
+
/**
|
|
2604
|
+
* Gets the execution result of an agent builder action run.
|
|
2605
|
+
* This calls `/api/agent-builder/:actionId/runs/:runId/execution-result`.
|
|
2606
|
+
*/
|
|
2607
|
+
async runExecutionResult(runId) {
|
|
2608
|
+
const url = `/api/agent-builder/${this.actionId}/runs/${runId}/execution-result`;
|
|
2609
|
+
return this.request(url, {
|
|
2610
|
+
method: "GET"
|
|
2611
|
+
});
|
|
2612
|
+
}
|
|
2613
|
+
/**
|
|
2614
|
+
* Cancels an agent builder action run.
|
|
2615
|
+
* This calls `/api/agent-builder/:actionId/runs/:runId/cancel`.
|
|
2616
|
+
*/
|
|
2617
|
+
async cancelRun(runId) {
|
|
2618
|
+
const url = `/api/agent-builder/${this.actionId}/runs/${runId}/cancel`;
|
|
2619
|
+
return this.request(url, {
|
|
2620
|
+
method: "POST"
|
|
2621
|
+
});
|
|
2622
|
+
}
|
|
2623
|
+
/**
|
|
2624
|
+
* Sends an event to an agent builder action run.
|
|
2625
|
+
* This calls `/api/agent-builder/:actionId/runs/:runId/send-event`.
|
|
2626
|
+
*/
|
|
2627
|
+
async sendRunEvent(params) {
|
|
2628
|
+
const url = `/api/agent-builder/${this.actionId}/runs/${params.runId}/send-event`;
|
|
2629
|
+
return this.request(url, {
|
|
2630
|
+
method: "POST",
|
|
2631
|
+
body: { event: params.event, data: params.data }
|
|
2632
|
+
});
|
|
2633
|
+
}
|
|
2634
|
+
};
|
|
2635
|
+
|
|
2636
|
+
// src/resources/observability.ts
|
|
2637
|
+
var Observability = class extends BaseResource {
|
|
2638
|
+
constructor(options) {
|
|
2639
|
+
super(options);
|
|
2640
|
+
}
|
|
2641
|
+
/**
|
|
2642
|
+
* Retrieves a specific AI trace by ID
|
|
2643
|
+
* @param traceId - ID of the trace to retrieve
|
|
2644
|
+
* @returns Promise containing the AI trace with all its spans
|
|
2645
|
+
*/
|
|
2646
|
+
getTrace(traceId) {
|
|
2647
|
+
return this.request(`/api/observability/traces/${traceId}`);
|
|
2648
|
+
}
|
|
2649
|
+
/**
|
|
2650
|
+
* Retrieves paginated list of AI traces with optional filtering
|
|
2651
|
+
* @param params - Parameters for pagination and filtering
|
|
2652
|
+
* @returns Promise containing paginated traces and pagination info
|
|
2653
|
+
*/
|
|
2654
|
+
getTraces(params) {
|
|
2655
|
+
const { pagination, filters } = params;
|
|
2656
|
+
const { page, perPage, dateRange } = pagination || {};
|
|
2657
|
+
const { name, spanType } = filters || {};
|
|
2658
|
+
const searchParams = new URLSearchParams();
|
|
2659
|
+
if (page !== void 0) {
|
|
2660
|
+
searchParams.set("page", String(page));
|
|
2661
|
+
}
|
|
2662
|
+
if (perPage !== void 0) {
|
|
2663
|
+
searchParams.set("perPage", String(perPage));
|
|
2664
|
+
}
|
|
2665
|
+
if (name) {
|
|
2666
|
+
searchParams.set("name", name);
|
|
2667
|
+
}
|
|
2668
|
+
if (spanType !== void 0) {
|
|
2669
|
+
searchParams.set("spanType", String(spanType));
|
|
2670
|
+
}
|
|
2671
|
+
if (dateRange) {
|
|
2672
|
+
const dateRangeStr = JSON.stringify({
|
|
2673
|
+
start: dateRange.start instanceof Date ? dateRange.start.toISOString() : dateRange.start,
|
|
2674
|
+
end: dateRange.end instanceof Date ? dateRange.end.toISOString() : dateRange.end
|
|
2675
|
+
});
|
|
2676
|
+
searchParams.set("dateRange", dateRangeStr);
|
|
2677
|
+
}
|
|
2678
|
+
const queryString = searchParams.toString();
|
|
2679
|
+
return this.request(`/api/observability/traces${queryString ? `?${queryString}` : ""}`);
|
|
2680
|
+
}
|
|
2681
|
+
};
|
|
2682
|
+
|
|
2683
|
+
// src/resources/network-memory-thread.ts
|
|
2684
|
+
var NetworkMemoryThread = class extends BaseResource {
|
|
2685
|
+
constructor(options, threadId, networkId) {
|
|
2686
|
+
super(options);
|
|
2687
|
+
this.threadId = threadId;
|
|
2688
|
+
this.networkId = networkId;
|
|
2689
|
+
}
|
|
2690
|
+
/**
|
|
2691
|
+
* Retrieves the memory thread details
|
|
2692
|
+
* @returns Promise containing thread details including title and metadata
|
|
2693
|
+
*/
|
|
2694
|
+
get() {
|
|
2695
|
+
return this.request(`/api/memory/network/threads/${this.threadId}?networkId=${this.networkId}`);
|
|
2696
|
+
}
|
|
2697
|
+
/**
|
|
2698
|
+
* Updates the memory thread properties
|
|
2699
|
+
* @param params - Update parameters including title and metadata
|
|
2700
|
+
* @returns Promise containing updated thread details
|
|
2701
|
+
*/
|
|
2702
|
+
update(params) {
|
|
2703
|
+
return this.request(`/api/memory/network/threads/${this.threadId}?networkId=${this.networkId}`, {
|
|
2704
|
+
method: "PATCH",
|
|
2705
|
+
body: params
|
|
2706
|
+
});
|
|
2707
|
+
}
|
|
2708
|
+
/**
|
|
2709
|
+
* Deletes the memory thread
|
|
2710
|
+
* @returns Promise containing deletion result
|
|
2711
|
+
*/
|
|
2712
|
+
delete() {
|
|
2713
|
+
return this.request(`/api/memory/network/threads/${this.threadId}?networkId=${this.networkId}`, {
|
|
2714
|
+
method: "DELETE"
|
|
2715
|
+
});
|
|
2716
|
+
}
|
|
2717
|
+
/**
|
|
2718
|
+
* Retrieves messages associated with the thread
|
|
2719
|
+
* @param params - Optional parameters including limit for number of messages to retrieve
|
|
2720
|
+
* @returns Promise containing thread messages and UI messages
|
|
221
2721
|
*/
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
2722
|
+
getMessages(params) {
|
|
2723
|
+
const query = new URLSearchParams({
|
|
2724
|
+
networkId: this.networkId,
|
|
2725
|
+
...params?.limit ? { limit: params.limit.toString() } : {}
|
|
226
2726
|
});
|
|
2727
|
+
return this.request(`/api/memory/network/threads/${this.threadId}/messages?${query.toString()}`);
|
|
227
2728
|
}
|
|
228
2729
|
/**
|
|
229
|
-
*
|
|
230
|
-
* @param
|
|
231
|
-
*
|
|
2730
|
+
* Deletes one or more messages from the thread
|
|
2731
|
+
* @param messageIds - Can be a single message ID (string), array of message IDs,
|
|
2732
|
+
* message object with id property, or array of message objects
|
|
2733
|
+
* @returns Promise containing deletion result
|
|
232
2734
|
*/
|
|
233
|
-
|
|
234
|
-
|
|
2735
|
+
deleteMessages(messageIds) {
|
|
2736
|
+
const query = new URLSearchParams({
|
|
2737
|
+
networkId: this.networkId
|
|
2738
|
+
});
|
|
2739
|
+
return this.request(`/api/memory/network/messages/delete?${query.toString()}`, {
|
|
235
2740
|
method: "POST",
|
|
236
|
-
body:
|
|
2741
|
+
body: { messageIds }
|
|
237
2742
|
});
|
|
238
2743
|
}
|
|
239
2744
|
};
|
|
240
2745
|
|
|
241
|
-
// src/resources/
|
|
242
|
-
var
|
|
243
|
-
|
|
2746
|
+
// src/resources/vNextNetwork.ts
|
|
2747
|
+
var RECORD_SEPARATOR4 = "";
|
|
2748
|
+
var VNextNetwork = class extends BaseResource {
|
|
2749
|
+
constructor(options, networkId) {
|
|
244
2750
|
super(options);
|
|
245
|
-
this.
|
|
2751
|
+
this.networkId = networkId;
|
|
246
2752
|
}
|
|
247
2753
|
/**
|
|
248
|
-
* Retrieves details about the
|
|
249
|
-
* @returns Promise containing
|
|
2754
|
+
* Retrieves details about the network
|
|
2755
|
+
* @returns Promise containing vNext network details
|
|
250
2756
|
*/
|
|
251
2757
|
details() {
|
|
252
|
-
return this.request(`/api/
|
|
2758
|
+
return this.request(`/api/networks/v-next/${this.networkId}`);
|
|
253
2759
|
}
|
|
254
2760
|
/**
|
|
255
|
-
*
|
|
256
|
-
* @param params -
|
|
257
|
-
* @returns Promise containing the
|
|
2761
|
+
* Generates a response from the v-next network
|
|
2762
|
+
* @param params - Generation parameters including message
|
|
2763
|
+
* @returns Promise containing the generated response
|
|
258
2764
|
*/
|
|
259
|
-
|
|
260
|
-
return this.request(`/api/
|
|
2765
|
+
generate(params) {
|
|
2766
|
+
return this.request(`/api/networks/v-next/${this.networkId}/generate`, {
|
|
261
2767
|
method: "POST",
|
|
262
|
-
body:
|
|
2768
|
+
body: {
|
|
2769
|
+
...params,
|
|
2770
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext)
|
|
2771
|
+
}
|
|
263
2772
|
});
|
|
264
2773
|
}
|
|
265
2774
|
/**
|
|
266
|
-
*
|
|
267
|
-
* @param
|
|
268
|
-
* @
|
|
269
|
-
* @param context - Context to resume the workflow with
|
|
270
|
-
* @returns Promise containing the workflow resume results
|
|
2775
|
+
* Generates a response from the v-next network using multiple primitives
|
|
2776
|
+
* @param params - Generation parameters including message
|
|
2777
|
+
* @returns Promise containing the generated response
|
|
271
2778
|
*/
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
runId,
|
|
275
|
-
context
|
|
276
|
-
}) {
|
|
277
|
-
return this.request(`/api/workflows/${this.workflowId}/resume`, {
|
|
2779
|
+
loop(params) {
|
|
2780
|
+
return this.request(`/api/networks/v-next/${this.networkId}/loop`, {
|
|
278
2781
|
method: "POST",
|
|
279
2782
|
body: {
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
context
|
|
2783
|
+
...params,
|
|
2784
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext)
|
|
283
2785
|
}
|
|
284
2786
|
});
|
|
285
2787
|
}
|
|
2788
|
+
async *streamProcessor(stream) {
|
|
2789
|
+
const reader = stream.getReader();
|
|
2790
|
+
let doneReading = false;
|
|
2791
|
+
let buffer = "";
|
|
2792
|
+
try {
|
|
2793
|
+
while (!doneReading) {
|
|
2794
|
+
const { done, value } = await reader.read();
|
|
2795
|
+
doneReading = done;
|
|
2796
|
+
if (done && !value) continue;
|
|
2797
|
+
try {
|
|
2798
|
+
const decoded = value ? new TextDecoder().decode(value) : "";
|
|
2799
|
+
const chunks = (buffer + decoded).split(RECORD_SEPARATOR4);
|
|
2800
|
+
buffer = chunks.pop() || "";
|
|
2801
|
+
for (const chunk of chunks) {
|
|
2802
|
+
if (chunk) {
|
|
2803
|
+
if (typeof chunk === "string") {
|
|
2804
|
+
try {
|
|
2805
|
+
const parsedChunk = JSON.parse(chunk);
|
|
2806
|
+
yield parsedChunk;
|
|
2807
|
+
} catch {
|
|
2808
|
+
}
|
|
2809
|
+
}
|
|
2810
|
+
}
|
|
2811
|
+
}
|
|
2812
|
+
} catch {
|
|
2813
|
+
}
|
|
2814
|
+
}
|
|
2815
|
+
if (buffer) {
|
|
2816
|
+
try {
|
|
2817
|
+
yield JSON.parse(buffer);
|
|
2818
|
+
} catch {
|
|
2819
|
+
}
|
|
2820
|
+
}
|
|
2821
|
+
} finally {
|
|
2822
|
+
reader.cancel().catch(() => {
|
|
2823
|
+
});
|
|
2824
|
+
}
|
|
2825
|
+
}
|
|
286
2826
|
/**
|
|
287
|
-
*
|
|
288
|
-
* @
|
|
2827
|
+
* Streams a response from the v-next network
|
|
2828
|
+
* @param params - Stream parameters including message
|
|
2829
|
+
* @returns Promise containing the results
|
|
289
2830
|
*/
|
|
290
|
-
|
|
291
|
-
|
|
2831
|
+
async stream(params, onRecord) {
|
|
2832
|
+
const response = await this.request(`/api/networks/v-next/${this.networkId}/stream`, {
|
|
2833
|
+
method: "POST",
|
|
2834
|
+
body: {
|
|
2835
|
+
...params,
|
|
2836
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext)
|
|
2837
|
+
},
|
|
292
2838
|
stream: true
|
|
293
2839
|
});
|
|
294
|
-
|
|
295
|
-
};
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
details() {
|
|
308
|
-
return this.request(`/api/tools/${this.toolId}`);
|
|
2840
|
+
if (!response.ok) {
|
|
2841
|
+
throw new Error(`Failed to stream vNext network: ${response.statusText}`);
|
|
2842
|
+
}
|
|
2843
|
+
if (!response.body) {
|
|
2844
|
+
throw new Error("Response body is null");
|
|
2845
|
+
}
|
|
2846
|
+
for await (const record of this.streamProcessor(response.body)) {
|
|
2847
|
+
if (typeof record === "string") {
|
|
2848
|
+
onRecord(JSON.parse(record));
|
|
2849
|
+
} else {
|
|
2850
|
+
onRecord(record);
|
|
2851
|
+
}
|
|
2852
|
+
}
|
|
309
2853
|
}
|
|
310
2854
|
/**
|
|
311
|
-
*
|
|
312
|
-
* @param params -
|
|
313
|
-
* @returns Promise containing the
|
|
2855
|
+
* Streams a response from the v-next network loop
|
|
2856
|
+
* @param params - Stream parameters including message
|
|
2857
|
+
* @returns Promise containing the results
|
|
314
2858
|
*/
|
|
315
|
-
|
|
316
|
-
|
|
2859
|
+
async loopStream(params, onRecord) {
|
|
2860
|
+
const response = await this.request(`/api/networks/v-next/${this.networkId}/loop-stream`, {
|
|
317
2861
|
method: "POST",
|
|
318
|
-
body:
|
|
2862
|
+
body: {
|
|
2863
|
+
...params,
|
|
2864
|
+
runtimeContext: parseClientRuntimeContext(params.runtimeContext)
|
|
2865
|
+
},
|
|
2866
|
+
stream: true
|
|
319
2867
|
});
|
|
2868
|
+
if (!response.ok) {
|
|
2869
|
+
throw new Error(`Failed to stream vNext network loop: ${response.statusText}`);
|
|
2870
|
+
}
|
|
2871
|
+
if (!response.body) {
|
|
2872
|
+
throw new Error("Response body is null");
|
|
2873
|
+
}
|
|
2874
|
+
for await (const record of this.streamProcessor(response.body)) {
|
|
2875
|
+
if (typeof record === "string") {
|
|
2876
|
+
onRecord(JSON.parse(record));
|
|
2877
|
+
} else {
|
|
2878
|
+
onRecord(record);
|
|
2879
|
+
}
|
|
2880
|
+
}
|
|
320
2881
|
}
|
|
321
2882
|
};
|
|
322
2883
|
|
|
323
2884
|
// src/client.ts
|
|
324
2885
|
var MastraClient = class extends BaseResource {
|
|
2886
|
+
observability;
|
|
325
2887
|
constructor(options) {
|
|
326
2888
|
super(options);
|
|
2889
|
+
this.observability = new Observability(options);
|
|
327
2890
|
}
|
|
328
2891
|
/**
|
|
329
2892
|
* Retrieves all available agents
|
|
@@ -332,6 +2895,21 @@ var MastraClient = class extends BaseResource {
|
|
|
332
2895
|
getAgents() {
|
|
333
2896
|
return this.request("/api/agents");
|
|
334
2897
|
}
|
|
2898
|
+
async getAGUI({ resourceId }) {
|
|
2899
|
+
const agents = await this.getAgents();
|
|
2900
|
+
return Object.entries(agents).reduce(
|
|
2901
|
+
(acc, [agentId]) => {
|
|
2902
|
+
const agent = this.getAgent(agentId);
|
|
2903
|
+
acc[agentId] = new AGUIAdapter({
|
|
2904
|
+
agentId,
|
|
2905
|
+
agent,
|
|
2906
|
+
resourceId
|
|
2907
|
+
});
|
|
2908
|
+
return acc;
|
|
2909
|
+
},
|
|
2910
|
+
{}
|
|
2911
|
+
);
|
|
2912
|
+
}
|
|
335
2913
|
/**
|
|
336
2914
|
* Gets an agent instance by ID
|
|
337
2915
|
* @param agentId - ID of the agent to retrieve
|
|
@@ -382,6 +2960,48 @@ var MastraClient = class extends BaseResource {
|
|
|
382
2960
|
getMemoryStatus(agentId) {
|
|
383
2961
|
return this.request(`/api/memory/status?agentId=${agentId}`);
|
|
384
2962
|
}
|
|
2963
|
+
/**
|
|
2964
|
+
* Retrieves memory threads for a resource
|
|
2965
|
+
* @param params - Parameters containing the resource ID
|
|
2966
|
+
* @returns Promise containing array of memory threads
|
|
2967
|
+
*/
|
|
2968
|
+
getNetworkMemoryThreads(params) {
|
|
2969
|
+
return this.request(`/api/memory/network/threads?resourceid=${params.resourceId}&networkId=${params.networkId}`);
|
|
2970
|
+
}
|
|
2971
|
+
/**
|
|
2972
|
+
* Creates a new memory thread
|
|
2973
|
+
* @param params - Parameters for creating the memory thread
|
|
2974
|
+
* @returns Promise containing the created memory thread
|
|
2975
|
+
*/
|
|
2976
|
+
createNetworkMemoryThread(params) {
|
|
2977
|
+
return this.request(`/api/memory/network/threads?networkId=${params.networkId}`, { method: "POST", body: params });
|
|
2978
|
+
}
|
|
2979
|
+
/**
|
|
2980
|
+
* Gets a memory thread instance by ID
|
|
2981
|
+
* @param threadId - ID of the memory thread to retrieve
|
|
2982
|
+
* @returns MemoryThread instance
|
|
2983
|
+
*/
|
|
2984
|
+
getNetworkMemoryThread(threadId, networkId) {
|
|
2985
|
+
return new NetworkMemoryThread(this.options, threadId, networkId);
|
|
2986
|
+
}
|
|
2987
|
+
/**
|
|
2988
|
+
* Saves messages to memory
|
|
2989
|
+
* @param params - Parameters containing messages to save
|
|
2990
|
+
* @returns Promise containing the saved messages
|
|
2991
|
+
*/
|
|
2992
|
+
saveNetworkMessageToMemory(params) {
|
|
2993
|
+
return this.request(`/api/memory/network/save-messages?networkId=${params.networkId}`, {
|
|
2994
|
+
method: "POST",
|
|
2995
|
+
body: params
|
|
2996
|
+
});
|
|
2997
|
+
}
|
|
2998
|
+
/**
|
|
2999
|
+
* Gets the status of the memory system
|
|
3000
|
+
* @returns Promise containing memory system status
|
|
3001
|
+
*/
|
|
3002
|
+
getNetworkMemoryStatus(networkId) {
|
|
3003
|
+
return this.request(`/api/memory/network/status?networkId=${networkId}`);
|
|
3004
|
+
}
|
|
385
3005
|
/**
|
|
386
3006
|
* Retrieves all available tools
|
|
387
3007
|
* @returns Promise containing map of tool IDs to tool details
|
|
@@ -397,6 +3017,21 @@ var MastraClient = class extends BaseResource {
|
|
|
397
3017
|
getTool(toolId) {
|
|
398
3018
|
return new Tool(this.options, toolId);
|
|
399
3019
|
}
|
|
3020
|
+
/**
|
|
3021
|
+
* Retrieves all available legacy workflows
|
|
3022
|
+
* @returns Promise containing map of legacy workflow IDs to legacy workflow details
|
|
3023
|
+
*/
|
|
3024
|
+
getLegacyWorkflows() {
|
|
3025
|
+
return this.request("/api/workflows/legacy");
|
|
3026
|
+
}
|
|
3027
|
+
/**
|
|
3028
|
+
* Gets a legacy workflow instance by ID
|
|
3029
|
+
* @param workflowId - ID of the legacy workflow to retrieve
|
|
3030
|
+
* @returns Legacy Workflow instance
|
|
3031
|
+
*/
|
|
3032
|
+
getLegacyWorkflow(workflowId) {
|
|
3033
|
+
return new LegacyWorkflow(this.options, workflowId);
|
|
3034
|
+
}
|
|
400
3035
|
/**
|
|
401
3036
|
* Retrieves all available workflows
|
|
402
3037
|
* @returns Promise containing map of workflow IDs to workflow details
|
|
@@ -412,6 +3047,20 @@ var MastraClient = class extends BaseResource {
|
|
|
412
3047
|
getWorkflow(workflowId) {
|
|
413
3048
|
return new Workflow(this.options, workflowId);
|
|
414
3049
|
}
|
|
3050
|
+
/**
|
|
3051
|
+
* Gets all available agent builder actions
|
|
3052
|
+
* @returns Promise containing map of action IDs to action details
|
|
3053
|
+
*/
|
|
3054
|
+
getAgentBuilderActions() {
|
|
3055
|
+
return this.request("/api/agent-builder/");
|
|
3056
|
+
}
|
|
3057
|
+
/**
|
|
3058
|
+
* Gets an agent builder instance for executing agent-builder workflows
|
|
3059
|
+
* @returns AgentBuilder instance
|
|
3060
|
+
*/
|
|
3061
|
+
getAgentBuilderAction(actionId) {
|
|
3062
|
+
return new AgentBuilder(this.options, actionId);
|
|
3063
|
+
}
|
|
415
3064
|
/**
|
|
416
3065
|
* Gets a vector instance by name
|
|
417
3066
|
* @param vectorName - Name of the vector to retrieve
|
|
@@ -426,7 +3075,41 @@ var MastraClient = class extends BaseResource {
|
|
|
426
3075
|
* @returns Promise containing array of log messages
|
|
427
3076
|
*/
|
|
428
3077
|
getLogs(params) {
|
|
429
|
-
|
|
3078
|
+
const { transportId, fromDate, toDate, logLevel, filters, page, perPage } = params;
|
|
3079
|
+
const _filters = filters ? Object.entries(filters).map(([key, value]) => `${key}:${value}`) : [];
|
|
3080
|
+
const searchParams = new URLSearchParams();
|
|
3081
|
+
if (transportId) {
|
|
3082
|
+
searchParams.set("transportId", transportId);
|
|
3083
|
+
}
|
|
3084
|
+
if (fromDate) {
|
|
3085
|
+
searchParams.set("fromDate", fromDate.toISOString());
|
|
3086
|
+
}
|
|
3087
|
+
if (toDate) {
|
|
3088
|
+
searchParams.set("toDate", toDate.toISOString());
|
|
3089
|
+
}
|
|
3090
|
+
if (logLevel) {
|
|
3091
|
+
searchParams.set("logLevel", logLevel);
|
|
3092
|
+
}
|
|
3093
|
+
if (page) {
|
|
3094
|
+
searchParams.set("page", String(page));
|
|
3095
|
+
}
|
|
3096
|
+
if (perPage) {
|
|
3097
|
+
searchParams.set("perPage", String(perPage));
|
|
3098
|
+
}
|
|
3099
|
+
if (_filters) {
|
|
3100
|
+
if (Array.isArray(_filters)) {
|
|
3101
|
+
for (const filter of _filters) {
|
|
3102
|
+
searchParams.append("filters", filter);
|
|
3103
|
+
}
|
|
3104
|
+
} else {
|
|
3105
|
+
searchParams.set("filters", _filters);
|
|
3106
|
+
}
|
|
3107
|
+
}
|
|
3108
|
+
if (searchParams.size) {
|
|
3109
|
+
return this.request(`/api/logs?${searchParams}`);
|
|
3110
|
+
} else {
|
|
3111
|
+
return this.request(`/api/logs`);
|
|
3112
|
+
}
|
|
430
3113
|
}
|
|
431
3114
|
/**
|
|
432
3115
|
* Gets logs for a specific run
|
|
@@ -434,7 +3117,44 @@ var MastraClient = class extends BaseResource {
|
|
|
434
3117
|
* @returns Promise containing array of log messages
|
|
435
3118
|
*/
|
|
436
3119
|
getLogForRun(params) {
|
|
437
|
-
|
|
3120
|
+
const { runId, transportId, fromDate, toDate, logLevel, filters, page, perPage } = params;
|
|
3121
|
+
const _filters = filters ? Object.entries(filters).map(([key, value]) => `${key}:${value}`) : [];
|
|
3122
|
+
const searchParams = new URLSearchParams();
|
|
3123
|
+
if (runId) {
|
|
3124
|
+
searchParams.set("runId", runId);
|
|
3125
|
+
}
|
|
3126
|
+
if (transportId) {
|
|
3127
|
+
searchParams.set("transportId", transportId);
|
|
3128
|
+
}
|
|
3129
|
+
if (fromDate) {
|
|
3130
|
+
searchParams.set("fromDate", fromDate.toISOString());
|
|
3131
|
+
}
|
|
3132
|
+
if (toDate) {
|
|
3133
|
+
searchParams.set("toDate", toDate.toISOString());
|
|
3134
|
+
}
|
|
3135
|
+
if (logLevel) {
|
|
3136
|
+
searchParams.set("logLevel", logLevel);
|
|
3137
|
+
}
|
|
3138
|
+
if (page) {
|
|
3139
|
+
searchParams.set("page", String(page));
|
|
3140
|
+
}
|
|
3141
|
+
if (perPage) {
|
|
3142
|
+
searchParams.set("perPage", String(perPage));
|
|
3143
|
+
}
|
|
3144
|
+
if (_filters) {
|
|
3145
|
+
if (Array.isArray(_filters)) {
|
|
3146
|
+
for (const filter of _filters) {
|
|
3147
|
+
searchParams.append("filters", filter);
|
|
3148
|
+
}
|
|
3149
|
+
} else {
|
|
3150
|
+
searchParams.set("filters", _filters);
|
|
3151
|
+
}
|
|
3152
|
+
}
|
|
3153
|
+
if (searchParams.size) {
|
|
3154
|
+
return this.request(`/api/logs/${runId}?${searchParams}`);
|
|
3155
|
+
} else {
|
|
3156
|
+
return this.request(`/api/logs/${runId}`);
|
|
3157
|
+
}
|
|
438
3158
|
}
|
|
439
3159
|
/**
|
|
440
3160
|
* List of all log transports
|
|
@@ -449,11 +3169,8 @@ var MastraClient = class extends BaseResource {
|
|
|
449
3169
|
* @returns Promise containing telemetry data
|
|
450
3170
|
*/
|
|
451
3171
|
getTelemetry(params) {
|
|
452
|
-
const { name, scope, page, perPage, attribute } = params || {};
|
|
3172
|
+
const { name, scope, page, perPage, attribute, fromDate, toDate } = params || {};
|
|
453
3173
|
const _attribute = attribute ? Object.entries(attribute).map(([key, value]) => `${key}:${value}`) : [];
|
|
454
|
-
({
|
|
455
|
-
..._attribute?.length ? { attribute: _attribute } : {}
|
|
456
|
-
});
|
|
457
3174
|
const searchParams = new URLSearchParams();
|
|
458
3175
|
if (name) {
|
|
459
3176
|
searchParams.set("name", name);
|
|
@@ -476,12 +3193,232 @@ var MastraClient = class extends BaseResource {
|
|
|
476
3193
|
searchParams.set("attribute", _attribute);
|
|
477
3194
|
}
|
|
478
3195
|
}
|
|
3196
|
+
if (fromDate) {
|
|
3197
|
+
searchParams.set("fromDate", fromDate.toISOString());
|
|
3198
|
+
}
|
|
3199
|
+
if (toDate) {
|
|
3200
|
+
searchParams.set("toDate", toDate.toISOString());
|
|
3201
|
+
}
|
|
479
3202
|
if (searchParams.size) {
|
|
480
3203
|
return this.request(`/api/telemetry?${searchParams}`);
|
|
481
3204
|
} else {
|
|
482
3205
|
return this.request(`/api/telemetry`);
|
|
483
3206
|
}
|
|
484
3207
|
}
|
|
3208
|
+
/**
|
|
3209
|
+
* Retrieves all available networks
|
|
3210
|
+
* @returns Promise containing map of network IDs to network details
|
|
3211
|
+
*/
|
|
3212
|
+
getNetworks() {
|
|
3213
|
+
return this.request("/api/networks");
|
|
3214
|
+
}
|
|
3215
|
+
/**
|
|
3216
|
+
* Retrieves all available vNext networks
|
|
3217
|
+
* @returns Promise containing map of vNext network IDs to vNext network details
|
|
3218
|
+
*/
|
|
3219
|
+
getVNextNetworks() {
|
|
3220
|
+
return this.request("/api/networks/v-next");
|
|
3221
|
+
}
|
|
3222
|
+
/**
|
|
3223
|
+
* Gets a network instance by ID
|
|
3224
|
+
* @param networkId - ID of the network to retrieve
|
|
3225
|
+
* @returns Network instance
|
|
3226
|
+
*/
|
|
3227
|
+
getNetwork(networkId) {
|
|
3228
|
+
return new Network(this.options, networkId);
|
|
3229
|
+
}
|
|
3230
|
+
/**
|
|
3231
|
+
* Gets a vNext network instance by ID
|
|
3232
|
+
* @param networkId - ID of the vNext network to retrieve
|
|
3233
|
+
* @returns vNext Network instance
|
|
3234
|
+
*/
|
|
3235
|
+
getVNextNetwork(networkId) {
|
|
3236
|
+
return new VNextNetwork(this.options, networkId);
|
|
3237
|
+
}
|
|
3238
|
+
/**
|
|
3239
|
+
* Retrieves a list of available MCP servers.
|
|
3240
|
+
* @param params - Optional parameters for pagination (limit, offset).
|
|
3241
|
+
* @returns Promise containing the list of MCP servers and pagination info.
|
|
3242
|
+
*/
|
|
3243
|
+
getMcpServers(params) {
|
|
3244
|
+
const searchParams = new URLSearchParams();
|
|
3245
|
+
if (params?.limit !== void 0) {
|
|
3246
|
+
searchParams.set("limit", String(params.limit));
|
|
3247
|
+
}
|
|
3248
|
+
if (params?.offset !== void 0) {
|
|
3249
|
+
searchParams.set("offset", String(params.offset));
|
|
3250
|
+
}
|
|
3251
|
+
const queryString = searchParams.toString();
|
|
3252
|
+
return this.request(`/api/mcp/v0/servers${queryString ? `?${queryString}` : ""}`);
|
|
3253
|
+
}
|
|
3254
|
+
/**
|
|
3255
|
+
* Retrieves detailed information for a specific MCP server.
|
|
3256
|
+
* @param serverId - The ID of the MCP server to retrieve.
|
|
3257
|
+
* @param params - Optional parameters, e.g., specific version.
|
|
3258
|
+
* @returns Promise containing the detailed MCP server information.
|
|
3259
|
+
*/
|
|
3260
|
+
getMcpServerDetails(serverId, params) {
|
|
3261
|
+
const searchParams = new URLSearchParams();
|
|
3262
|
+
if (params?.version) {
|
|
3263
|
+
searchParams.set("version", params.version);
|
|
3264
|
+
}
|
|
3265
|
+
const queryString = searchParams.toString();
|
|
3266
|
+
return this.request(`/api/mcp/v0/servers/${serverId}${queryString ? `?${queryString}` : ""}`);
|
|
3267
|
+
}
|
|
3268
|
+
/**
|
|
3269
|
+
* Retrieves a list of tools for a specific MCP server.
|
|
3270
|
+
* @param serverId - The ID of the MCP server.
|
|
3271
|
+
* @returns Promise containing the list of tools.
|
|
3272
|
+
*/
|
|
3273
|
+
getMcpServerTools(serverId) {
|
|
3274
|
+
return this.request(`/api/mcp/${serverId}/tools`);
|
|
3275
|
+
}
|
|
3276
|
+
/**
|
|
3277
|
+
* Gets an MCPTool resource instance for a specific tool on an MCP server.
|
|
3278
|
+
* This instance can then be used to fetch details or execute the tool.
|
|
3279
|
+
* @param serverId - The ID of the MCP server.
|
|
3280
|
+
* @param toolId - The ID of the tool.
|
|
3281
|
+
* @returns MCPTool instance.
|
|
3282
|
+
*/
|
|
3283
|
+
getMcpServerTool(serverId, toolId) {
|
|
3284
|
+
return new MCPTool(this.options, serverId, toolId);
|
|
3285
|
+
}
|
|
3286
|
+
/**
|
|
3287
|
+
* Gets an A2A client for interacting with an agent via the A2A protocol
|
|
3288
|
+
* @param agentId - ID of the agent to interact with
|
|
3289
|
+
* @returns A2A client instance
|
|
3290
|
+
*/
|
|
3291
|
+
getA2A(agentId) {
|
|
3292
|
+
return new A2A(this.options, agentId);
|
|
3293
|
+
}
|
|
3294
|
+
/**
|
|
3295
|
+
* Retrieves the working memory for a specific thread (optionally resource-scoped).
|
|
3296
|
+
* @param agentId - ID of the agent.
|
|
3297
|
+
* @param threadId - ID of the thread.
|
|
3298
|
+
* @param resourceId - Optional ID of the resource.
|
|
3299
|
+
* @returns Working memory for the specified thread or resource.
|
|
3300
|
+
*/
|
|
3301
|
+
getWorkingMemory({
|
|
3302
|
+
agentId,
|
|
3303
|
+
threadId,
|
|
3304
|
+
resourceId
|
|
3305
|
+
}) {
|
|
3306
|
+
return this.request(`/api/memory/threads/${threadId}/working-memory?agentId=${agentId}&resourceId=${resourceId}`);
|
|
3307
|
+
}
|
|
3308
|
+
/**
|
|
3309
|
+
* Updates the working memory for a specific thread (optionally resource-scoped).
|
|
3310
|
+
* @param agentId - ID of the agent.
|
|
3311
|
+
* @param threadId - ID of the thread.
|
|
3312
|
+
* @param workingMemory - The new working memory content.
|
|
3313
|
+
* @param resourceId - Optional ID of the resource.
|
|
3314
|
+
*/
|
|
3315
|
+
updateWorkingMemory({
|
|
3316
|
+
agentId,
|
|
3317
|
+
threadId,
|
|
3318
|
+
workingMemory,
|
|
3319
|
+
resourceId
|
|
3320
|
+
}) {
|
|
3321
|
+
return this.request(`/api/memory/threads/${threadId}/working-memory?agentId=${agentId}`, {
|
|
3322
|
+
method: "POST",
|
|
3323
|
+
body: {
|
|
3324
|
+
workingMemory,
|
|
3325
|
+
resourceId
|
|
3326
|
+
}
|
|
3327
|
+
});
|
|
3328
|
+
}
|
|
3329
|
+
/**
|
|
3330
|
+
* Retrieves all available scorers
|
|
3331
|
+
* @returns Promise containing list of available scorers
|
|
3332
|
+
*/
|
|
3333
|
+
getScorers() {
|
|
3334
|
+
return this.request("/api/scores/scorers");
|
|
3335
|
+
}
|
|
3336
|
+
/**
|
|
3337
|
+
* Retrieves a scorer by ID
|
|
3338
|
+
* @param scorerId - ID of the scorer to retrieve
|
|
3339
|
+
* @returns Promise containing the scorer
|
|
3340
|
+
*/
|
|
3341
|
+
getScorer(scorerId) {
|
|
3342
|
+
return this.request(`/api/scores/scorers/${scorerId}`);
|
|
3343
|
+
}
|
|
3344
|
+
getScoresByScorerId(params) {
|
|
3345
|
+
const { page, perPage, scorerId, entityId, entityType } = params;
|
|
3346
|
+
const searchParams = new URLSearchParams();
|
|
3347
|
+
if (entityId) {
|
|
3348
|
+
searchParams.set("entityId", entityId);
|
|
3349
|
+
}
|
|
3350
|
+
if (entityType) {
|
|
3351
|
+
searchParams.set("entityType", entityType);
|
|
3352
|
+
}
|
|
3353
|
+
if (page !== void 0) {
|
|
3354
|
+
searchParams.set("page", String(page));
|
|
3355
|
+
}
|
|
3356
|
+
if (perPage !== void 0) {
|
|
3357
|
+
searchParams.set("perPage", String(perPage));
|
|
3358
|
+
}
|
|
3359
|
+
const queryString = searchParams.toString();
|
|
3360
|
+
return this.request(`/api/scores/scorer/${scorerId}${queryString ? `?${queryString}` : ""}`);
|
|
3361
|
+
}
|
|
3362
|
+
/**
|
|
3363
|
+
* Retrieves scores by run ID
|
|
3364
|
+
* @param params - Parameters containing run ID and pagination options
|
|
3365
|
+
* @returns Promise containing scores and pagination info
|
|
3366
|
+
*/
|
|
3367
|
+
getScoresByRunId(params) {
|
|
3368
|
+
const { runId, page, perPage } = params;
|
|
3369
|
+
const searchParams = new URLSearchParams();
|
|
3370
|
+
if (page !== void 0) {
|
|
3371
|
+
searchParams.set("page", String(page));
|
|
3372
|
+
}
|
|
3373
|
+
if (perPage !== void 0) {
|
|
3374
|
+
searchParams.set("perPage", String(perPage));
|
|
3375
|
+
}
|
|
3376
|
+
const queryString = searchParams.toString();
|
|
3377
|
+
return this.request(`/api/scores/run/${runId}${queryString ? `?${queryString}` : ""}`);
|
|
3378
|
+
}
|
|
3379
|
+
/**
|
|
3380
|
+
* Retrieves scores by entity ID and type
|
|
3381
|
+
* @param params - Parameters containing entity ID, type, and pagination options
|
|
3382
|
+
* @returns Promise containing scores and pagination info
|
|
3383
|
+
*/
|
|
3384
|
+
getScoresByEntityId(params) {
|
|
3385
|
+
const { entityId, entityType, page, perPage } = params;
|
|
3386
|
+
const searchParams = new URLSearchParams();
|
|
3387
|
+
if (page !== void 0) {
|
|
3388
|
+
searchParams.set("page", String(page));
|
|
3389
|
+
}
|
|
3390
|
+
if (perPage !== void 0) {
|
|
3391
|
+
searchParams.set("perPage", String(perPage));
|
|
3392
|
+
}
|
|
3393
|
+
const queryString = searchParams.toString();
|
|
3394
|
+
return this.request(`/api/scores/entity/${entityType}/${entityId}${queryString ? `?${queryString}` : ""}`);
|
|
3395
|
+
}
|
|
3396
|
+
/**
|
|
3397
|
+
* Saves a score
|
|
3398
|
+
* @param params - Parameters containing the score data to save
|
|
3399
|
+
* @returns Promise containing the saved score
|
|
3400
|
+
*/
|
|
3401
|
+
saveScore(params) {
|
|
3402
|
+
return this.request("/api/scores", {
|
|
3403
|
+
method: "POST",
|
|
3404
|
+
body: params
|
|
3405
|
+
});
|
|
3406
|
+
}
|
|
3407
|
+
/**
|
|
3408
|
+
* Retrieves model providers with available keys
|
|
3409
|
+
* @returns Promise containing model providers with available keys
|
|
3410
|
+
*/
|
|
3411
|
+
getModelProviders() {
|
|
3412
|
+
return this.request(`/api/model-providers`);
|
|
3413
|
+
}
|
|
3414
|
+
getAITrace(traceId) {
|
|
3415
|
+
return this.observability.getTrace(traceId);
|
|
3416
|
+
}
|
|
3417
|
+
getAITraces(params) {
|
|
3418
|
+
return this.observability.getTraces(params);
|
|
3419
|
+
}
|
|
485
3420
|
};
|
|
486
3421
|
|
|
487
3422
|
export { MastraClient };
|
|
3423
|
+
//# sourceMappingURL=index.js.map
|
|
3424
|
+
//# sourceMappingURL=index.js.map
|