forked from Lilly-Protocol/agentlily-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-runtime.ts
More file actions
271 lines (239 loc) · 7.74 KB
/
Copy pathagent-runtime.ts
File metadata and controls
271 lines (239 loc) · 7.74 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
import { RuntimeError } from "../errors/runtime-errors.js";
import { assertNonEmptyValue } from "../guards/runtime-guards.js";
import type { RuntimeEventBus } from "../events/runtime-events.js";
import {
assertNonEmptyValue,
assertRuntimeStarted
} from "../guards/runtime-guards.js";
import type { RuntimeTask, TaskExecutionResult } from "../tasks/task-types.js";
import type { ToolDefinition } from "../tools/types.js";
import { createRuntimeDependencies } from "./bootstrap.js";
import type { RuntimeContext } from "./context.js";
import type { RuntimeOptions } from "./types.js";
export interface RuntimeStopOptions {
clearListeners?: boolean;
drainTimeoutMs?: number;
}
export interface RuntimeStoppedPayload {
runtimeId: string;
occurredAt: string;
strandedTaskIds?: string[];
drainDurationMs?: number;
}
export class AgentRuntime {
private readonly dependencies: ReturnType<typeof createRuntimeDependencies>;
private readonly runtimeId: string;
private readonly inFlightTasks = new Set<string>();
private readonly inFlightPromises = new Map<string, Promise<void>>();
private started = false;
private stopped = false;
public constructor(options: RuntimeOptions) {
this.runtimeId = options.runtimeId;
this.dependencies = createRuntimeDependencies(options);
}
public registerTool<TPayload, TResult>(
tool: ToolDefinition<TPayload, TResult>
): void {
this.dependencies.toolRegistry.register(tool);
}
public isRunning(): boolean {
return this.started;
}
public getInFlightTaskCount(): number {
return this.inFlightTasks.size;
}
public listTools(): ToolDefinition[] {
return this.dependencies.toolRegistry.list();
}
public getDependencies() {
return this.dependencies;
}
public async start(): Promise<void> {
if (this.started) {
throw new RuntimeError(
"RUNTIME_ALREADY_STARTED",
"AgentRuntime has already been started."
);
}
if (this.stopped) {
throw new RuntimeError(
"RUNTIME_ALREADY_STOPPED",
"AgentRuntime has already been stopped and cannot be restarted."
);
}
this.started = true;
this.dependencies.logger.info("Runtime started.", {
runtimeId: this.runtimeId
});
this.dependencies.eventBus.emit({
name: "runtime.started",
payload: {
runtimeId: this.runtimeId,
occurredAt: new Date().toISOString()
}
});
}
public async stop(options: RuntimeStopOptions = {}): Promise<void> {
if (!this.started || this.stopped) {
return;
}
this.stopped = true;
this.started = false;
const drainStartMs = Date.now();
let strandedTaskIds: string[] = [];
if (options.drainTimeoutMs !== undefined && options.drainTimeoutMs > 0) {
await this.awaitInFlightTasks(options.drainTimeoutMs);
}
// After draining, if there are still in-flight tasks, warn
if (this.inFlightTasks.size > 0) {
const stranded = Array.from(this.inFlightTasks);
this.dependencies.logger.warn(
`AgentRuntime.stop() timed out after ${options.drainTimeoutMs}ms with ${stranded.length} task(s) still in flight: ${stranded.join(", ")}`,
{
runtimeId: this.runtimeId,
strandedTaskIds: stranded,
drainTimeoutMs: options.drainTimeoutMs,
elapsedMs: options.drainTimeoutMs
}
);
this.dependencies.eventBus.emit({
name: "runtime.stopped",
payload: {
runtimeId: this.runtimeId,
occurredAt: new Date().toISOString(),
strandedTaskIds: stranded,
drainTimeoutMs: options.drainTimeoutMs
}
});
}
// Clear in-flight tracking — runtime is stopped, no new tasks can start.
// Stranded tasks that are still running will clean themselves up via their
// finally blocks when they eventually resolve/reject.
this.inFlightTasks.clear();
if (options.clearListeners === true) {
const eventBus = this.dependencies.eventBus as RuntimeEventBus & {
clear?: () => void;
};
eventBus.clear?.();
}
const drainDurationMs = Date.now() - drainStartMs;
if (strandedTaskIds.length > 0) {
this.dependencies.logger.warn(
"Runtime stopped with stranded in-flight tasks.",
{
runtimeId: this.runtimeId,
strandedTaskIds,
drainDurationMs
}
);
} else {
this.dependencies.logger.info("Runtime stopped.", {
runtimeId: this.runtimeId,
drainDurationMs
});
}
const stoppedPayload: RuntimeStoppedPayload = {
runtimeId: this.runtimeId,
occurredAt: new Date().toISOString(),
drainDurationMs
};
if (strandedTaskIds.length > 0) {
stoppedPayload.strandedTaskIds = strandedTaskIds;
}
this.dependencies.eventBus.emit({
name: "runtime.stopped",
payload: stoppedPayload
});
}
public async executeTask<TPayload, TResult>(
task: RuntimeTask<TPayload>
): Promise<TaskExecutionResult<TResult>> {
assertRuntimeStarted(this.started);
const agent = this.dependencies.agentManager.getOrCreate(task.agentId);
const context: RuntimeContext = {
runtimeId: this.runtimeId,
taskId: task.taskId,
agent,
memory: this.dependencies.memoryStore,
modelProvider: this.dependencies.modelProvider,
state: this.dependencies.stateStore,
now: new Date().toISOString()
};
assertNonEmptyValue(task.taskId, "taskId");
assertNonEmptyValue(task.agentId, "agentId");
assertNonEmptyValue(task.toolName, "toolName");
assertNonEmptyValue(task.input, "input");
this.dependencies.eventBus.emit({
name: "runtime.task.received",
payload: {
runtimeId: this.runtimeId,
taskId: task.taskId,
agentId: task.agentId
}
});
this.dependencies.logger.info("Executing runtime task.", {
runtimeId: this.runtimeId,
taskId: task.taskId,
toolName: task.toolName
});
this.inFlightTasks.add(task.taskId);
const taskPromise = (async () => {
try {
const result = await this.dependencies.taskRunner.run<TPayload, TResult>(
task,
context
);
this.dependencies.logger.info("Runtime task completed.", {
runtimeId: this.runtimeId,
taskId: task.taskId,
toolName: task.toolName,
durationMs: result.durationMs
});
this.dependencies.eventBus.emit({
name: "runtime.task.completed",
payload: {
runtimeId: this.runtimeId,
taskId: task.taskId,
agentId: task.agentId,
toolName: task.toolName,
durationMs: result.durationMs
}
});
return result;
} catch (error) {
this.dependencies.logger.error("Runtime task failed.", {
runtimeId: this.runtimeId,
taskId: task.taskId,
toolName: task.toolName,
error
});
this.dependencies.eventBus.emit({
name: "runtime.task.error",
payload: {
runtimeId: this.runtimeId,
taskId: task.taskId,
agentId: task.agentId,
toolName: task.toolName,
error
}
});
throw error;
} finally {
this.inFlightTasks.delete(task.taskId);
this.inFlightPromises.delete(task.taskId);
}
})();
this.inFlightPromises.set(task.taskId, taskPromise);
return taskPromise;
}
private async awaitInFlightTasks(timeoutMs: number): Promise<void> {
const promises = Array.from(this.inFlightPromises.values());
if (promises.length === 0) {
return;
}
const timeout = new Promise<void>((resolve) => {
setTimeout(resolve, timeoutMs);
});
await Promise.race([Promise.all(promises), timeout]);
}
}