@falai/agent 0.3.25 → 0.4.0

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 (86) hide show
  1. package/README.md +97 -3
  2. package/dist/cjs/core/Agent.d.ts +1 -0
  3. package/dist/cjs/core/Agent.d.ts.map +1 -1
  4. package/dist/cjs/core/Agent.js +51 -12
  5. package/dist/cjs/core/Agent.js.map +1 -1
  6. package/dist/cjs/core/ConditionEvaluator.d.ts +72 -0
  7. package/dist/cjs/core/ConditionEvaluator.d.ts.map +1 -0
  8. package/dist/cjs/core/ConditionEvaluator.js +272 -0
  9. package/dist/cjs/core/ConditionEvaluator.js.map +1 -0
  10. package/dist/cjs/core/PreparationEngine.d.ts +105 -0
  11. package/dist/cjs/core/PreparationEngine.d.ts.map +1 -0
  12. package/dist/cjs/core/PreparationEngine.js +320 -0
  13. package/dist/cjs/core/PreparationEngine.js.map +1 -0
  14. package/dist/cjs/core/PromptBuilder.d.ts +3 -0
  15. package/dist/cjs/core/PromptBuilder.d.ts.map +1 -1
  16. package/dist/cjs/core/PromptBuilder.js +10 -10
  17. package/dist/cjs/core/PromptBuilder.js.map +1 -1
  18. package/dist/cjs/core/Route.d.ts +6 -0
  19. package/dist/cjs/core/Route.d.ts.map +1 -1
  20. package/dist/cjs/core/Route.js +9 -0
  21. package/dist/cjs/core/Route.js.map +1 -1
  22. package/dist/cjs/providers/AnthropicProvider.d.ts +3 -3
  23. package/dist/cjs/providers/AnthropicProvider.d.ts.map +1 -1
  24. package/dist/cjs/providers/AnthropicProvider.js.map +1 -1
  25. package/dist/cjs/providers/GeminiProvider.d.ts +3 -3
  26. package/dist/cjs/providers/GeminiProvider.d.ts.map +1 -1
  27. package/dist/cjs/providers/GeminiProvider.js +43 -18
  28. package/dist/cjs/providers/GeminiProvider.js.map +1 -1
  29. package/dist/cjs/providers/OpenAIProvider.d.ts +3 -3
  30. package/dist/cjs/providers/OpenAIProvider.d.ts.map +1 -1
  31. package/dist/cjs/providers/OpenAIProvider.js.map +1 -1
  32. package/dist/cjs/providers/OpenRouterProvider.d.ts +3 -3
  33. package/dist/cjs/providers/OpenRouterProvider.d.ts.map +1 -1
  34. package/dist/cjs/providers/OpenRouterProvider.js.map +1 -1
  35. package/dist/cjs/types/ai.d.ts +6 -6
  36. package/dist/cjs/types/ai.d.ts.map +1 -1
  37. package/dist/core/Agent.d.ts +1 -0
  38. package/dist/core/Agent.d.ts.map +1 -1
  39. package/dist/core/Agent.js +51 -12
  40. package/dist/core/Agent.js.map +1 -1
  41. package/dist/core/ConditionEvaluator.d.ts +72 -0
  42. package/dist/core/ConditionEvaluator.d.ts.map +1 -0
  43. package/dist/core/ConditionEvaluator.js +268 -0
  44. package/dist/core/ConditionEvaluator.js.map +1 -0
  45. package/dist/core/PreparationEngine.d.ts +105 -0
  46. package/dist/core/PreparationEngine.d.ts.map +1 -0
  47. package/dist/core/PreparationEngine.js +316 -0
  48. package/dist/core/PreparationEngine.js.map +1 -0
  49. package/dist/core/PromptBuilder.d.ts +3 -0
  50. package/dist/core/PromptBuilder.d.ts.map +1 -1
  51. package/dist/core/PromptBuilder.js +10 -10
  52. package/dist/core/PromptBuilder.js.map +1 -1
  53. package/dist/core/Route.d.ts +6 -0
  54. package/dist/core/Route.d.ts.map +1 -1
  55. package/dist/core/Route.js +9 -0
  56. package/dist/core/Route.js.map +1 -1
  57. package/dist/providers/AnthropicProvider.d.ts +3 -3
  58. package/dist/providers/AnthropicProvider.d.ts.map +1 -1
  59. package/dist/providers/AnthropicProvider.js.map +1 -1
  60. package/dist/providers/GeminiProvider.d.ts +3 -3
  61. package/dist/providers/GeminiProvider.d.ts.map +1 -1
  62. package/dist/providers/GeminiProvider.js +43 -18
  63. package/dist/providers/GeminiProvider.js.map +1 -1
  64. package/dist/providers/OpenAIProvider.d.ts +3 -3
  65. package/dist/providers/OpenAIProvider.d.ts.map +1 -1
  66. package/dist/providers/OpenAIProvider.js.map +1 -1
  67. package/dist/providers/OpenRouterProvider.d.ts +3 -3
  68. package/dist/providers/OpenRouterProvider.d.ts.map +1 -1
  69. package/dist/providers/OpenRouterProvider.js.map +1 -1
  70. package/dist/types/ai.d.ts +6 -6
  71. package/dist/types/ai.d.ts.map +1 -1
  72. package/docs/ARCHITECTURE.md +386 -0
  73. package/docs/DOMAINS.md +674 -0
  74. package/docs/README.md +17 -3
  75. package/examples/domain-scoping.ts +18 -10
  76. package/package.json +1 -1
  77. package/src/core/Agent.ts +63 -12
  78. package/src/core/ConditionEvaluator.ts +381 -0
  79. package/src/core/PreparationEngine.ts +500 -0
  80. package/src/core/PromptBuilder.ts +16 -16
  81. package/src/core/Route.ts +10 -0
  82. package/src/providers/AnthropicProvider.ts +51 -21
  83. package/src/providers/GeminiProvider.ts +86 -40
  84. package/src/providers/OpenAIProvider.ts +48 -21
  85. package/src/providers/OpenRouterProvider.ts +36 -18
  86. package/src/types/ai.ts +13 -8
