@ariaflowagents/core 0.1.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.
- package/README.md +39 -0
- package/dist/agents/Agent.d.ts +15 -0
- package/dist/agents/Agent.d.ts.map +1 -0
- package/dist/agents/Agent.js +33 -0
- package/dist/agents/Agent.js.map +1 -0
- package/dist/agents/CompositeAgent.d.ts +24 -0
- package/dist/agents/CompositeAgent.d.ts.map +1 -0
- package/dist/agents/CompositeAgent.js +59 -0
- package/dist/agents/CompositeAgent.js.map +1 -0
- package/dist/agents/FlowAgent.d.ts +11 -0
- package/dist/agents/FlowAgent.d.ts.map +1 -0
- package/dist/agents/FlowAgent.js +44 -0
- package/dist/agents/FlowAgent.js.map +1 -0
- package/dist/agents/LLMAgent.d.ts +11 -0
- package/dist/agents/LLMAgent.d.ts.map +1 -0
- package/dist/agents/LLMAgent.js +52 -0
- package/dist/agents/LLMAgent.js.map +1 -0
- package/dist/agents/TriageAgent.d.ts +11 -0
- package/dist/agents/TriageAgent.d.ts.map +1 -0
- package/dist/agents/TriageAgent.js +89 -0
- package/dist/agents/TriageAgent.js.map +1 -0
- package/dist/agents/index.d.ts +7 -0
- package/dist/agents/index.d.ts.map +1 -0
- package/dist/agents/index.js +6 -0
- package/dist/agents/index.js.map +1 -0
- package/dist/flows/AgentFlowManager.d.ts +154 -0
- package/dist/flows/AgentFlowManager.d.ts.map +1 -0
- package/dist/flows/AgentFlowManager.js +272 -0
- package/dist/flows/AgentFlowManager.js.map +1 -0
- package/dist/flows/FlowGraph.d.ts +23 -0
- package/dist/flows/FlowGraph.d.ts.map +1 -0
- package/dist/flows/FlowGraph.js +57 -0
- package/dist/flows/FlowGraph.js.map +1 -0
- package/dist/flows/FlowManager.d.ts +36 -0
- package/dist/flows/FlowManager.d.ts.map +1 -0
- package/dist/flows/FlowManager.js +256 -0
- package/dist/flows/FlowManager.js.map +1 -0
- package/dist/flows/FlowNode.d.ts +8 -0
- package/dist/flows/FlowNode.d.ts.map +1 -0
- package/dist/flows/FlowNode.js +12 -0
- package/dist/flows/FlowNode.js.map +1 -0
- package/dist/flows/index.d.ts +8 -0
- package/dist/flows/index.d.ts.map +1 -0
- package/dist/flows/index.js +6 -0
- package/dist/flows/index.js.map +1 -0
- package/dist/flows/transitions.d.ts +9 -0
- package/dist/flows/transitions.d.ts.map +1 -0
- package/dist/flows/transitions.js +15 -0
- package/dist/flows/transitions.js.map +1 -0
- package/dist/guards/StopConditions.d.ts +14 -0
- package/dist/guards/StopConditions.d.ts.map +1 -0
- package/dist/guards/StopConditions.js +161 -0
- package/dist/guards/StopConditions.js.map +1 -0
- package/dist/guards/ToolEnforcer.d.ts +11 -0
- package/dist/guards/ToolEnforcer.d.ts.map +1 -0
- package/dist/guards/ToolEnforcer.js +40 -0
- package/dist/guards/ToolEnforcer.js.map +1 -0
- package/dist/guards/index.d.ts +4 -0
- package/dist/guards/index.d.ts.map +1 -0
- package/dist/guards/index.js +4 -0
- package/dist/guards/index.js.map +1 -0
- package/dist/guards/rules.d.ts +8 -0
- package/dist/guards/rules.d.ts.map +1 -0
- package/dist/guards/rules.js +128 -0
- package/dist/guards/rules.js.map +1 -0
- package/dist/hooks/HookRunner.d.ts +30 -0
- package/dist/hooks/HookRunner.d.ts.map +1 -0
- package/dist/hooks/HookRunner.js +85 -0
- package/dist/hooks/HookRunner.js.map +1 -0
- package/dist/hooks/builtin/logging.d.ts +6 -0
- package/dist/hooks/builtin/logging.d.ts.map +1 -0
- package/dist/hooks/builtin/logging.js +99 -0
- package/dist/hooks/builtin/logging.js.map +1 -0
- package/dist/hooks/builtin/metrics.d.ts +38 -0
- package/dist/hooks/builtin/metrics.d.ts.map +1 -0
- package/dist/hooks/builtin/metrics.js +111 -0
- package/dist/hooks/builtin/metrics.js.map +1 -0
- package/dist/hooks/index.d.ts +5 -0
- package/dist/hooks/index.d.ts.map +1 -0
- package/dist/hooks/index.js +4 -0
- package/dist/hooks/index.js.map +1 -0
- package/dist/index.d.ts +30 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +23 -0
- package/dist/index.js.map +1 -0
- package/dist/runtime/InjectionQueue.d.ts +46 -0
- package/dist/runtime/InjectionQueue.d.ts.map +1 -0
- package/dist/runtime/InjectionQueue.js +128 -0
- package/dist/runtime/InjectionQueue.js.map +1 -0
- package/dist/runtime/Runtime.d.ts +24 -0
- package/dist/runtime/Runtime.d.ts.map +1 -0
- package/dist/runtime/Runtime.js +277 -0
- package/dist/runtime/Runtime.js.map +1 -0
- package/dist/runtime/WorkingMemory.d.ts +12 -0
- package/dist/runtime/WorkingMemory.d.ts.map +1 -0
- package/dist/runtime/WorkingMemory.js +29 -0
- package/dist/runtime/WorkingMemory.js.map +1 -0
- package/dist/runtime/index.d.ts +4 -0
- package/dist/runtime/index.d.ts.map +1 -0
- package/dist/runtime/index.js +4 -0
- package/dist/runtime/index.js.map +1 -0
- package/dist/session/SessionManager.d.ts +20 -0
- package/dist/session/SessionManager.d.ts.map +1 -0
- package/dist/session/SessionManager.js +134 -0
- package/dist/session/SessionManager.js.map +1 -0
- package/dist/session/SessionStore.d.ts +9 -0
- package/dist/session/SessionStore.d.ts.map +1 -0
- package/dist/session/SessionStore.js +2 -0
- package/dist/session/SessionStore.js.map +1 -0
- package/dist/session/index.d.ts +4 -0
- package/dist/session/index.d.ts.map +1 -0
- package/dist/session/index.js +3 -0
- package/dist/session/index.js.map +1 -0
- package/dist/session/stores/MemoryStore.d.ts +11 -0
- package/dist/session/stores/MemoryStore.d.ts.map +1 -0
- package/dist/session/stores/MemoryStore.js +34 -0
- package/dist/session/stores/MemoryStore.js.map +1 -0
- package/dist/tools/Tool.d.ts +10 -0
- package/dist/tools/Tool.d.ts.map +1 -0
- package/dist/tools/Tool.js +2 -0
- package/dist/tools/Tool.js.map +1 -0
- package/dist/tools/handoff.d.ts +25 -0
- package/dist/tools/handoff.d.ts.map +1 -0
- package/dist/tools/handoff.js +51 -0
- package/dist/tools/handoff.js.map +1 -0
- package/dist/tools/index.d.ts +4 -0
- package/dist/tools/index.d.ts.map +1 -0
- package/dist/tools/index.js +2 -0
- package/dist/tools/index.js.map +1 -0
- package/dist/types/index.d.ts +325 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +2 -0
- package/dist/types/index.js.map +1 -0
- package/package.json +71 -0
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
import { streamText, generateText } from 'ai';
|
|
2
|
+
import { createFlowTransition, isFlowTransition } from './transitions.js';
|
|
3
|
+
export var ContextStrategy;
|
|
4
|
+
(function (ContextStrategy) {
|
|
5
|
+
ContextStrategy["APPEND"] = "append";
|
|
6
|
+
ContextStrategy["RESET"] = "reset";
|
|
7
|
+
ContextStrategy["RESET_WITH_SUMMARY"] = "reset_with_summary";
|
|
8
|
+
})(ContextStrategy || (ContextStrategy = {}));
|
|
9
|
+
export function createCollectorTool(description, schema, nextNode) {
|
|
10
|
+
return {
|
|
11
|
+
description,
|
|
12
|
+
parameters: schema,
|
|
13
|
+
execute: async (data) => {
|
|
14
|
+
return createFlowTransition(nextNode, data);
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
}
|
|
18
|
+
export class AgentFlowManager {
|
|
19
|
+
nodes = new Map();
|
|
20
|
+
currentNode = null;
|
|
21
|
+
context;
|
|
22
|
+
config;
|
|
23
|
+
initialized = false;
|
|
24
|
+
constructor(config, sessionId, userId) {
|
|
25
|
+
this.config = config;
|
|
26
|
+
for (const node of config.nodes) {
|
|
27
|
+
this.nodes.set(node.name, node);
|
|
28
|
+
}
|
|
29
|
+
this.context = {
|
|
30
|
+
state: {},
|
|
31
|
+
currentNode: config.initialNode,
|
|
32
|
+
messages: [],
|
|
33
|
+
collectedData: {},
|
|
34
|
+
nodeHistory: [],
|
|
35
|
+
nodeTurnCounts: {},
|
|
36
|
+
sessionId,
|
|
37
|
+
userId,
|
|
38
|
+
ended: false,
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
async initialize() {
|
|
42
|
+
const parts = [];
|
|
43
|
+
await this.config.hooks?.onFlowStart?.(this.context);
|
|
44
|
+
const transitionParts = await this.transitionTo(this.config.initialNode);
|
|
45
|
+
parts.push(...transitionParts);
|
|
46
|
+
this.initialized = true;
|
|
47
|
+
if (this.currentNode?.autoRespond !== false) {
|
|
48
|
+
const responseParts = [];
|
|
49
|
+
for await (const part of this.generateNodeResponse()) {
|
|
50
|
+
responseParts.push(part);
|
|
51
|
+
}
|
|
52
|
+
parts.push(...responseParts);
|
|
53
|
+
}
|
|
54
|
+
return parts;
|
|
55
|
+
}
|
|
56
|
+
async *process(userInput) {
|
|
57
|
+
if (!this.initialized) {
|
|
58
|
+
throw new Error('Flow not initialized. Call initialize() first.');
|
|
59
|
+
}
|
|
60
|
+
if (this.context.ended) {
|
|
61
|
+
yield { type: 'error', error: 'Flow has ended' };
|
|
62
|
+
return;
|
|
63
|
+
}
|
|
64
|
+
if (!this.currentNode) {
|
|
65
|
+
yield { type: 'error', error: 'No current node' };
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
try {
|
|
69
|
+
this.context.messages.push({ role: 'user', content: userInput });
|
|
70
|
+
const nodeName = this.currentNode.name;
|
|
71
|
+
this.context.nodeTurnCounts[nodeName] = (this.context.nodeTurnCounts[nodeName] ?? 0) + 1;
|
|
72
|
+
if (this.currentNode.maxTurns && this.context.nodeTurnCounts[nodeName] > this.currentNode.maxTurns) {
|
|
73
|
+
yield { type: 'error', error: `Max turns exceeded for node "${nodeName}"` };
|
|
74
|
+
return;
|
|
75
|
+
}
|
|
76
|
+
yield* this.runInference();
|
|
77
|
+
yield { type: 'done' };
|
|
78
|
+
}
|
|
79
|
+
catch (error) {
|
|
80
|
+
await this.config.hooks?.onError?.(this.context, error);
|
|
81
|
+
yield { type: 'error', error: error.message };
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
async forceTransition(nodeName, data) {
|
|
85
|
+
return this.transitionTo(nodeName, data);
|
|
86
|
+
}
|
|
87
|
+
async endFlow(reason = 'completed') {
|
|
88
|
+
if (this.context.ended) {
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
this.context.ended = true;
|
|
92
|
+
this.context.endReason = reason;
|
|
93
|
+
if (this.currentNode?.postActions) {
|
|
94
|
+
await this.runActions(this.currentNode.postActions);
|
|
95
|
+
}
|
|
96
|
+
await this.config.hooks?.onFlowEnd?.(this.context, reason);
|
|
97
|
+
}
|
|
98
|
+
get state() { return this.context.state; }
|
|
99
|
+
get collectedData() { return this.context.collectedData; }
|
|
100
|
+
get currentNodeName() { return this.context.currentNode; }
|
|
101
|
+
get nodeHistory() { return this.context.nodeHistory; }
|
|
102
|
+
get hasEnded() { return this.context.ended; }
|
|
103
|
+
get fullContext() { return { ...this.context }; }
|
|
104
|
+
async transitionTo(nodeName, data) {
|
|
105
|
+
const parts = [];
|
|
106
|
+
const node = this.nodes.get(nodeName);
|
|
107
|
+
if (!node) {
|
|
108
|
+
throw new Error(`Node "${nodeName}" not found`);
|
|
109
|
+
}
|
|
110
|
+
const previousNode = this.currentNode;
|
|
111
|
+
const previousNodeName = previousNode?.name;
|
|
112
|
+
if (previousNode) {
|
|
113
|
+
await this.runActions(previousNode.postActions ?? []);
|
|
114
|
+
await this.config.hooks?.onNodeExit?.(this.context, previousNode);
|
|
115
|
+
parts.push({ type: 'node-exit', nodeName: previousNode.name });
|
|
116
|
+
}
|
|
117
|
+
this.currentNode = node;
|
|
118
|
+
this.context.currentNode = nodeName;
|
|
119
|
+
this.context.nodeHistory.push(nodeName);
|
|
120
|
+
if (data) {
|
|
121
|
+
Object.assign(this.context.collectedData, data);
|
|
122
|
+
}
|
|
123
|
+
await this.applyContextStrategy(node);
|
|
124
|
+
await this.config.hooks?.onNodeEnter?.(this.context, node);
|
|
125
|
+
parts.push({ type: 'node-enter', nodeName: node.name });
|
|
126
|
+
await this.runActions(node.preActions ?? []);
|
|
127
|
+
if (previousNodeName) {
|
|
128
|
+
await this.config.hooks?.onTransition?.(this.context, previousNodeName, nodeName, data);
|
|
129
|
+
parts.push({ type: 'transition', from: previousNodeName, to: nodeName, data });
|
|
130
|
+
}
|
|
131
|
+
return parts;
|
|
132
|
+
}
|
|
133
|
+
async *generateNodeResponse() {
|
|
134
|
+
if (!this.currentNode)
|
|
135
|
+
return;
|
|
136
|
+
yield* this.runInference();
|
|
137
|
+
}
|
|
138
|
+
async *runInference() {
|
|
139
|
+
if (!this.currentNode)
|
|
140
|
+
return;
|
|
141
|
+
const node = this.currentNode;
|
|
142
|
+
const systemPrompt = this.buildSystemPrompt(node);
|
|
143
|
+
const tools = {
|
|
144
|
+
...this.config.globalTools,
|
|
145
|
+
...node.tools,
|
|
146
|
+
};
|
|
147
|
+
await this.config.hooks?.onBeforeInference?.(this.context, node);
|
|
148
|
+
const streamConfig = {
|
|
149
|
+
model: this.config.model,
|
|
150
|
+
system: systemPrompt,
|
|
151
|
+
tools,
|
|
152
|
+
};
|
|
153
|
+
if (this.context.messages.length === 0) {
|
|
154
|
+
streamConfig.prompt = 'Generate the greeting for this conversation.';
|
|
155
|
+
}
|
|
156
|
+
else {
|
|
157
|
+
streamConfig.messages = this.context.messages;
|
|
158
|
+
}
|
|
159
|
+
const result = streamText(streamConfig);
|
|
160
|
+
let responseText = '';
|
|
161
|
+
let pendingTransition = null;
|
|
162
|
+
for await (const chunk of result.fullStream) {
|
|
163
|
+
if (chunk.type === 'text-delta') {
|
|
164
|
+
responseText += chunk.text;
|
|
165
|
+
yield { type: 'text-delta', text: chunk.text };
|
|
166
|
+
}
|
|
167
|
+
if (chunk.type === 'tool-call') {
|
|
168
|
+
const args = 'args' in chunk ? chunk.args : chunk.input;
|
|
169
|
+
yield { type: 'tool-call', toolName: chunk.toolName, args };
|
|
170
|
+
}
|
|
171
|
+
if (chunk.type === 'tool-result') {
|
|
172
|
+
const toolResult = 'result' in chunk ? chunk.result : chunk.output;
|
|
173
|
+
if (isFlowTransition(toolResult)) {
|
|
174
|
+
pendingTransition = toolResult;
|
|
175
|
+
}
|
|
176
|
+
yield { type: 'tool-result', toolName: chunk.toolName, result: toolResult };
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
const response = await result.response;
|
|
180
|
+
this.context.messages.push(...response.messages);
|
|
181
|
+
await this.config.hooks?.onAfterInference?.(this.context, node, responseText);
|
|
182
|
+
if (pendingTransition) {
|
|
183
|
+
const transitionParts = await this.transitionTo(pendingTransition.targetNode, pendingTransition.data);
|
|
184
|
+
for (const part of transitionParts) {
|
|
185
|
+
yield part;
|
|
186
|
+
}
|
|
187
|
+
if (this.currentNode && this.currentNode.autoRespond !== false) {
|
|
188
|
+
yield* this.generateNodeResponse();
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
if (node.postActions?.some(action => action.type === 'end')) {
|
|
192
|
+
await this.endFlow('post-action');
|
|
193
|
+
yield { type: 'flow-end', reason: 'post-action' };
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
buildSystemPrompt(node) {
|
|
197
|
+
const rolePrompt = node.rolePrompt ?? this.config.defaultRolePrompt ?? '';
|
|
198
|
+
const dataKeys = Object.keys(this.context.collectedData);
|
|
199
|
+
const stateContext = dataKeys.length > 0
|
|
200
|
+
? `\n\n## Collected Information\n${JSON.stringify(this.context.collectedData, null, 2)}`
|
|
201
|
+
: '';
|
|
202
|
+
const historyContext = this.context.nodeHistory.length > 1
|
|
203
|
+
? `\n\n## Progress\n${this.context.nodeHistory.slice(0, -1).join(' -> ')} -> **${node.name}**`
|
|
204
|
+
: '';
|
|
205
|
+
return `${rolePrompt}\n\n## Current Task\n${node.taskPrompt}${stateContext}${historyContext}\n\n## Instructions\n- Focus ONLY on the current task\n- Use the available tools to progress the conversation\n- Do not attempt tasks outside your current scope`;
|
|
206
|
+
}
|
|
207
|
+
async applyContextStrategy(node) {
|
|
208
|
+
const strategyConfig = node.contextStrategy
|
|
209
|
+
?? this.config.defaultContextStrategy
|
|
210
|
+
?? { strategy: ContextStrategy.APPEND };
|
|
211
|
+
switch (strategyConfig.strategy) {
|
|
212
|
+
case ContextStrategy.RESET:
|
|
213
|
+
this.context.messages = [];
|
|
214
|
+
break;
|
|
215
|
+
case ContextStrategy.RESET_WITH_SUMMARY:
|
|
216
|
+
if (this.context.messages.length > 0) {
|
|
217
|
+
const summary = await this.generateSummary(strategyConfig);
|
|
218
|
+
this.context.messages = [
|
|
219
|
+
{ role: 'system', content: `Previous conversation summary: ${summary}` },
|
|
220
|
+
];
|
|
221
|
+
}
|
|
222
|
+
break;
|
|
223
|
+
case ContextStrategy.APPEND:
|
|
224
|
+
default:
|
|
225
|
+
break;
|
|
226
|
+
}
|
|
227
|
+
}
|
|
228
|
+
async generateSummary(config) {
|
|
229
|
+
const prompt = config.summaryPrompt
|
|
230
|
+
?? 'Summarize the key points from this conversation in 2-3 sentences.';
|
|
231
|
+
const result = await generateText({
|
|
232
|
+
model: this.config.model,
|
|
233
|
+
system: prompt,
|
|
234
|
+
messages: this.context.messages,
|
|
235
|
+
});
|
|
236
|
+
return result.text;
|
|
237
|
+
}
|
|
238
|
+
async runActions(actions) {
|
|
239
|
+
for (const action of actions) {
|
|
240
|
+
switch (action.type) {
|
|
241
|
+
case 'say':
|
|
242
|
+
console.log(`[FLOW SAY] ${action.text}`);
|
|
243
|
+
break;
|
|
244
|
+
case 'end':
|
|
245
|
+
await this.endFlow(action.message ?? 'action-triggered');
|
|
246
|
+
break;
|
|
247
|
+
case 'function':
|
|
248
|
+
await action.handler(this.context);
|
|
249
|
+
break;
|
|
250
|
+
case 'delay':
|
|
251
|
+
await new Promise(resolve => setTimeout(resolve, action.ms));
|
|
252
|
+
break;
|
|
253
|
+
case 'emit':
|
|
254
|
+
console.log(`[FLOW EVENT] ${action.event}`, action.data);
|
|
255
|
+
break;
|
|
256
|
+
default:
|
|
257
|
+
break;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
static create(config, sessionId, userId) {
|
|
262
|
+
return new AgentFlowManager(config, sessionId, userId);
|
|
263
|
+
}
|
|
264
|
+
static restore(config, savedContext) {
|
|
265
|
+
const manager = new AgentFlowManager(config, savedContext.sessionId, savedContext.userId);
|
|
266
|
+
manager.context = { ...savedContext };
|
|
267
|
+
manager.currentNode = manager.nodes.get(savedContext.currentNode) ?? null;
|
|
268
|
+
manager.initialized = true;
|
|
269
|
+
return manager;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
//# sourceMappingURL=AgentFlowManager.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AgentFlowManager.js","sourceRoot":"","sources":["../../src/flows/AgentFlowManager.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { ContextStrategy, FlowConfig, FlowNodeConfig, FlowTransitionConfig } from '../types/index.js';
|
|
2
|
+
import { FlowNode } from './FlowNode.js';
|
|
3
|
+
export declare class FlowGraph {
|
|
4
|
+
private nodes;
|
|
5
|
+
private transitions;
|
|
6
|
+
private defaultRolePrompt?;
|
|
7
|
+
private contextStrategy?;
|
|
8
|
+
addNode(node: FlowNode): this;
|
|
9
|
+
addTransition(from: string, to: string, config?: Omit<FlowTransitionConfig, 'from' | 'to'>): this;
|
|
10
|
+
setDefaultRolePrompt(prompt: string): this;
|
|
11
|
+
setContextStrategy(strategy: ContextStrategy): this;
|
|
12
|
+
toConfig(): FlowConfig;
|
|
13
|
+
static create(): FlowGraphBuilder;
|
|
14
|
+
}
|
|
15
|
+
export declare class FlowGraphBuilder {
|
|
16
|
+
private graph;
|
|
17
|
+
node(id: string, config: Omit<FlowNodeConfig, 'id'>): this;
|
|
18
|
+
transition(from: string, to: string, config?: Omit<FlowTransitionConfig, 'from' | 'to'>): this;
|
|
19
|
+
defaultRolePrompt(prompt: string): this;
|
|
20
|
+
contextStrategy(strategy: ContextStrategy): this;
|
|
21
|
+
build(): FlowConfig;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=FlowGraph.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowGraph.d.ts","sourceRoot":"","sources":["../../src/flows/FlowGraph.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,eAAe,EAAE,UAAU,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAC3G,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,qBAAa,SAAS;IACpB,OAAO,CAAC,KAAK,CAA+B;IAC5C,OAAO,CAAC,WAAW,CAA8B;IACjD,OAAO,CAAC,iBAAiB,CAAC,CAAS;IACnC,OAAO,CAAC,eAAe,CAAC,CAAkB;IAE1C,OAAO,CAAC,IAAI,EAAE,QAAQ,GAAG,IAAI;IAK7B,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,GAAE,IAAI,CAAC,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAM,GAAG,IAAI;IAKrG,oBAAoB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAK1C,kBAAkB,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI;IAKnD,QAAQ,IAAI,UAAU;IAStB,MAAM,CAAC,MAAM,IAAI,gBAAgB;CAGlC;AAED,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,KAAK,CAAmB;IAEhC,IAAI,CAAC,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC,cAAc,EAAE,IAAI,CAAC,GAAG,IAAI;IAK1D,UAAU,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,GAAE,IAAI,CAAC,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAM,GAAG,IAAI;IAKlG,iBAAiB,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IAKvC,eAAe,CAAC,QAAQ,EAAE,eAAe,GAAG,IAAI;IAKhD,KAAK,IAAI,UAAU;CAGpB"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { FlowNode } from './FlowNode.js';
|
|
2
|
+
export class FlowGraph {
|
|
3
|
+
nodes = new Map();
|
|
4
|
+
transitions = [];
|
|
5
|
+
defaultRolePrompt;
|
|
6
|
+
contextStrategy;
|
|
7
|
+
addNode(node) {
|
|
8
|
+
this.nodes.set(node.id, node);
|
|
9
|
+
return this;
|
|
10
|
+
}
|
|
11
|
+
addTransition(from, to, config = {}) {
|
|
12
|
+
this.transitions.push({ from, to, ...config });
|
|
13
|
+
return this;
|
|
14
|
+
}
|
|
15
|
+
setDefaultRolePrompt(prompt) {
|
|
16
|
+
this.defaultRolePrompt = prompt;
|
|
17
|
+
return this;
|
|
18
|
+
}
|
|
19
|
+
setContextStrategy(strategy) {
|
|
20
|
+
this.contextStrategy = strategy;
|
|
21
|
+
return this;
|
|
22
|
+
}
|
|
23
|
+
toConfig() {
|
|
24
|
+
return {
|
|
25
|
+
nodes: Array.from(this.nodes.values()).map(node => node.toConfig()),
|
|
26
|
+
transitions: this.transitions,
|
|
27
|
+
defaultRolePrompt: this.defaultRolePrompt,
|
|
28
|
+
contextStrategy: this.contextStrategy,
|
|
29
|
+
};
|
|
30
|
+
}
|
|
31
|
+
static create() {
|
|
32
|
+
return new FlowGraphBuilder();
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
export class FlowGraphBuilder {
|
|
36
|
+
graph = new FlowGraph();
|
|
37
|
+
node(id, config) {
|
|
38
|
+
this.graph.addNode(new FlowNode({ id, ...config }));
|
|
39
|
+
return this;
|
|
40
|
+
}
|
|
41
|
+
transition(from, to, config = {}) {
|
|
42
|
+
this.graph.addTransition(from, to, config);
|
|
43
|
+
return this;
|
|
44
|
+
}
|
|
45
|
+
defaultRolePrompt(prompt) {
|
|
46
|
+
this.graph.setDefaultRolePrompt(prompt);
|
|
47
|
+
return this;
|
|
48
|
+
}
|
|
49
|
+
contextStrategy(strategy) {
|
|
50
|
+
this.graph.setContextStrategy(strategy);
|
|
51
|
+
return this;
|
|
52
|
+
}
|
|
53
|
+
build() {
|
|
54
|
+
return this.graph.toConfig();
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
//# sourceMappingURL=FlowGraph.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowGraph.js","sourceRoot":"","sources":["../../src/flows/FlowGraph.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,MAAM,OAAO,SAAS;IACZ,KAAK,GAAG,IAAI,GAAG,EAAoB,CAAC;IACpC,WAAW,GAA2B,EAAE,CAAC;IACzC,iBAAiB,CAAU;IAC3B,eAAe,CAAmB;IAE1C,OAAO,CAAC,IAAc;QACpB,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,EAAE,IAAI,CAAC,CAAC;QAC9B,OAAO,IAAI,CAAC;IACd,CAAC;IAED,aAAa,CAAC,IAAY,EAAE,EAAU,EAAE,SAAoD,EAAE;QAC5F,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC;QAC/C,OAAO,IAAI,CAAC;IACd,CAAC;IAED,oBAAoB,CAAC,MAAc;QACjC,IAAI,CAAC,iBAAiB,GAAG,MAAM,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,kBAAkB,CAAC,QAAyB;QAC1C,IAAI,CAAC,eAAe,GAAG,QAAQ,CAAC;QAChC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,QAAQ;QACN,OAAO;YACL,KAAK,EAAE,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,QAAQ,EAAE,CAAC;YACnE,WAAW,EAAE,IAAI,CAAC,WAAW;YAC7B,iBAAiB,EAAE,IAAI,CAAC,iBAAiB;YACzC,eAAe,EAAE,IAAI,CAAC,eAAe;SACtC,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,MAAM;QACX,OAAO,IAAI,gBAAgB,EAAE,CAAC;IAChC,CAAC;CACF;AAED,MAAM,OAAO,gBAAgB;IACnB,KAAK,GAAG,IAAI,SAAS,EAAE,CAAC;IAEhC,IAAI,CAAC,EAAU,EAAE,MAAkC;QACjD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,QAAQ,CAAC,EAAE,EAAE,EAAE,GAAG,MAAM,EAAE,CAAC,CAAC,CAAC;QACpD,OAAO,IAAI,CAAC;IACd,CAAC;IAED,UAAU,CAAC,IAAY,EAAE,EAAU,EAAE,SAAoD,EAAE;QACzF,IAAI,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,EAAE,EAAE,EAAE,MAAM,CAAC,CAAC;QAC3C,OAAO,IAAI,CAAC;IACd,CAAC;IAED,iBAAiB,CAAC,MAAc;QAC9B,IAAI,CAAC,KAAK,CAAC,oBAAoB,CAAC,MAAM,CAAC,CAAC;QACxC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,eAAe,CAAC,QAAyB;QACvC,IAAI,CAAC,KAAK,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;QACxC,OAAO,IAAI,CAAC;IACd,CAAC;IAED,KAAK;QACH,OAAO,IAAI,CAAC,KAAK,CAAC,QAAQ,EAAE,CAAC;IAC/B,CAAC;CACF"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { type LanguageModel, type ModelMessage } from 'ai';
|
|
2
|
+
import type { AgentStreamPart, FlowConfig } from '../types/index.js';
|
|
3
|
+
export interface FlowManagerConfig {
|
|
4
|
+
flow: FlowConfig;
|
|
5
|
+
initialNode: string;
|
|
6
|
+
model: LanguageModel;
|
|
7
|
+
defaultRolePrompt?: string;
|
|
8
|
+
contextMessages?: ModelMessage[];
|
|
9
|
+
sessionMessages?: ModelMessage[];
|
|
10
|
+
}
|
|
11
|
+
export declare class FlowManager {
|
|
12
|
+
private config;
|
|
13
|
+
private nodes;
|
|
14
|
+
private transitions;
|
|
15
|
+
private context;
|
|
16
|
+
private currentNodeConfig;
|
|
17
|
+
private initialized;
|
|
18
|
+
private pendingEvents;
|
|
19
|
+
private flowEnded;
|
|
20
|
+
private sessionMessages?;
|
|
21
|
+
constructor(config: FlowManagerConfig);
|
|
22
|
+
initialize(): AsyncGenerator<AgentStreamPart>;
|
|
23
|
+
process(userInput: string): AsyncGenerator<AgentStreamPart>;
|
|
24
|
+
transitionTo(nodeId: string, data?: Record<string, unknown>): Promise<void>;
|
|
25
|
+
transitionToGenerator(nodeId: string, data?: Record<string, unknown>): AsyncGenerator<AgentStreamPart>;
|
|
26
|
+
get collectedData(): Record<string, unknown>;
|
|
27
|
+
get currentNode(): string | undefined;
|
|
28
|
+
private runInference;
|
|
29
|
+
private buildSystemPrompt;
|
|
30
|
+
private applyContextStrategy;
|
|
31
|
+
private generateSummary;
|
|
32
|
+
private appendMessage;
|
|
33
|
+
private runActions;
|
|
34
|
+
private evaluateTransitions;
|
|
35
|
+
}
|
|
36
|
+
//# sourceMappingURL=FlowManager.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FlowManager.d.ts","sourceRoot":"","sources":["../../src/flows/FlowManager.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,KAAK,aAAa,EAAE,KAAK,YAAY,EAAgB,MAAM,IAAI,CAAC;AACnG,OAAO,KAAK,EACV,eAAe,EAGf,UAAU,EAIX,MAAM,mBAAmB,CAAC;AAG3B,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,UAAU,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,aAAa,CAAC;IACrB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,eAAe,CAAC,EAAE,YAAY,EAAE,CAAC;IACjC,eAAe,CAAC,EAAE,YAAY,EAAE,CAAC;CAClC;AAID,qBAAa,WAAW;IAUV,OAAO,CAAC,MAAM;IAT1B,OAAO,CAAC,KAAK,CAAqC;IAClD,OAAO,CAAC,WAAW,CAA6C;IAChE,OAAO,CAAC,OAAO,CAAc;IAC7B,OAAO,CAAC,iBAAiB,CAA+B;IACxD,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,aAAa,CAAsB;IAC3C,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,eAAe,CAAC,CAAiB;gBAErB,MAAM,EAAE,iBAAiB;IAsBtC,UAAU,IAAI,cAAc,CAAC,eAAe,CAAC;IAa7C,OAAO,CAAC,SAAS,EAAE,MAAM,GAAG,cAAc,CAAC,eAAe,CAAC;IA6B5D,YAAY,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,IAAI,CAAC;IAM1E,qBAAqB,CAC1B,MAAM,EAAE,MAAM,EACd,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAC7B,cAAc,CAAC,eAAe,CAAC;IA8BlC,IAAI,aAAa,IAAI,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAE3C;IAED,IAAI,WAAW,IAAI,MAAM,GAAG,SAAS,CAEpC;YAEc,YAAY;IAsE3B,OAAO,CAAC,iBAAiB;YAuBX,oBAAoB;YAqBpB,eAAe;IAY7B,OAAO,CAAC,aAAa;YAON,UAAU;YAsBX,mBAAmB;CA8BlC"}
|