@pikku/core 0.12.2 → 0.12.3

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.
Files changed (131) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/crypto-utils.d.ts +10 -0
  3. package/dist/crypto-utils.js +62 -0
  4. package/dist/function/function-runner.js +4 -4
  5. package/dist/function/functions.types.d.ts +26 -1
  6. package/dist/function/functions.types.js +16 -0
  7. package/dist/handle-error.d.ts +1 -1
  8. package/dist/handle-error.js +7 -3
  9. package/dist/index.d.ts +14 -2
  10. package/dist/index.js +1 -1
  11. package/dist/pikku-state.js +3 -1
  12. package/dist/schema.js +1 -1
  13. package/dist/services/in-memory-workflow-service.d.ts +8 -2
  14. package/dist/services/in-memory-workflow-service.js +28 -1
  15. package/dist/services/workflow-service.d.ts +8 -2
  16. package/dist/testing/index.d.ts +2 -0
  17. package/dist/testing/index.js +1 -0
  18. package/dist/testing/service-tests.d.ts +31 -0
  19. package/dist/testing/service-tests.js +598 -0
  20. package/dist/types/core.types.d.ts +9 -1
  21. package/dist/types/state.types.d.ts +4 -2
  22. package/dist/utils/hash.d.ts +2 -0
  23. package/dist/utils/hash.js +23 -0
  24. package/dist/wirings/ai-agent/agent-dynamic-workflow.d.ts +6 -0
  25. package/dist/wirings/ai-agent/agent-dynamic-workflow.js +348 -0
  26. package/dist/wirings/ai-agent/ai-agent-memory.d.ts +1 -1
  27. package/dist/wirings/ai-agent/ai-agent-memory.js +6 -5
  28. package/dist/wirings/ai-agent/ai-agent-prepare.d.ts +10 -7
  29. package/dist/wirings/ai-agent/ai-agent-prepare.js +127 -47
  30. package/dist/wirings/ai-agent/ai-agent-runner.d.ts +4 -0
  31. package/dist/wirings/ai-agent/ai-agent-runner.js +381 -27
  32. package/dist/wirings/ai-agent/ai-agent-stream.d.ts +7 -2
  33. package/dist/wirings/ai-agent/ai-agent-stream.js +109 -46
  34. package/dist/wirings/ai-agent/ai-agent.types.d.ts +22 -1
  35. package/dist/wirings/ai-agent/index.d.ts +1 -2
  36. package/dist/wirings/ai-agent/index.js +1 -2
  37. package/dist/wirings/channel/channel-handler.js +5 -1
  38. package/dist/wirings/channel/channel.types.d.ts +1 -7
  39. package/dist/wirings/channel/local/local-channel-handler.d.ts +1 -1
  40. package/dist/wirings/channel/local/local-channel-handler.js +5 -3
  41. package/dist/wirings/channel/local/local-channel-runner.js +14 -4
  42. package/dist/wirings/channel/serverless/serverless-channel-runner.js +4 -1
  43. package/dist/wirings/cli/cli-runner.js +10 -2
  44. package/dist/wirings/cli/cli.types.d.ts +1 -0
  45. package/dist/wirings/http/http-routes.js +0 -1
  46. package/dist/wirings/http/http-runner.d.ts +1 -1
  47. package/dist/wirings/http/http-runner.js +25 -3
  48. package/dist/wirings/http/http.types.d.ts +3 -11
  49. package/dist/wirings/http/index.d.ts +2 -1
  50. package/dist/wirings/http/index.js +1 -0
  51. package/dist/wirings/http/pikku-fetch-http-request.d.ts +1 -0
  52. package/dist/wirings/http/pikku-fetch-http-request.js +3 -0
  53. package/dist/wirings/http/pikku-fetch-http-response.d.ts +1 -0
  54. package/dist/wirings/http/pikku-fetch-http-response.js +4 -4
  55. package/dist/wirings/http/web-request.d.ts +12 -0
  56. package/dist/wirings/http/web-request.js +85 -0
  57. package/dist/wirings/mcp/mcp-endpoint-registry.js +1 -1
  58. package/dist/wirings/mcp/mcp-runner.js +13 -1
  59. package/dist/wirings/rpc/rpc-runner.d.ts +30 -6
  60. package/dist/wirings/rpc/rpc-runner.js +36 -14
  61. package/dist/wirings/rpc/rpc-types.d.ts +6 -1
  62. package/dist/wirings/rpc/wire-addon.d.ts +1 -0
  63. package/dist/wirings/rpc/wire-addon.js +1 -1
  64. package/dist/wirings/scheduler/scheduler-runner.js +1 -0
  65. package/dist/wirings/workflow/graph/graph-validation.d.ts +3 -0
  66. package/dist/wirings/workflow/graph/graph-validation.js +175 -0
  67. package/dist/wirings/workflow/graph/index.d.ts +1 -0
  68. package/dist/wirings/workflow/graph/index.js +1 -0
  69. package/dist/wirings/workflow/index.d.ts +1 -1
  70. package/dist/wirings/workflow/pikku-workflow-service.d.ts +8 -2
  71. package/dist/wirings/workflow/pikku-workflow-service.js +1 -2
  72. package/dist/wirings/workflow/workflow.types.d.ts +10 -1
  73. package/package.json +4 -2
  74. package/src/crypto-utils.test.ts +99 -1
  75. package/src/crypto-utils.ts +114 -0
  76. package/src/function/function-runner.ts +5 -5
  77. package/src/function/functions.types.ts +38 -1
  78. package/src/handle-error.test.ts +65 -2
  79. package/src/handle-error.ts +8 -4
  80. package/src/index.ts +14 -0
  81. package/src/pikku-state.ts +3 -1
  82. package/src/schema.ts +1 -1
  83. package/src/services/in-memory-workflow-service.ts +45 -2
  84. package/src/services/workflow-service.ts +12 -1
  85. package/src/testing/index.ts +2 -0
  86. package/src/testing/service-tests.ts +873 -0
  87. package/src/types/core.types.ts +9 -1
  88. package/src/types/state.types.ts +4 -2
  89. package/src/utils/hash.test.ts +68 -0
  90. package/src/utils/hash.ts +26 -0
  91. package/src/wirings/ai-agent/agent-dynamic-workflow.ts +469 -0
  92. package/src/wirings/ai-agent/ai-agent-memory.ts +7 -6
  93. package/src/wirings/ai-agent/ai-agent-prepare.ts +175 -61
  94. package/src/wirings/ai-agent/ai-agent-runner.test.ts +3 -1
  95. package/src/wirings/ai-agent/ai-agent-runner.ts +553 -31
  96. package/src/wirings/ai-agent/ai-agent-stream.test.ts +209 -2
  97. package/src/wirings/ai-agent/ai-agent-stream.ts +182 -89
  98. package/src/wirings/ai-agent/ai-agent.types.ts +23 -1
  99. package/src/wirings/ai-agent/index.ts +1 -5
  100. package/src/wirings/channel/channel-handler.ts +11 -2
  101. package/src/wirings/channel/channel.types.ts +1 -7
  102. package/src/wirings/channel/local/local-channel-handler.ts +5 -3
  103. package/src/wirings/channel/local/local-channel-runner.ts +17 -7
  104. package/src/wirings/channel/serverless/serverless-channel-runner.ts +4 -1
  105. package/src/wirings/cli/cli-runner.ts +12 -2
  106. package/src/wirings/cli/cli.types.ts +1 -0
  107. package/src/wirings/http/http-routes.ts +0 -1
  108. package/src/wirings/http/http-runner.ts +35 -10
  109. package/src/wirings/http/http.types.ts +3 -12
  110. package/src/wirings/http/index.ts +3 -0
  111. package/src/wirings/http/pikku-fetch-http-request.ts +4 -0
  112. package/src/wirings/http/pikku-fetch-http-response.ts +4 -4
  113. package/src/wirings/http/web-request.test.ts +236 -0
  114. package/src/wirings/http/web-request.ts +104 -0
  115. package/src/wirings/mcp/mcp-endpoint-registry.ts +1 -1
  116. package/src/wirings/mcp/mcp-runner.ts +30 -12
  117. package/src/wirings/rpc/rpc-runner.ts +45 -24
  118. package/src/wirings/rpc/rpc-types.ts +6 -1
  119. package/src/wirings/rpc/wire-addon.ts +2 -1
  120. package/src/wirings/scheduler/scheduler-runner.ts +1 -0
  121. package/src/wirings/workflow/graph/graph-validation.test.ts +170 -0
  122. package/src/wirings/workflow/graph/graph-validation.ts +237 -0
  123. package/src/wirings/workflow/graph/index.ts +5 -0
  124. package/src/wirings/workflow/index.ts +1 -0
  125. package/src/wirings/workflow/pikku-workflow-service.ts +14 -3
  126. package/src/wirings/workflow/workflow.types.ts +9 -1
  127. package/tsconfig.tsbuildinfo +1 -1
  128. package/dist/wirings/ai-agent/ai-agent-assistant-ui.d.ts +0 -5
  129. package/dist/wirings/ai-agent/ai-agent-assistant-ui.js +0 -168
  130. package/src/wirings/ai-agent/ai-agent-assistant-ui.test.ts +0 -363
  131. package/src/wirings/ai-agent/ai-agent-assistant-ui.ts +0 -238