@@ -0,0 +1,500 @@
1
+ /**
2
+ * PreparationEngine - Handles the preparation iteration loop
3
+ *
4
+ * This engine implements the core Parlant/Emcie architecture:
5
+ * 1. Before generating a message, run preparation iterations
6
+ * 2. Each iteration:
7
+ * - Match guidelines against current context
8
+ * - Walk the state machine and execute tool transitions
9
+ * - Execute tools when conditions are met
10
+ * - Update context from tool results
11
+ * - Check if prepared to respond
12
+ * 3. After preparation, the AI generates the final message
13
+ *
14
+ * The AI NEVER sees tools - tools execute automatically based on:
15
+ * - State machine transitions ({ toolState: tool })
16
+ * - Guideline matching with associated tools
17
+ */
18
+
19
+ import type { Event, StateRef, AiProvider } from "../types/index";
20
+ import type { Guideline, GuidelineMatch } from "../types/agent";
21
+ import type { ToolRef } from "../types/tool";
22
+ import type { Route } from "./Route";
23
+ import { State } from "./State";
24
+ import { ConditionEvaluator } from "./ConditionEvaluator";
25
+
26
+ /**
27
+ * Tool execution result
28
+ */
29
+ export interface ToolExecutionResult {
30
+ toolName: string;
31
+ arguments: Record<string, unknown>;
32
+ result: unknown;
33
+ success: boolean;
34
+ error?: string;
35
+ }
36
+
37
+ /**
38
+ * Preparation iteration state
39
+ */
40
+ export interface IterationState {
41
+ iterationNumber: number;
42
+ matchedGuidelines: GuidelineMatch[];
43
+ executedTools: ToolExecutionResult[];
44
+ contextUpdates: Record<string, unknown>;
45
+ preparedToRespond: boolean;
46
+ }
47
+
48
+ /**
49
+ * Preparation context
50
+ */
51
+ export interface PreparationContext<TContext = unknown> {
52
+ history: Event[];
53
+ currentState?: StateRef;
54
+ context: TContext;
55
+ routes: Route<TContext>[];
56
+ guidelines: Guideline[];
57
+ maxIterations: number;
58
+ }
59
+
60
+ /**
61
+ * Preparation result
62
+ */
63
+ export interface PreparationResult<TContext = unknown> {
64
+ iterations: IterationState[];
65
+ finalContext: TContext;
66
+ toolExecutions: ToolExecutionResult[];
67
+ preparedToRespond: boolean;
68
+ }
69
+
70
+ /**
71
+ * PreparationEngine - Executes the preparation iteration loop
72
+ */
73
+ export class PreparationEngine<TContext = unknown> {
74
+ private readonly conditionEvaluator?: ConditionEvaluator<TContext>;
75
+
76
+ constructor(ai?: AiProvider) {
77
+ if (ai) {
78
+ this.conditionEvaluator = new ConditionEvaluator<TContext>(ai);
79
+ }
80
+ }
81
+
82
+ /**
83
+ * Run preparation iterations before message generation
84
+ *
85
+ * This is the core engine that executes tools automatically
86
+ * based on state machine transitions and guideline matching.
87
+ */
88
+ async prepare(
89
+ preparationContext: PreparationContext<TContext>
90
+ ): Promise<PreparationResult<TContext>> {
91
+ const iterations: IterationState[] = [];
92
+ let currentContext = { ...preparationContext.context };
93
+ const allToolExecutions: ToolExecutionResult[] = [];
94
+ let preparedToRespond = false;
95
+
96
+ // Run preparation iterations
97
+ for (
98
+ let i = 0;
99
+ i < preparationContext.maxIterations && !preparedToRespond;
100
+ i++
101
+ ) {
102
+ const iteration = await this.runIteration({
103
+ iterationNumber: i + 1,
104
+ history: preparationContext.history,
105
+ currentState: preparationContext.currentState,
106
+ context: currentContext,
107
+ routes: preparationContext.routes,
108
+ guidelines: preparationContext.guidelines,
109
+ });
110
+
111
+ iterations.push(iteration);
112
+ allToolExecutions.push(...iteration.executedTools);
113
+
114
+ // Update context from tool results
115
+ if (Object.keys(iteration.contextUpdates).length > 0) {
116
+ currentContext = {
117
+ ...currentContext,
118
+ ...iteration.contextUpdates,
119
+ } as TContext;
120
+ }
121
+
122
+ // Check if we're prepared to respond
123
+ // We're prepared if:
124
+ // 1. No tools were executed in this iteration (nothing left to do)
125
+ // 2. OR we've reached max iterations
126
+ // 3. OR iteration explicitly set preparedToRespond to true
127
+ if (
128
+ iteration.executedTools.length === 0 ||
129
+ i === preparationContext.maxIterations - 1 ||
130
+ iteration.preparedToRespond
131
+ ) {
132
+ preparedToRespond = true;
133
+ }
134
+ }
135
+
136
+ return {
137
+ iterations,
138
+ finalContext: currentContext,
139
+ toolExecutions: allToolExecutions,
140
+ preparedToRespond,
141
+ };
142
+ }
143
+
144
+ /**
145
+ * Run a single preparation iteration
146
+ */
147
+ private async runIteration(params: {
148
+ iterationNumber: number;
149
+ history: Event[];
150
+ currentState?: StateRef;
151
+ context: TContext;
152
+ routes: Route<TContext>[];
153
+ guidelines: Guideline[];
154
+ }): Promise<IterationState> {
155
+ const executedTools: ToolExecutionResult[] = [];
156
+ const contextUpdates: Record<string, unknown> = {};
157
+ const matchedGuidelines: GuidelineMatch[] = [];
158
+
159
+ // Step 1: Match guidelines against current context
160
+ const matchedResults = await this.matchGuidelines(
161
+ params.guidelines,
162
+ params.context,
163
+ params.history
164
+ );
165
+ matchedGuidelines.push(...matchedResults);
166
+
167
+ // Step 2: Execute tools from matched guidelines
168
+ // Guidelines with associated tools should execute those tools
169
+ for (const match of matchedGuidelines) {
170
+ if (match.guideline.tools && match.guideline.tools.length > 0) {
171
+ for (const tool of match.guideline.tools) {
172
+ const toolResult = await this.executeTool(
173
+ tool as ToolRef<TContext, unknown[], unknown>,
174
+ params.context,
175
+ params.history
176
+ );
177
+ if (toolResult) {
178
+ executedTools.push(toolResult);
179
+
180
+ // Update context from tool result if tool provided context updates
181
+ if (toolResult.result && typeof toolResult.result === "object") {
182
+ const result = toolResult.result as Record<string, unknown>;
183
+ if (result.contextUpdate) {
184
+ Object.assign(contextUpdates, result.contextUpdate);
185
+ }
186
+ }
187
+ }
188
+ }
189
+ }
190
+ }
191
+
192
+ // Step 3: Walk state machine and execute tool transitions
193
+ // Find current route and state, then execute any toolState transitions
194
+ if (params.currentState?.id) {
195
+ const currentRoute = params.routes.find(
196
+ (r) => r.id === params.currentState!.routeId
197
+ );
198
+
199
+ if (currentRoute) {
200
+ const toolResults = await this.executeStateToolTransitions(
201
+ currentRoute,
202
+ params.currentState,
203
+ params.context,
204
+ params.history
205
+ );
206
+ executedTools.push(...toolResults);
207
+
208
+ // Update context from state tool results
209
+ for (const toolResult of toolResults) {
210
+ if (toolResult.result && typeof toolResult.result === "object") {
211
+ const result = toolResult.result as Record<string, unknown>;
212
+ if (result.contextUpdate) {
213
+ Object.assign(contextUpdates, result.contextUpdate);
214
+ }
215
+ }
216
+ }
217
+ }
218
+ }
219
+
220
+ return {
221
+ iterationNumber: params.iterationNumber,
222
+ matchedGuidelines,
223
+ executedTools,
224
+ contextUpdates,
225
+ preparedToRespond: false, // Will be determined by caller
226
+ };
227
+ }
228
+
229
+ /**
230
+ * Match guidelines against current context
231
+ *
232
+ * Evaluates guideline conditions against the current context and history
233
+ * using AI to determine relevance and priority
234
+ */
235
+ private async matchGuidelines(
236
+ guidelines: Guideline[],
237
+ context: TContext,
238
+ history: Event[]
239
+ ): Promise<GuidelineMatch[]> {
240
+ const matches: GuidelineMatch[] = [];
241
+
242
+ for (const guideline of guidelines) {
243
+ // Skip disabled guidelines
244
+ if (guideline.enabled === false) {
245
+ continue;
246
+ }
247
+
248
+ // If guideline has no condition, it's always matched
249
+ if (!guideline.condition) {
250
+ matches.push({
251
+ guideline,
252
+ rationale: "Guideline has no condition - always active",
253
+ });
254
+ continue;
255
+ }
256
+
257
+ // Evaluate condition using AI if evaluator is available
258
+ if (!this.conditionEvaluator) {
259
+ // No AI available, match all enabled guidelines with conditions
260
+ matches.push({
261
+ guideline,
262
+ rationale: "AI not available - defaulting to match",
263
+ });
264
+ continue;
265
+ }
266
+
267
+ const evaluation =
268
+ await this.conditionEvaluator.evaluateGuidelineCondition(
269
+ guideline,
270
+ context,
271
+ history
272
+ );
273
+
274
+ if (evaluation.matches) {
275
+ matches.push({
276
+ guideline,
277
+ rationale: evaluation.rationale || "Condition evaluated as true",
278
+ });
279
+ }
280
+ }
281
+
282
+ return matches;
283
+ }
284
+
285
+ /**
286
+ * Execute a single tool
287
+ */
288
+ private async executeTool(
289
+ tool: ToolRef<TContext, unknown[], unknown>,
290
+ context: TContext,
291
+ history: Event[]
292
+ ): Promise<ToolExecutionResult | null> {
293
+ try {
294
+ // Extract arguments from context and history
295
+ let args: unknown[];
296
+
297
+ if (this.conditionEvaluator && tool.parameters) {
298
+ // Use AI-powered extraction if available
299
+ const extraction = await this.conditionEvaluator.extractToolArguments(
300
+ tool,
301
+ context,
302
+ history
303
+ );
304
+ args = extraction.arguments;
305
+ } else {
306
+ // Fallback to simple extraction
307
+ args = this.conditionEvaluator
308
+ ? this.conditionEvaluator.simpleArgumentExtraction(tool, context)
309
+ : [];
310
+ }
311
+
312
+ // Execute the tool handler
313
+ const result = await tool.handler(
314
+ {
315
+ context,
316
+ history,
317
+ updateContext: async (_updates: Partial<TContext>) => {
318
+ // Context updates are handled separately in the preparation loop
319
+ // This is a no-op placeholder
320
+ },
321
+ },
322
+ ...args
323
+ );
324
+
325
+ return {
326
+ toolName: tool.name,
327
+ arguments: { args }, // Wrap array in object for logging
328
+ result,
329
+ success: true,
330
+ };
331
+ } catch (error) {
332
+ console.error(
333
+ `[PreparationEngine] Tool execution failed: ${tool.name}`,
334
+ error
335
+ );
336
+ return {
337
+ toolName: tool.name,
338
+ arguments: {},
339
+ result: null,
340
+ success: false,
341
+ error: error instanceof Error ? error.message : String(error),
342
+ };
343
+ }
344
+ }
345
+
346
+ /**
347
+ * Execute tool transitions in the state machine
348
+ *
349
+ * Walks through state transitions and executes tools when
350
+ * reaching a { toolState: tool } transition
351
+ */
352
+ private async executeStateToolTransitions(
353
+ route: Route<TContext>,
354
+ currentStateRef: StateRef,
355
+ context: TContext,
356
+ history: Event[]
357
+ ): Promise<ToolExecutionResult[]> {
358
+ const executedTools: ToolExecutionResult[] = [];
359
+
360
+ // Get the current state from the route or use initial state
361
+ let stateToWalk: State<TContext>;
362
+
363
+ try {
364
+ const foundState = route.getState(currentStateRef.id);
365
+ if (foundState) {
366
+ stateToWalk = foundState;
367
+ } else {
368
+ stateToWalk = route.initialState;
369
+ }
370
+ } catch {
371
+ // If any error occurs, fallback to initial state
372
+ stateToWalk = route.initialState;
373
+ }
374
+
375
+ // Walk the state machine starting from the determined state
376
+ const toolResults = await this.walkStateChain(
377
+ stateToWalk,
378
+ context,
379
+ history,
380
+ new Set() // Track visited states to prevent loops
381
+ );
382
+
383
+ executedTools.push(...toolResults);
384
+
385
+ return executedTools;
386
+ }
387
+
388
+ /**
389
+ * Walk through a chain of states, executing tools along the way
390
+ */
391
+ private async walkStateChain(
392
+ state: State<TContext>,
393
+ context: TContext,
394
+ history: Event[],
395
+ visited: Set<string>
396
+ ): Promise<ToolExecutionResult[]> {
397
+ const executedTools: ToolExecutionResult[] = [];
398
+
399
+ // Prevent infinite loops
400
+ if (visited.has(state.id)) {
401
+ return executedTools;
402
+ }
403
+ visited.add(state.id);
404
+
405
+ // Get all transitions from this state
406
+ const transitions = state.getTransitions();
407
+
408
+ // Process each transition
409
+ for (const transition of transitions) {
410
+ // Check if transition has a condition
411
+ if (transition.hasCondition()) {
412
+ // Evaluate condition
413
+ const shouldFollow = await this.evaluateTransitionCondition(
414
+ transition,
415
+ context,
416
+ history
417
+ );
418
+
419
+ if (!shouldFollow) {
420
+ continue; // Skip this transition
421
+ }
422
+ }
423
+
424
+ // Check if this is a toolState transition
425
+ if (transition.spec.toolState) {
426
+ // Execute the tool
427
+ const toolResult = await this.executeTool(
428
+ transition.spec.toolState,
429
+ context,
430
+ history
431
+ );
432
+
433
+ if (toolResult) {
434
+ executedTools.push(toolResult);
435
+
436
+ // Update context with tool results for next transitions
437
+ if (toolResult.result && typeof toolResult.result === "object") {
438
+ const result = toolResult.result as Record<string, unknown>;
439
+ if (result.contextUpdate) {
440
+ context = {
441
+ ...context,
442
+ ...(result.contextUpdate as Partial<TContext>),
443
+ };
444
+ }
445
+ }
446
+ }
447
+ }
448
+
449
+ // Get the target state and recursively walk it
450
+ const targetState = transition.getTarget();
451
+ if (targetState && !visited.has(targetState.id)) {
452
+ const childResults = await this.walkStateChain(
453
+ targetState,
454
+ context,
455
+ history,
456
+ visited
457
+ );
458
+ executedTools.push(...childResults);
459
+ }
460
+ }
461
+
462
+ return executedTools;
463
+ }
464
+
465
+ /**
466
+ * Evaluate a transition condition
467
+ */
468
+ private async evaluateTransitionCondition(
469
+ transition: { condition?: string },
470
+ context: TContext,
471
+ history: Event[]
472
+ ): Promise<boolean> {
473
+ if (!transition.condition) {
474
+ return true; // No condition = always follow
475
+ }
476
+
477
+ // If no AI evaluator available, default to true
478
+ if (!this.conditionEvaluator) {
479
+ return true;
480
+ }
481
+
482
+ try {
483
+ const evaluation =
484
+ await this.conditionEvaluator.evaluateTransitionCondition(
485
+ transition.condition,
486
+ context,
487
+ history
488
+ );
489
+
490
+ return evaluation.shouldFollow;
491
+ } catch (error) {
492
+ console.error(
493
+ `[PreparationEngine] Failed to evaluate transition condition`,
494
+ error
495
+ );
496
+ // On error, default to false (don't follow)
497
+ return false;
498
+ }
499
+ }
500
+ }
@@ -449,7 +449,7 @@ When you detect any of these situations, consider which route would be most appr
449
449
  ? `\n Triggered when: ${route.conditions.join(" OR ")}`
