@falai/agent 1.1.1 → 1.1.2
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/dist/cjs/core/Agent.d.ts +202 -67
- package/dist/cjs/core/Agent.d.ts.map +1 -1
- package/dist/cjs/core/Agent.js +366 -158
- package/dist/cjs/core/Agent.js.map +1 -1
- package/dist/cjs/core/BatchExecutor.d.ts.map +1 -1
- package/dist/cjs/core/BatchExecutor.js +4 -2
- package/dist/cjs/core/BatchExecutor.js.map +1 -1
- package/dist/cjs/core/BatchPromptBuilder.d.ts.map +1 -1
- package/dist/cjs/core/BatchPromptBuilder.js +5 -2
- package/dist/cjs/core/BatchPromptBuilder.js.map +1 -1
- package/dist/cjs/core/ResponseEngine.d.ts.map +1 -1
- package/dist/cjs/core/ResponseEngine.js +6 -3
- package/dist/cjs/core/ResponseEngine.js.map +1 -1
- package/dist/cjs/core/ResponseModal.d.ts.map +1 -1
- package/dist/cjs/core/ResponseModal.js +18 -17
- package/dist/cjs/core/ResponseModal.js.map +1 -1
- package/dist/cjs/core/RoutingEngine.d.ts.map +1 -1
- package/dist/cjs/core/RoutingEngine.js +8 -73
- package/dist/cjs/core/RoutingEngine.js.map +1 -1
- package/dist/core/Agent.d.ts +202 -67
- package/dist/core/Agent.d.ts.map +1 -1
- package/dist/core/Agent.js +366 -158
- package/dist/core/Agent.js.map +1 -1
- package/dist/core/BatchExecutor.d.ts.map +1 -1
- package/dist/core/BatchExecutor.js +4 -2
- package/dist/core/BatchExecutor.js.map +1 -1
- package/dist/core/BatchPromptBuilder.d.ts.map +1 -1
- package/dist/core/BatchPromptBuilder.js +5 -2
- package/dist/core/BatchPromptBuilder.js.map +1 -1
- package/dist/core/ResponseEngine.d.ts.map +1 -1
- package/dist/core/ResponseEngine.js +6 -3
- package/dist/core/ResponseEngine.js.map +1 -1
- package/dist/core/ResponseModal.d.ts.map +1 -1
- package/dist/core/ResponseModal.js +18 -17
- package/dist/core/ResponseModal.js.map +1 -1
- package/dist/core/RoutingEngine.d.ts.map +1 -1
- package/dist/core/RoutingEngine.js +8 -73
- package/dist/core/RoutingEngine.js.map +1 -1
- package/docs/api/README.md +2 -2
- package/docs/api/overview.md +1 -1
- package/docs/architecture/data-extraction-flow.md +17 -19
- package/docs/core/conversation-flows/data-collection.md +2 -2
- package/docs/core/error-handling.md +3 -4
- package/package.json +2 -2
- package/src/core/Agent.ts +427 -195
- package/src/core/BatchExecutor.ts +5 -2
- package/src/core/BatchPromptBuilder.ts +41 -38
- package/src/core/ResponseEngine.ts +56 -53
- package/src/core/ResponseModal.ts +79 -81
- package/src/core/RoutingEngine.ts +67 -149
package/dist/cjs/core/Agent.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Core Agent implementation
|
|
3
3
|
*/
|
|
4
|
-
import type { AgentOptions, Term, Guideline, GuidelineMatch, Tool, Event, RouteOptions, SessionState, Template, AgentResponseStreamChunk, AgentResponse, StructuredSchema, ValidationResult } from "../types";
|
|
4
|
+
import type { AgentOptions, Term, Guideline, GuidelineMatch, Tool, Event, RouteOptions, SessionState, Template, AgentResponseStreamChunk, AgentResponse, StructuredSchema, ValidationResult, AiProvider } from "../types";
|
|
5
|
+
import { CompositionMode } from "../types";
|
|
5
6
|
import type { StreamOptions, GenerateOptions, RespondParams } from "./ResponseModal";
|
|
6
7
|
import { Route } from "./Route";
|
|
7
8
|
import { Step } from "./Step";
|
|
@@ -13,21 +14,21 @@ import { ToolManager } from "./ToolManager";
|
|
|
13
14
|
* Main Agent class with generic context and data support
|
|
14
15
|
*/
|
|
15
16
|
export declare class Agent<TContext = any, TData = any> {
|
|
16
|
-
private
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private
|
|
20
|
-
private
|
|
21
|
-
private
|
|
22
|
-
private
|
|
23
|
-
private
|
|
24
|
-
private
|
|
25
|
-
private
|
|
26
|
-
private
|
|
27
|
-
private
|
|
28
|
-
private
|
|
29
|
-
private
|
|
30
|
-
private
|
|
17
|
+
private options;
|
|
18
|
+
private _terms;
|
|
19
|
+
private _guidelines;
|
|
20
|
+
private _tools;
|
|
21
|
+
private _routes;
|
|
22
|
+
private _rules;
|
|
23
|
+
private _prohibitions;
|
|
24
|
+
private _context;
|
|
25
|
+
private _persistenceManager;
|
|
26
|
+
private _routingEngine;
|
|
27
|
+
private _responseModal;
|
|
28
|
+
private _currentSession?;
|
|
29
|
+
private _knowledgeBase;
|
|
30
|
+
private _schema?;
|
|
31
|
+
private _collectedData;
|
|
31
32
|
/** Public session manager for easy session management */
|
|
32
33
|
session: SessionManager<TData>;
|
|
33
34
|
/** Public tool manager for simplified tool creation and management */
|
|
@@ -60,119 +61,197 @@ export declare class Agent<TContext = any, TData = any> {
|
|
|
60
61
|
* Get agent name
|
|
61
62
|
*/
|
|
62
63
|
get name(): string;
|
|
64
|
+
/**
|
|
65
|
+
* Set agent name
|
|
66
|
+
*/
|
|
67
|
+
set name(value: string);
|
|
63
68
|
/**
|
|
64
69
|
* Get agent description
|
|
65
70
|
*/
|
|
66
71
|
get description(): string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* Set agent description
|
|
74
|
+
*/
|
|
75
|
+
set description(value: string | undefined);
|
|
67
76
|
/**
|
|
68
77
|
* Get agent goal
|
|
69
78
|
*/
|
|
70
79
|
get goal(): string | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* Set agent goal
|
|
82
|
+
*/
|
|
83
|
+
set goal(value: string | undefined);
|
|
71
84
|
/**
|
|
72
85
|
* Get agent identity
|
|
73
86
|
*/
|
|
74
87
|
get identity(): Template<TContext> | undefined;
|
|
75
88
|
/**
|
|
76
|
-
*
|
|
89
|
+
* Set agent identity
|
|
77
90
|
*/
|
|
78
|
-
|
|
91
|
+
set identity(value: Template<TContext> | undefined);
|
|
79
92
|
/**
|
|
80
|
-
*
|
|
93
|
+
* Get agent personality
|
|
81
94
|
*/
|
|
82
|
-
|
|
95
|
+
get personality(): Template<TContext> | undefined;
|
|
83
96
|
/**
|
|
84
|
-
*
|
|
97
|
+
* Set agent personality
|
|
85
98
|
*/
|
|
86
|
-
|
|
99
|
+
set personality(value: Template<TContext> | undefined);
|
|
87
100
|
/**
|
|
88
|
-
*
|
|
89
|
-
* Creates and adds the tool to agent scope in one operation (BREAKING CHANGE: replaces createTool)
|
|
101
|
+
* Get whether debug mode is enabled
|
|
90
102
|
*/
|
|
91
|
-
|
|
103
|
+
get debug(): boolean;
|
|
92
104
|
/**
|
|
93
|
-
*
|
|
94
|
-
* @deprecated Use addTool() with Tool interface instead
|
|
105
|
+
* Set debug mode (also updates logger level)
|
|
95
106
|
*/
|
|
96
|
-
|
|
107
|
+
set debug(value: boolean);
|
|
97
108
|
/**
|
|
98
|
-
*
|
|
109
|
+
* Get the AI provider
|
|
99
110
|
*/
|
|
100
|
-
|
|
111
|
+
get provider(): AiProvider;
|
|
101
112
|
/**
|
|
102
|
-
*
|
|
103
|
-
* Triggers both agent-level and route-specific onContextUpdate lifecycle hooks if configured
|
|
113
|
+
* Set the AI provider
|
|
104
114
|
*/
|
|
105
|
-
|
|
115
|
+
set provider(value: AiProvider);
|
|
106
116
|
/**
|
|
107
|
-
*
|
|
108
|
-
* Triggers both agent-level and route-specific onDataUpdate lifecycle hooks if configured
|
|
109
|
-
* @internal
|
|
117
|
+
* Get the composition mode
|
|
110
118
|
*/
|
|
111
|
-
|
|
119
|
+
get compositionMode(): CompositionMode;
|
|
112
120
|
/**
|
|
113
|
-
*
|
|
121
|
+
* Set the composition mode
|
|
114
122
|
*/
|
|
115
|
-
|
|
123
|
+
set compositionMode(value: CompositionMode);
|
|
116
124
|
/**
|
|
117
|
-
* Get
|
|
125
|
+
* Get the route switch margin
|
|
126
|
+
* @default 15
|
|
118
127
|
*/
|
|
119
|
-
|
|
128
|
+
get routeSwitchMargin(): number;
|
|
120
129
|
/**
|
|
121
|
-
*
|
|
130
|
+
* Set the route switch margin
|
|
122
131
|
*/
|
|
123
|
-
|
|
132
|
+
set routeSwitchMargin(value: number);
|
|
124
133
|
/**
|
|
125
|
-
*
|
|
134
|
+
* Get the maximum steps per batch
|
|
135
|
+
* @default 1
|
|
126
136
|
*/
|
|
127
|
-
|
|
137
|
+
get maxStepsPerBatch(): number;
|
|
138
|
+
/**
|
|
139
|
+
* Set the maximum steps per batch
|
|
140
|
+
*/
|
|
141
|
+
set maxStepsPerBatch(value: number);
|
|
142
|
+
/**
|
|
143
|
+
* Get all terms
|
|
144
|
+
*/
|
|
145
|
+
get terms(): Term<TContext, TData>[];
|
|
146
|
+
/**
|
|
147
|
+
* Get all guidelines
|
|
148
|
+
*/
|
|
149
|
+
get guidelines(): Guideline<TContext, TData>[];
|
|
150
|
+
/**
|
|
151
|
+
* Get all tools
|
|
152
|
+
*/
|
|
153
|
+
get tools(): Tool<TContext, TData>[];
|
|
128
154
|
/**
|
|
129
155
|
* Get all routes
|
|
130
156
|
*/
|
|
131
|
-
|
|
157
|
+
get routes(): Route<TContext, TData>[];
|
|
132
158
|
/**
|
|
133
|
-
* Get agent
|
|
134
|
-
* @internal Used by ResponseModal
|
|
159
|
+
* Get agent-level rules
|
|
135
160
|
*/
|
|
136
|
-
|
|
161
|
+
get rules(): Template<TContext, TData>[];
|
|
137
162
|
/**
|
|
138
|
-
*
|
|
139
|
-
* @internal Used by ResponseModal
|
|
163
|
+
* Set agent-level rules
|
|
140
164
|
*/
|
|
141
|
-
|
|
165
|
+
set rules(value: Template<TContext, TData>[]);
|
|
142
166
|
/**
|
|
143
|
-
* Get
|
|
144
|
-
* @internal Used by ResponseModal
|
|
167
|
+
* Get agent-level prohibitions
|
|
145
168
|
*/
|
|
146
|
-
|
|
169
|
+
get prohibitions(): Template<TContext, TData>[];
|
|
170
|
+
/**
|
|
171
|
+
* Set agent-level prohibitions
|
|
172
|
+
*/
|
|
173
|
+
set prohibitions(value: Template<TContext, TData>[]);
|
|
174
|
+
/**
|
|
175
|
+
* Get current schema
|
|
176
|
+
*/
|
|
177
|
+
get schema(): StructuredSchema | undefined;
|
|
178
|
+
/**
|
|
179
|
+
* Set schema (validates structure)
|
|
180
|
+
*/
|
|
181
|
+
set schema(value: StructuredSchema | undefined);
|
|
182
|
+
/**
|
|
183
|
+
* Get the agent's knowledge base
|
|
184
|
+
*/
|
|
185
|
+
get knowledgeBase(): Record<string, unknown>;
|
|
186
|
+
/**
|
|
187
|
+
* Set the agent's knowledge base
|
|
188
|
+
*/
|
|
189
|
+
set knowledgeBase(value: Record<string, unknown>);
|
|
190
|
+
/**
|
|
191
|
+
* Get the current session (if set)
|
|
192
|
+
*/
|
|
193
|
+
get currentSession(): SessionState | undefined;
|
|
194
|
+
/**
|
|
195
|
+
* Set the current session for convenience methods
|
|
196
|
+
* Set to undefined to clear the current session
|
|
197
|
+
*/
|
|
198
|
+
set currentSession(value: SessionState | undefined);
|
|
147
199
|
/**
|
|
148
200
|
* Get all terms
|
|
201
|
+
* @deprecated Use `agent.terms` instead
|
|
149
202
|
*/
|
|
150
203
|
getTerms(): Term<TContext, TData>[];
|
|
151
204
|
/**
|
|
152
205
|
* Get all tools
|
|
206
|
+
* @deprecated Use `agent.tools` instead
|
|
153
207
|
*/
|
|
154
208
|
getTools(): Tool<TContext, TData>[];
|
|
155
209
|
/**
|
|
156
210
|
* Get all guidelines
|
|
211
|
+
* @deprecated Use `agent.guidelines` instead
|
|
157
212
|
*/
|
|
158
213
|
getGuidelines(): Guideline<TContext, TData>[];
|
|
214
|
+
/**
|
|
215
|
+
* Get all routes
|
|
216
|
+
* @deprecated Use `agent.routes` instead
|
|
217
|
+
*/
|
|
218
|
+
getRoutes(): Route<TContext, TData>[];
|
|
159
219
|
/**
|
|
160
220
|
* Get agent-level rules
|
|
221
|
+
* @deprecated Use `agent.rules` instead
|
|
161
222
|
*/
|
|
162
223
|
getRules(): Template<TContext, TData>[];
|
|
163
224
|
/**
|
|
164
225
|
* Get agent-level prohibitions
|
|
226
|
+
* @deprecated Use `agent.prohibitions` instead
|
|
165
227
|
*/
|
|
166
228
|
getProhibitions(): Template<TContext, TData>[];
|
|
167
229
|
/**
|
|
168
|
-
*
|
|
169
|
-
*
|
|
230
|
+
* Get current schema
|
|
231
|
+
* @deprecated Use `agent.schema` instead
|
|
170
232
|
*/
|
|
171
|
-
|
|
233
|
+
getSchema(): StructuredSchema | undefined;
|
|
172
234
|
/**
|
|
173
235
|
* Get the agent's knowledge base
|
|
236
|
+
* @deprecated Use `agent.knowledgeBase` instead
|
|
174
237
|
*/
|
|
175
238
|
getKnowledgeBase(): Record<string, unknown>;
|
|
239
|
+
/**
|
|
240
|
+
* Get the current session (if set)
|
|
241
|
+
* @deprecated Use `agent.currentSession` instead
|
|
242
|
+
*/
|
|
243
|
+
getCurrentSession(): SessionState | undefined;
|
|
244
|
+
/**
|
|
245
|
+
* Set the current session for convenience methods
|
|
246
|
+
* @deprecated Use `agent.currentSession = session` instead
|
|
247
|
+
* @param session - Session step to use for subsequent calls
|
|
248
|
+
*/
|
|
249
|
+
setCurrentSession(session: SessionState): void;
|
|
250
|
+
/**
|
|
251
|
+
* Clear the current session
|
|
252
|
+
* @deprecated Use `agent.currentSession = undefined` instead
|
|
253
|
+
*/
|
|
254
|
+
clearCurrentSession(): void;
|
|
176
255
|
/**
|
|
177
256
|
* Get the persistence manager (if configured)
|
|
178
257
|
*/
|
|
@@ -182,23 +261,79 @@ export declare class Agent<TContext = any, TData = any> {
|
|
|
182
261
|
*/
|
|
183
262
|
hasPersistence(): boolean;
|
|
184
263
|
/**
|
|
185
|
-
*
|
|
186
|
-
* @param session - Session step to use for subsequent calls
|
|
264
|
+
* Create a new route (journey) using agent-level data type
|
|
187
265
|
*/
|
|
188
|
-
|
|
266
|
+
createRoute(options: RouteOptions<TContext, TData>): Route<TContext, TData>;
|
|
189
267
|
/**
|
|
190
|
-
*
|
|
268
|
+
* Create a domain term for the glossary
|
|
191
269
|
*/
|
|
192
|
-
|
|
270
|
+
createTerm(term: Term<TContext, TData>): this;
|
|
193
271
|
/**
|
|
194
|
-
*
|
|
272
|
+
* Create a behavioral guideline
|
|
273
|
+
*/
|
|
274
|
+
createGuideline(guideline: Guideline<TContext, TData>): this;
|
|
275
|
+
/**
|
|
276
|
+
* Add a tool to the agent using the unified Tool interface
|
|
277
|
+
* Creates and adds the tool to agent scope in one operation (BREAKING CHANGE: replaces createTool)
|
|
278
|
+
*/
|
|
279
|
+
addTool<TResult = any>(tool: Tool<TContext, TData, TResult>): this;
|
|
280
|
+
/**
|
|
281
|
+
* Register a tool at the agent level (legacy method for backward compatibility)
|
|
282
|
+
* @deprecated Use addTool() with Tool interface instead
|
|
283
|
+
*/
|
|
284
|
+
createTool<TResult = any>(tool: Tool<TContext, TData, TResult>): this;
|
|
285
|
+
/**
|
|
286
|
+
* Register multiple tools at the agent level
|
|
287
|
+
*/
|
|
288
|
+
registerTools<TResult = any>(tools: Tool<TContext, TData, TResult>[]): this;
|
|
289
|
+
/**
|
|
290
|
+
* Update the agent's context
|
|
291
|
+
* Triggers both agent-level and route-specific onContextUpdate lifecycle hooks if configured
|
|
292
|
+
*/
|
|
293
|
+
updateContext(updates: Partial<TContext>): Promise<void>;
|
|
294
|
+
/**
|
|
295
|
+
* Update collected data in session with lifecycle hook support
|
|
296
|
+
* Triggers both agent-level and route-specific onDataUpdate lifecycle hooks if configured
|
|
297
|
+
* @internal
|
|
298
|
+
*/
|
|
299
|
+
private updateData;
|
|
300
|
+
/**
|
|
301
|
+
* Get current context (fetches from provider if configured)
|
|
302
|
+
*/
|
|
303
|
+
getContext(): Promise<TContext | undefined>;
|
|
304
|
+
/**
|
|
305
|
+
* Generate a response based on history and context as a stream
|
|
306
|
+
*/
|
|
307
|
+
respondStream(params: RespondParams<TContext, TData>): AsyncGenerator<AgentResponseStreamChunk<TData>>;
|
|
308
|
+
/**
|
|
309
|
+
* Generate a response based on history and context
|
|
310
|
+
*/
|
|
311
|
+
respond(params: RespondParams<TContext, TData>): Promise<AgentResponse<TData>>;
|
|
312
|
+
/**
|
|
313
|
+
* Get agent options
|
|
195
314
|
* @internal Used by ResponseModal
|
|
196
315
|
*/
|
|
197
|
-
|
|
316
|
+
getAgentOptions(): AgentOptions<TContext, TData>;
|
|
198
317
|
/**
|
|
199
|
-
*
|
|
318
|
+
* Get routing engine
|
|
319
|
+
* @internal Used by ResponseModal
|
|
200
320
|
*/
|
|
201
|
-
|
|
321
|
+
getRoutingEngine(): RoutingEngine<TContext, TData>;
|
|
322
|
+
/**
|
|
323
|
+
* Get the updateData method bound to this agent
|
|
324
|
+
* @internal Used by ResponseModal
|
|
325
|
+
*/
|
|
326
|
+
getUpdateDataMethod(): (session: SessionState<TData>, dataUpdate: Partial<TData>) => Promise<SessionState<TData>>;
|
|
327
|
+
/**
|
|
328
|
+
* Evaluate and match active guidelines based on their conditions
|
|
329
|
+
* Returns guidelines that should be active given the current context
|
|
330
|
+
*/
|
|
331
|
+
evaluateGuidelines(context?: TContext, session?: SessionState<TData>, history?: Event[]): Promise<GuidelineMatch<TContext, TData>[]>;
|
|
332
|
+
/**
|
|
333
|
+
* Execute a prepare or finalize function/tool
|
|
334
|
+
* @internal Used by ResponseModal
|
|
335
|
+
*/
|
|
336
|
+
executePrepareFinalize(prepareOrFinalize: string | Tool<TContext, TData> | ((context: TContext, data?: Partial<TData>) => void | Promise<void>) | undefined, context: TContext, data?: Partial<TData>, route?: Route<TContext, TData>, step?: Step<TContext, TData>): Promise<void>;
|
|
202
337
|
/**
|
|
203
338
|
* Sync session data to agent collected data
|
|
204
339
|
* @internal Used to keep agent and session data in sync
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Agent.d.ts","sourceRoot":"","sources":["../../../src/core/Agent.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EACV,YAAY,EACZ,IAAI,EACJ,SAAS,EACT,cAAc,EACd,IAAI,EACJ,KAAK,EACL,YAAY,EACZ,YAAY,EACZ,QAAQ,EACR,wBAAwB,EACxB,aAAa,EACb,gBAAgB,EAEhB,gBAAgB,
|
|
1
|
+
{"version":3,"file":"Agent.d.ts","sourceRoot":"","sources":["../../../src/core/Agent.ts"],"names":[],"mappings":"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"}
|