forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-tools-execution.test.ts
More file actions
516 lines (420 loc) · 14.1 KB
/
Copy pathconfig-tools-execution.test.ts
File metadata and controls
516 lines (420 loc) · 14.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
import { describe, it, expect, vi, beforeEach, afterEach } from "vitest";
import { z } from "zod";
import { BasicAgent, defineTool } from "../index";
import { EventType, type RunAgentInput } from "@ag-ui/client";
import { streamText } from "ai";
import {
mockStreamTextResponse,
toolCallStreamingStart,
toolCall,
toolResult,
finish,
collectEvents,
} from "./test-helpers";
// Mock the ai module
vi.mock("ai", () => ({
streamText: vi.fn(),
tool: vi.fn((config) => config),
stepCountIs: vi.fn((count: number) => ({ type: "stepCount", count })),
}));
// Mock the SDK clients
vi.mock("@ai-sdk/openai", () => ({
createOpenAI: vi.fn(() => (modelId: string) => ({
modelId,
provider: "openai",
})),
}));
describe("Config Tools Server-Side Execution", () => {
const originalEnv = process.env;
beforeEach(() => {
vi.clearAllMocks();
process.env = { ...originalEnv };
process.env.OPENAI_API_KEY = "test-key";
});
afterEach(() => {
process.env = originalEnv;
});
describe("Tool Definition with Execute", () => {
it("should pass execute function to streamText tools", async () => {
const executeFn = vi.fn().mockResolvedValue({ result: "executed" });
const weatherTool = defineTool({
name: "getWeather",
description: "Get weather for a city",
parameters: z.object({
city: z.string().describe("The city name"),
}),
execute: executeFn,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
tools: [weatherTool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
// Verify streamText was called with tools that have execute functions
const callArgs = vi.mocked(streamText).mock.calls[0][0];
expect(callArgs.tools).toHaveProperty("getWeather");
expect(callArgs.tools.getWeather).toHaveProperty("execute");
expect(typeof callArgs.tools.getWeather.execute).toBe("function");
});
it("should include all tool properties in the Vercel AI SDK tool", async () => {
const executeFn = vi.fn().mockResolvedValue({ temperature: 72 });
const weatherTool = defineTool({
name: "getWeather",
description: "Get weather for a city",
parameters: z.object({
city: z.string(),
units: z.enum(["celsius", "fahrenheit"]).optional(),
}),
execute: executeFn,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
tools: [weatherTool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
const callArgs = vi.mocked(streamText).mock.calls[0][0];
const tool = callArgs.tools.getWeather;
expect(tool.description).toBe("Get weather for a city");
expect(tool.inputSchema).toBeDefined();
expect(tool.execute).toBe(executeFn);
});
it("should handle multiple config tools with execute functions", async () => {
const weatherExecute = vi.fn().mockResolvedValue({ temp: 72 });
const searchExecute = vi.fn().mockResolvedValue({ results: [] });
const weatherTool = defineTool({
name: "getWeather",
description: "Get weather",
parameters: z.object({ city: z.string() }),
execute: weatherExecute,
});
const searchTool = defineTool({
name: "search",
description: "Search the web",
parameters: z.object({ query: z.string() }),
execute: searchExecute,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
tools: [weatherTool, searchTool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
const callArgs = vi.mocked(streamText).mock.calls[0][0];
expect(callArgs.tools.getWeather.execute).toBe(weatherExecute);
expect(callArgs.tools.search.execute).toBe(searchExecute);
});
});
describe("Config Tools vs Input Tools", () => {
it("config tools should have execute, input tools should not", async () => {
const configExecute = vi.fn().mockResolvedValue({ result: "server" });
const configTool = defineTool({
name: "serverTool",
description: "Runs on server",
parameters: z.object({ data: z.string() }),
execute: configExecute,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
tools: [configTool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [
{
name: "clientTool",
description: "Runs on client",
parameters: {
type: "object",
properties: { input: { type: "string" } },
},
},
],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
const callArgs = vi.mocked(streamText).mock.calls[0][0];
// Config tool has execute
expect(callArgs.tools.serverTool.execute).toBe(configExecute);
// Input tool does NOT have execute (client-side execution)
expect(callArgs.tools.clientTool.execute).toBeUndefined();
});
});
describe("Execute Function Invocation", () => {
it("execute function can be called with correct arguments", async () => {
const executeFn = vi
.fn()
.mockResolvedValue({ weather: "sunny", temp: 72 });
const weatherTool = defineTool({
name: "getWeather",
description: "Get weather",
parameters: z.object({
city: z.string(),
units: z.enum(["celsius", "fahrenheit"]),
}),
execute: executeFn,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
tools: [weatherTool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
// Get the execute function that was passed to streamText
const callArgs = vi.mocked(streamText).mock.calls[0][0];
const passedExecute = callArgs.tools.getWeather.execute;
// Manually invoke it to verify it works correctly
const result = await passedExecute({
city: "New York",
units: "fahrenheit",
});
expect(executeFn).toHaveBeenCalledWith({
city: "New York",
units: "fahrenheit",
});
expect(result).toEqual({ weather: "sunny", temp: 72 });
});
it("execute function errors are propagated", async () => {
const executeFn = vi.fn().mockRejectedValue(new Error("API unavailable"));
const failingTool = defineTool({
name: "failingTool",
description: "A tool that fails",
parameters: z.object({}),
execute: executeFn,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
tools: [failingTool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
const callArgs = vi.mocked(streamText).mock.calls[0][0];
const passedExecute = callArgs.tools.failingTool.execute;
await expect(passedExecute({})).rejects.toThrow("API unavailable");
});
});
describe("Built-in State Tools Still Work", () => {
it("AGUISendStateSnapshot should have execute alongside config tools", async () => {
const configExecute = vi.fn().mockResolvedValue({});
const configTool = defineTool({
name: "myTool",
description: "My tool",
parameters: z.object({}),
execute: configExecute,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
tools: [configTool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: { value: 1 },
};
await collectEvents(agent["run"](input));
const callArgs = vi.mocked(streamText).mock.calls[0][0];
// Both config tool and state tools should have execute
expect(callArgs.tools.myTool.execute).toBe(configExecute);
expect(callArgs.tools.AGUISendStateSnapshot.execute).toBeDefined();
expect(callArgs.tools.AGUISendStateDelta.execute).toBeDefined();
});
});
describe("Message ID Generation", () => {
it("should use messageId from text-start event", async () => {
const executeFn = vi.fn().mockResolvedValue({ result: "ok" });
const tool = defineTool({
name: "myTool",
description: "My tool",
parameters: z.object({}),
execute: executeFn,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
tools: [tool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([
{ type: "text-start", id: "msg-1" },
{ type: "text-delta", text: "Before " },
{ type: "text-delta", text: "tool" },
toolCallStreamingStart("call1", "myTool"),
toolCall("call1", "myTool"),
toolResult("call1", "myTool", { result: "ok" }),
{ type: "text-start", id: "msg-2" },
{ type: "text-delta", text: "After " },
{ type: "text-delta", text: "tool" },
finish(),
]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
const events = await collectEvents(agent["run"](input));
const textEvents = events.filter(
(e: any) => e.type === EventType.TEXT_MESSAGE_CHUNK,
);
// First two text chunks should have messageId from first text-start
expect(textEvents[0].messageId).toBe("msg-1");
expect(textEvents[1].messageId).toBe("msg-1");
// After tool result, text chunks should have messageId from second text-start
expect(textEvents[2].messageId).toBe("msg-2");
expect(textEvents[3].messageId).toBe("msg-2");
});
});
describe("Multi-Step Execution (maxSteps)", () => {
it("should pass stopWhen with stepCountIs when maxSteps is configured", async () => {
const executeFn = vi.fn().mockResolvedValue({ result: "ok" });
const tool = defineTool({
name: "myTool",
description: "My tool",
parameters: z.object({}),
execute: executeFn,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
maxSteps: 5,
tools: [tool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
const callArgs = vi.mocked(streamText).mock.calls[0][0];
// stopWhen should be set with stepCountIs(5)
expect(callArgs.stopWhen).toEqual({ type: "stepCount", count: 5 });
});
it("should not set stopWhen when maxSteps is not configured", async () => {
const executeFn = vi.fn().mockResolvedValue({ result: "ok" });
const tool = defineTool({
name: "myTool",
description: "My tool",
parameters: z.object({}),
execute: executeFn,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
// maxSteps not set
tools: [tool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
const callArgs = vi.mocked(streamText).mock.calls[0][0];
// stopWhen should be undefined (defaults to stepCountIs(1) in SDK)
expect(callArgs.stopWhen).toBeUndefined();
});
it("should allow high maxSteps for complex tool chains", async () => {
const executeFn = vi.fn().mockResolvedValue({});
const tool = defineTool({
name: "chainTool",
description: "Tool for chaining",
parameters: z.object({}),
execute: executeFn,
});
const agent = new BasicAgent({
model: "openai/gpt-4o",
maxSteps: 10,
tools: [tool],
});
vi.mocked(streamText).mockReturnValue(
mockStreamTextResponse([finish()]) as any,
);
const input: RunAgentInput = {
threadId: "thread1",
runId: "run1",
messages: [],
tools: [],
context: [],
state: {},
};
await collectEvents(agent["run"](input));
const callArgs = vi.mocked(streamText).mock.calls[0][0];
expect(callArgs.stopWhen).toEqual({ type: "stepCount", count: 10 });
});
});
});