450
450
  : "";
451
451
  const desc = route.description ? `\n ${route.description}` : "";
452
-
452
+
453
453
  let domainInfo = "";
454
454
  if (route.domains !== undefined) {
455
455
  if (route.domains.length === 0) {
@@ -461,17 +461,23 @@ When you detect any of these situations, consider which route would be most appr
461
461
 
462
462
  let rulesInfo = "";
463
463
  if (route.rules && route.rules.length > 0) {
464
- const rulesList = route.rules.map((r, idx) => `${idx + 1}. ${r}`).join("; ");
464
+ const rulesList = route.rules
465
+ .map((r, idx) => `${idx + 1}. ${r}`)
466
+ .join("; ");
465
467
  rulesInfo = `\n RULES: ${rulesList}`;
466
468
  }
467
469
 
468
470
  let prohibitionsInfo = "";
469
471
  if (route.prohibitions && route.prohibitions.length > 0) {
470
- const prohibitionsList = route.prohibitions.map((p, idx) => `${idx + 1}. ${p}`).join("; ");
472
+ const prohibitionsList = route.prohibitions
473
+ .map((p, idx) => `${idx + 1}. ${p}`)
474
+ .join("; ");
471
475
  prohibitionsInfo = `\n PROHIBITIONS: ${prohibitionsList}`;
472
476
  }
473
477
 
474
- return `${i + 1}) ${route.title}${desc}${conditions}${domainInfo}${rulesInfo}${prohibitionsInfo}`;
478
+ return `${i + 1}) ${
479
+ route.title
480
+ }${desc}${conditions}${domainInfo}${rulesInfo}${prohibitionsInfo}`;
475
481
  })
