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
203 lines (176 loc) · 5.46 KB
/
Copy pathagent-runtime.ts
File metadata and controls
203 lines (176 loc) · 5.46 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
import { RuntimeError } from "../errors/runtime-errors.js";
import type { RuntimeEventBus } from "../events/runtime-events.js";
import { 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 class AgentRuntime {
private readonly dependencies: ReturnType<typeof createRuntimeDependencies>;
private readonly runtimeId: string;
private readonly inFlightTasks = new Set<string>();
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;
if (options.drainTimeoutMs !== undefined && options.drainTimeoutMs > 0) {
await this.drainInFlightTasks(options.drainTimeoutMs);
}
if (options.clearListeners === true) {
const eventBus = this.dependencies.eventBus as RuntimeEventBus & {
clear?: () => void;
};
eventBus.clear?.();
}
this.dependencies.logger.info("Runtime stopped.", {
runtimeId: this.runtimeId
});
this.dependencies.eventBus.emit({
name: "runtime.stopped",
payload: {
runtimeId: this.runtimeId,
occurredAt: new Date().toISOString()
}
});
}
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()
};
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);
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) {
const reason =
error instanceof Error ? error.message : "Unknown runtime failure.";
this.dependencies.logger.error("Runtime task failed.", {
runtimeId: this.runtimeId,
taskId: task.taskId,
reason
});
this.dependencies.eventBus.emit({
name: "runtime.task.failed",
payload: {
runtimeId: this.runtimeId,
taskId: task.taskId,
agentId: task.agentId,
reason
}
});
throw error;
} finally {
this.inFlightTasks.delete(task.taskId);
}
}
private async drainInFlightTasks(timeoutMs: number): Promise<void> {
const deadline = Date.now() + timeoutMs;
while (this.inFlightTasks.size > 0) {
const remaining = deadline - Date.now();
if (remaining <= 0) {
break;
}
await this.sleep(Math.min(5, remaining));
}
}
private sleep(milliseconds: number): Promise<void> {
return new Promise((resolve) => setTimeout(resolve, milliseconds));
}
}