@@ -1,8 +1,11 @@
1
1
  import { PikkuError } from '../../errors/error-handler.js';
2
- import { pikkuState, getSingletonServices, getCreateWireServices, } from '../../pikku-state.js';
3
- import { runPikkuFunc } from '../../function/function-runner.js';
2
+ import { pikkuState, getSingletonServices } from '../../pikku-state.js';
4
3
  import { createMiddlewareSessionWireProps } from '../../services/user-session-service.js';
5
4
  import { randomUUID } from 'crypto';
5
+ import { streamAIAgent } from './ai-agent-stream.js';
6
+ import { runAIAgent } from './ai-agent-runner.js';
7
+ import { resolveNamespace, ContextAwareRPCService, } from '../../wirings/rpc/rpc-runner.js';
8
+ import { buildDynamicWorkflowInstructions, buildWorkflowTools } from './agent-dynamic-workflow.js';
6
9
  import { resolveMemoryServices, loadContextMessages, trimMessages, } from './ai-agent-memory.js';
7
10
  import { resolveModelConfig } from './ai-agent-model-config.js';
8
11
  export class ToolApprovalRequired extends PikkuError {
@@ -33,7 +36,7 @@ export const resolveAgent = (agentName) => {
33
36
  if (colonIndex !== -1) {
34
37
  const namespace = agentName.substring(0, colonIndex);
35
38
  const localName = agentName.substring(colonIndex + 1);
36
- const addons = pikkuState(null, 'rpc', 'addons');
39
+ const addons = pikkuState(null, 'addons', 'packages');
37
40
  const pkgConfig = addons.get(namespace);
38
41
  if (pkgConfig) {
39
42
  const extAgent = pikkuState(pkgConfig.package, 'agent', 'agents').get(localName);
@@ -48,29 +51,34 @@ export const resolveAgent = (agentName) => {
48
51
  }
49
52
  throw new Error(`AI agent not found: ${agentName}`);
50
53
  };
51
- export function buildInstructions(agentName, packageName) {
54
+ export async function buildInstructions(agentName, packageName) {
52
55
  const meta = pikkuState(packageName, 'agent', 'agentsMeta')[agentName];
53
- const instructions = meta?.instructions ?? '';
54
- const baseInstructions = Array.isArray(instructions)
55
- ? instructions.join('\n')
56
- : instructions;
57
- return meta?.agents?.length
58
- ? baseInstructions +
56
+ const rawInstructions = meta?.instructions ?? '';
57
+ let instructions = Array.isArray(rawInstructions)
58
+ ? rawInstructions.join('\n')
59
+ : rawInstructions;
60
+ if (meta?.agents?.length) {
61
+ instructions +=
59
62
  '\n\nWhen calling a sub-agent, provide a short session name that describes the task. ' +
60
- 'Use the same session name to continue a previous conversation with that agent. ' +
61
- 'Use a new session name for a new independent task.'
62
- : baseInstructions;
63
+ 'Use the same session name to continue a previous conversation with that agent. ' +
64
+ 'Use a new session name for a new independent task. ' +
65
+ 'When a request involves multiple actions for the same domain, combine them into a single sub-agent call rather than making separate calls.';
66
+ }
67
+ if (meta?.dynamicWorkflows && meta.tools?.length) {
68
+ instructions += buildDynamicWorkflowInstructions(meta.tools, meta.dynamicWorkflows);
69
+ }
70
+ return instructions;
63
71
  }
64
72
  export function createScopedChannel(parent, agentName, session) {
65
- let capturedApproval = null;
73
+ const capturedApprovals = [];
66
74
  return {
67
75
  channelId: `${parent.channelId}:${agentName}:${session}`,
68
76
  openingData: parent.openingData,
69
77
  get state() {
70
78
  return parent.state;
71
79
  },
72
- get approval() {
73
- return capturedApproval;
80
+ get approvals() {
81
+ return capturedApprovals;
74
82
  },
75
83
  close: () => { },
76
84
  sendBinary: (data) => parent.sendBinary(data),
@@ -78,12 +86,12 @@ export function createScopedChannel(parent, agentName, session) {
78
86
  if (event.type === 'done')
79
87
  return;
80
88
  if (event.type === 'approval-request') {
81
- capturedApproval = {
89
+ capturedApprovals.push({
82
90
  toolCallId: event.toolCallId,
83
91
  toolName: event.toolName,
84
92
  args: event.args,
85
93
  runId: event.runId,
86
- };
94
+ });
87
95
  return;
88
96
  }
89
97
  if (event.type === 'step-start' ||
@@ -92,7 +100,8 @@ export function createScopedChannel(parent, agentName, session) {
92
100
  event.type === 'tool-call' ||
93
101
  event.type === 'tool-result' ||
94
102
  event.type === 'usage' ||
95
- event.type === 'error') {
103
+ event.type === 'error' ||
104
+ event.type === 'workflow-created') {
96
105
  parent.send({ ...event, agent: agentName, session });
97
106
  }
98
107
  else {
@@ -101,7 +110,7 @@ export function createScopedChannel(parent, agentName, session) {
101
110
  },
102
111
  };
103
112
  }
104
- export function buildToolDefs(params, agentSessionMap, resourceId, agentName, packageName, streamContext, aiMiddlewares) {
113
+ export async function buildToolDefs(params, agentSessionMap, resourceId, agentName, packageName, streamContext, aiMiddlewares, agentMode) {
105
114
  const singletonServices = getSingletonServices();
106
115
  const tools = [];
107
116
  const missingRpcs = [];
@@ -112,16 +121,34 @@ export function buildToolDefs(params, agentSessionMap, resourceId, agentName, pa
112
121
  const metaTools = meta.tools;
113
122
  const metaAgents = meta.agents;
114
123
  if (metaTools?.length) {
115
- const functionMeta = pikkuState(null, 'function', 'meta');
116
- const schemas = pikkuState(null, 'misc', 'schemas');
117
124
  for (const toolName of metaTools) {
118
- const rpcMeta = pikkuState(null, 'rpc', 'meta');
119
- const pikkuFuncId = rpcMeta[toolName];
120
- if (!pikkuFuncId) {
125
+ let fnMeta;
126
+ let resolvedPkg = null;
127
+ let schemas;
128
+ const resolved = toolName.includes(':')
129
+ ? resolveNamespace(toolName)
130
+ : null;
131
+ let pikkuFuncId;
132
+ if (resolved) {
133
+ resolvedPkg = resolved.package;
134
+ pikkuFuncId = resolved.function;
135
+ fnMeta = pikkuState(resolvedPkg, 'function', 'meta')[pikkuFuncId];
136
+ schemas = pikkuState(resolvedPkg, 'misc', 'schemas');
137
+ }
138
+ else {
139
+ const rpcMeta = pikkuState(null, 'rpc', 'meta');
140
+ pikkuFuncId = rpcMeta[toolName];
141
+ if (!pikkuFuncId) {
142
+ missingRpcs.push(toolName);
143
+ continue;
144
+ }
145
+ fnMeta = pikkuState(null, 'function', 'meta')[pikkuFuncId];
146
+ schemas = pikkuState(null, 'misc', 'schemas');
147
+ }
148
+ if (!fnMeta) {
121
149
  missingRpcs.push(toolName);
122
150
  continue;
123
151
  }
124
- const fnMeta = functionMeta[pikkuFuncId];
125
152
  const inputSchemaName = fnMeta?.inputSchemaName;
126
153
  let inputSchema = inputSchemaName
127
154
  ? schemas.get(inputSchemaName)
@@ -133,23 +160,38 @@ export function buildToolDefs(params, agentSessionMap, resourceId, agentName, pa
133
160
  inputSchema = { type: 'object', properties: {} };
134
161
  }
135
162
  const needsApproval = approvalPolicy === 'all' ||
136
- (approvalPolicy === 'explicit' && fnMeta?.requiresApproval);
163
+ (approvalPolicy === 'explicit' && fnMeta?.approvalRequired);
164
+ // Build approvalDescriptionFn if the function has an approvalDescription configured
165
+ let approvalDescriptionFn;
166
+ if (needsApproval && pikkuFuncId) {
167
+ const funcConfig = pikkuState(resolvedPkg, 'function', 'functions').get(pikkuFuncId);
168
+ if (funcConfig?.approvalDescription) {
169
+ const descFn = funcConfig.approvalDescription;
170
+ const capturedPkg = resolvedPkg;
171
+ approvalDescriptionFn = async (input) => {
172
+ let services = singletonServices;
173
+ if (capturedPkg) {
174
+ const pkgServices = pikkuState(capturedPkg, 'package', 'singletonServices');
175
+ if (pkgServices) {
176
+ services = pkgServices;
177
+ }
178
+ }
179
+ return descFn(services, input);
180
+ };
181
+ }
182
+ }
137
183
  tools.push({
138
- name: pikkuFuncId,
184
+ name: toolName.replaceAll(':', '__'),
139
185
  description: fnMeta?.description || fnMeta?.title || toolName,
140
186
  inputSchema,
141
187
  needsApproval: needsApproval || undefined,
188
+ approvalDescriptionFn,
142
189
  execute: async (toolInput) => {
143
190
  const wire = params.sessionService
144
191
  ? { ...createMiddlewareSessionWireProps(params.sessionService) }
145
192
  : {};
146
- return runPikkuFunc('agent', `tool:${pikkuFuncId}`, pikkuFuncId, {
147
- singletonServices,
148
- createWireServices: getCreateWireServices(),
149
- data: () => toolInput,
150
- wire,
151
- sessionService: params.sessionService,
152
- });
193
+ const rpcService = new ContextAwareRPCService(singletonServices, wire, { sessionService: params.sessionService });
194
+ return rpcService.rpc(toolName, toolInput);
153
195
  },
154
196
  });
155
197
  }
@@ -181,11 +223,14 @@ export function buildToolDefs(params, agentSessionMap, resourceId, agentName, pa
181
223
  const sessionKey = `${subAgentName}::${session}`;
182
224
  let threadId = agentSessionMap.get(sessionKey);
183
225
  if (!threadId) {
184
- threadId = `${subAgentName}-${session}-${Date.now()}`;
226
+ threadId = randomUUID();
185
227
  agentSessionMap.set(sessionKey, threadId);
186
228
  }
187
229
  if (streamContext) {
188
- const { streamAIAgent } = await import('./ai-agent-stream.js');
230
+ const isDelegate = agentMode !== 'supervise';
231
+ if (isDelegate && streamContext.delegateState) {
232
+ streamContext.delegateState.delegated = true;
233
+ }
189
234
  const { channel } = streamContext;
190
235
  channel.send({
191
236
  type: 'agent-call',
@@ -194,32 +239,48 @@ export function buildToolDefs(params, agentSessionMap, resourceId, agentName, pa
194
239
  input: message,
195
240
  });
196
241
  const subChannel = createScopedChannel(channel, subAgentName, session);
197
- await streamAIAgent(subAgentName, { message, threadId, resourceId }, subChannel, params, agentSessionMap, streamContext.options);
198
- if (subChannel.approval) {
242
+ // In supervise mode, suppress sub-agent text from reaching the client.
243
+ // Approvals still flow through normally.
244
+ const effectiveChannel = isDelegate
245
+ ? subChannel
246
+ : {
247
+ ...subChannel,
248
+ send: (event) => {
249
+ if (event.type === 'text-delta' ||
250
+ event.type === 'reasoning-delta')
251
+ return;
252
+ subChannel.send(event);
253
+ },
254
+ };
255
+ const resultText = await streamAIAgent(subAgentName, { message, threadId, resourceId }, effectiveChannel, params, agentSessionMap, streamContext.options);
256
+ if (subChannel.approvals.length > 0) {
199
257
  return {
200
258
  __approvalRequired: true,
201
259
  toolName: subAgentName,
202
260
  args: toolInput,
203
- displayToolName: subChannel.approval.toolName,
204
- displayArgs: subChannel.approval.args,
205
- agentRunId: subChannel.approval.runId,
261
+ agentRunId: subChannel.approvals[0].runId,
262
+ subApprovals: subChannel.approvals,
206
263
  };
207
264
  }
208
265
  channel.send({
209
266
  type: 'agent-result',
210
267
  agentName: subAgentName,
211
268
  session,
212
- result: null,
269
+ result: resultText,
213
270
  });
214
- return null;
271
+ return resultText;
215
272
  }
216
- const { runAIAgent } = await import('./ai-agent-runner.js');
273
+ // No stream context: sub-agent runs non-streaming
217
274
  const result = await runAIAgent(subAgentName, { message, threadId, resourceId }, params, agentSessionMap);
218
275
  return result.object ?? result.text;
219
276
  },
220
277
  });
221
278
  }
222
279
  }
280
+ if (meta.dynamicWorkflows) {
281
+ const workflowTools = buildWorkflowTools(agentName, packageName, meta.tools ?? [], meta.dynamicWorkflows, streamContext, params.sessionService);
282
+ tools.push(...workflowTools);
283
+ }
223
284
  const hasToolHooks = aiMiddlewares?.some((mw) => mw.beforeToolCall || mw.afterToolCall);
224
285
  if (hasToolHooks) {
225
286
  for (const tool of tools) {
@@ -280,6 +341,15 @@ export async function prepareAgentRun(agentName, input, params, agentSessionMap,
280
341
  if (!agentRunner) {
281
342
  throw new Error('AIAgentRunnerService not available in singletonServices');
282
343
  }
344
+ if (agent.dynamicWorkflows && singletonServices.workflowService) {
345
+ const persisted = await singletonServices.workflowService.getAIGeneratedWorkflows(resolvedName);
346
+ const allMeta = pikkuState(null, 'workflows', 'meta');
347
+ for (const wf of persisted) {
348
+ if (!allMeta[wf.workflowName]) {
349
+ allMeta[wf.workflowName] = wf.graph;
350
+ }
351
+ }
352
+ }
283
353
  const { storage } = resolveMemoryServices(agent, singletonServices);
284
354
  const memoryConfig = agent.memory;
285
355
  const threadId = input.threadId;
@@ -329,9 +399,19 @@ export async function prepareAgentRun(agentName, input, params, agentSessionMap,
329
399
  const allMessages = [...contextMessages, ...messages, userMessage];
330
400
  const trimmedMessages = trimMessages(allMessages);
331
401
  const aiMiddlewares = agent.aiMiddleware ?? [];
332
- const { tools, missingRpcs } = buildToolDefs(params, agentSessionMap, input.resourceId, resolvedName, packageName, streamContext, aiMiddlewares);
333
- const instructions = buildInstructions(resolvedName, packageName);
402
+ const { tools, missingRpcs } = await buildToolDefs(params, agentSessionMap, input.resourceId, resolvedName, packageName, streamContext, aiMiddlewares, agent.agentMode);
403
+ const instructions = await buildInstructions(resolvedName, packageName);
334
404
  const resolved = resolveModelConfig(resolvedName, agent);
405
+ // Per-request overrides
406
+ if (input.model) {
407
+ resolved.model = resolveModelConfig(resolvedName, {
408
+ ...agent,
409
+ model: input.model,
410
+ }).model;
411
+ }
412
+ if (input.temperature !== undefined) {
413
+ resolved.temperature = input.temperature;
414
+ }
335
415
  const maxSteps = resolved.maxSteps ?? 10;
336
416
  const runnerParams = {
337
417
  model: resolved.model,
@@ -1,3 +1,7 @@
1
1
  import type { AIAgentInput, AIAgentOutput } from './ai-agent.types.js';
2
2
  import { type RunAIAgentParams } from './ai-agent-prepare.js';
3
3
  export declare function runAIAgent(agentName: string, input: AIAgentInput, params: RunAIAgentParams, agentSessionMap?: Map<string, string>): Promise<AIAgentOutput>;
4
+ export declare function resumeAIAgentSync(runId: string, approvals: {
5
+ toolCallId: string;
6
+ approved: boolean;
7
+ }[], params: RunAIAgentParams, expectedAgentName?: string): Promise<AIAgentOutput>;