476
482
  .join("\n\n");
477
483
 
@@ -497,9 +503,7 @@ IMPORTANT:
497
503
  /**
498
504
  * Add domains (tools) information
499
505
  */
500
- addDomains(
501
- domains: Record<string, Record<string, unknown>>
502
- ): this {
506
+ addDomains(domains: Record<string, Record<string, unknown>>): this {
503
507
  const domainNames = Object.keys(domains);
504
508
  if (domainNames.length > 0) {
505
509
  const domainsString = domainNames
@@ -526,21 +530,18 @@ When calling tools, use the format: domain.toolName (e.g., "payment.processPayme
526
530
  return this;
527
531
  }
528
532
 
529
-
530
533
  /**
531
534
  * Add JSON response schema instructions
535
+ *
536
+ * NOTE: toolCalls are NOT included. Tools execute automatically based on
537
+ * state transitions and guideline matching, NOT based on AI decisions.
532
538
  */
533
539
  addJsonResponseSchema(): this {
534
540
  const schema = {
535
541
  message: "The actual message to send to the user",
536
542
  route: "The title of the route you chose (or null if no specific route)",
537
- state: "The current state within the route (or null if not in a route)",
538
- toolCalls: [
539
- {
540
- toolName: "Name of the tool to call",
541
- arguments: "Object with tool arguments",
542
- },
543
- ],
543
+ state:
544
+ "The current state within the chosen route (or null if not in a route)",
544
545
  reasoning: "Optional: Your internal reasoning for this response",
545
546
  };
546
547
 
@@ -556,7 +557,6 @@ Instructions:
556
557
  - "message": The actual message to send to the user (required)
557
558
  - "route": If you chose a specific conversation route, provide its exact title. If not in a route, use null.
558
559
  - "state": The current state within the chosen route. If not in a route or at initial state, use null.
559
- - "toolCalls": If you need to call any tools, provide an array of tool calls. If no tools needed, use an empty array or omit.
560
560
  - "reasoning": Optional field for your internal thinking process.
561
561
 
562
562
  Your entire response must be valid JSON. Do not include any text before or after the JSON object.`,
package/src/core/Route.ts CHANGED
@@ -132,6 +132,16 @@ export class Route<TContext = unknown> {
132
132
  return states;
133
133
  }
134
134
 
135
+ /**
136
+ * Get a specific state by ID
137
+ * @param stateId - The state ID to find
138
+ * @returns The state if found, undefined otherwise
139
+ */
140
+ getState(stateId: string): State<TContext> | undefined {
141
+ const states = this.getAllStates();
142
+ return states.find((state) => state.id === stateId);
143
+ }
144
+
135
145
  /**
136
146
  * Get a description of the route structure for debugging
137
147
  */