-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroot.ts
472 lines (429 loc) · 13.7 KB
/
root.ts
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
import { ReactNode } from 'react';
import { headers } from './constants.mjs';
import { SupabaseStorage } from './storage/supabase-storage.mjs';
import { PGliteStorage } from './storage/pglite-storage.mjs';
import { AgentRenderer } from './classes/agent-renderer.tsx';
import { ChatsSpecification } from './classes/chats-specification.ts';
import { multiplayerEndpointUrl } from './util/endpoints.mjs';
type RootOpts = {
agentJson?: any;
storageAdapter?: any;
blockchainAdapter?: any;
env?: any;
codecs?: any;
environment?: string;
};
export class Root extends EventTarget {
opts: RootOpts;
chatsSpecification: ChatsSpecification;
agentRenderer: AgentRenderer;
loadPromise: Promise<void>;
constructor(opts: RootOpts = {}) {
super();
if (!(opts.storageAdapter || opts.env?.AGENT_TOKEN)) {
throw new Error('either storageAdapter or auth.jwt are required');
}
this.opts = opts;
// XXX pass in models adapters
const {
agentJson = {},
env = {},
codecs = {},
} = opts;
const storageAdapter = (() => {
const _storageAdapter = opts.storageAdapter ?? 'supabase';
if (typeof _storageAdapter === 'string') {
switch (_storageAdapter) {
case 'supabase': {
return new SupabaseStorage({
jwt: env.AGENT_TOKEN,
});
}
case 'pglite': {
return new PGliteStorage({
path: env.PGLITE_PATH,
});
}
default: {
throw new Error('unknown storage adapter type: ' + _storageAdapter);
}
}
} else {
return _storageAdapter;
}
})();
this.chatsSpecification = new ChatsSpecification({
agentId: agentJson.id,
supabase: storageAdapter,
});
this.agentRenderer = new AgentRenderer({
env,
config: agentJson,
codecs,
supabase: storageAdapter,
chatsSpecification: this.chatsSpecification,
});
// const bindAlarm = () => {
// const updatealarm = () => {
// this.updateAlarm();
// };
// this.agentRenderer.registry.addEventListener('updatealarm', updatealarm);
// };
// bindAlarm();
this.loadPromise = this.agentRenderer.waitForRender();
// // initial alarm
// (async () => {
// await this.alarm();
// })();
}
#waitForLoad() {
return this.loadPromise;
}
//
// Handle HTTP requests from clients.
async fetch(request: Request) {
try {
const u = new URL(request.url);
// console.log('worker request', request.method, u.href);
await this.#waitForLoad();
// parse the url
let match;
if ((match = u.pathname.match(/^\/([^/]*)/))) {
const subpath = match[1];
// const guid = this.#getId();
/* const handleAgentJson = async () => {
const agentJson = this.#getAgentJson();
const s = JSON.stringify(agentJson);
return new Response(s, {
headers: {
...headers,
'Content-Type': 'application/json',
},
});
}; */
/* const handleWs = async () => {
// Expect to receive a WebSocket Upgrade request.
// If there is one, accept the request and return a WebSocket Response.
const upgradeHeader = request.headers.get('Upgrade');
if (upgradeHeader === 'websocket') {
console.log('got websocket open', {
guid,
});
// Creates two ends of a WebSocket connection.
const webSocketPair = new globalThis.WebSocketPair();
const [client, server] = Object.values(webSocketPair) as [any, any];
// Calling `accept()` informs the runtime that this WebSocket is to begin terminating
// request within the Durable Object. It has the effect of "accepting" the connection,
// and allowing the WebSocket to send and receive messages.
server.accept();
// input from the websocket
server.addEventListener('message', async (event) => {
const j = JSON.parse(event.data);
const { method, args } = j;
switch (method) {
case 'join': {
const {
room,
endpointUrl = multiplayerEndpointUrl,
only = false,
} = args;
if (only) {
await this.chatsSpecification.leaveAll();
}
await this.chatsSpecification.join({
room,
endpointUrl,
});
break;
}
case 'leave': {
const {
room,
endpointUrl = multiplayerEndpointUrl,
} = args;
await this.chatsSpecification.leave({
room,
endpointUrl,
});
break;
}
// case 'leaveAll': {
// await this.chatsSpecification.leaveAll();
// break;
// }
}
});
// // output to the websocket
// const onmessage = (e) => {
// // skip recursive chat messages coming from the socket
// server.send(JSON.stringify(e.data));
// };
// this.conversationContext.addEventListener('message', onmessage);
server.addEventListener('close', (e) => {
console.log('got websocket close', {
guid,
});
// this.conversationContext.removeEventListener(
// 'message',
// onmessage,
// );
server.close(1001, 'Durable Object is closing WebSocket');
});
return new Response(null, {
status: 101,
headers,
webSocket: client,
});
} else {
// expected upgrade header. respond with upgrade required status code.
return new Response('durable object: upgrade required', {
status: 426,
headers,
});
}
}; */
/* const handleEvents = async () => {
throw new Error('not implemented');
// output to the event stream
const message = (e) => {
const s = JSON.stringify(e.data);
const b = textEncoder.encode(`data: ${s}\n\n`);
controller.enqueue(b);
};
this.conversationContext.addEventListener('message', message);
this.addEventListener('error', message);
const cleanup = () => {
this.conversationContext.removeEventListener('message', message);
this.removeEventListener('error', message);
};
// response stream
let controller = null;
const readable = new ReadableStream({
start(_controller) {
controller = _controller;
const j = {
ok: true,
};
const s = JSON.stringify(j);
const b = textEncoder.encode(`data: ${s}\n\n`);
controller.enqueue(b);
},
cancel() {
cleanup();
},
});
const res = new Response(readable, {
headers: {
...headers,
'Content-Type': 'text/event-stream',
},
});
return res;
}; */
/* const handleStatus = async () => {
const registry = this.agentRenderer.registry;
const agents = registry.agents.map((agent) => {
const {
name,
description,
bio,
} = agent;
const agentRealms = Array.from(agent.rooms.values());
const rooms = agentRealms.map((realms) => {
const { conversation } = realms.metadata;
const { room, endpointUrl } = conversation;
return {
room,
endpointUrl,
};
});
return {
name,
description,
bio,
rooms,
};
});
return new Response(JSON.stringify({
agents,
}), {
headers: {
...headers,
'Content-Type': 'application/json',
},
});
}; */
/* const handleWebhook = async () => {
if (request.method === 'POST') {
const jsonPromise = request.json();
const authorizationHeader = request.headers['authorization'];
const bearerMatch = authorizationHeader?.match(/^Bearer ([\s\S]+)$/i);
const jwt = bearerMatch?.[1];
const userId = jwt && await getUserIdForJwt(jwt);
const ownerId = this.#getOwnerId();
if (userId === ownerId) {
const json = await jsonPromise;
console.log('got webhook payload', json);
return new Response(JSON.stringify({
userId,
json,
}), {
headers,
});
} else {
console.log('unauthorized webhook', {
userId,
ownerId,
});
return new Response(JSON.stringify({
error: 'unauthorized',
}), {
status: 401,
headers,
});
}
} else {
return new Response(JSON.stringify({
error: 'method not allowed',
}), {
status: 405,
headers,
});
}
}; */
const handleJoin = async () => {
// read the body json
const body = await request.json();
const {
room,
endpointUrl = multiplayerEndpointUrl,
only = false,
} = body ?? {};
if (typeof room === 'string') {
// if (only) {
// await this.chatsSpecification.leaveAll();
// }
await this.chatsSpecification.join({
room,
endpointUrl,
});
return new Response(JSON.stringify({ ok: true }), {
headers,
});
} else {
return new Response(JSON.stringify({
error: 'invalid request',
}), {
status: 400,
headers,
});
}
};
const handleLeave = async () => {
const body = await request.json();
const {
room,
endpointUrl = multiplayerEndpointUrl,
} = body ?? {};
if (typeof room === 'string') {
await this.chatsSpecification.leave({
room,
endpointUrl,
});
return new Response(JSON.stringify({ ok: true }), {
headers,
});
} else {
return new Response(JSON.stringify({
error: 'invalid request',
}), {
status: 400,
headers,
});
}
};
const handleDefaultRequest = async () => {
// return a "Hello, World!" response
return new Response(`Hello! I am an AI agent with the following agent.json:\n${JSON.stringify(this.opts.agentJson ?? {}, null, 2)}`, {
headers,
});
// const serverResponse = await serverHandler(request, {
// agentRenderer: this.agentRenderer,
// env: this.env,
// });
// return serverResponse;
};
switch (subpath) {
// case 'agent.json':
// return await handleAgentJson();
// case 'status':
// return await handleStatus();
// case 'ws':
// return await handleWs();
// case 'events':
// return await handleEvents();
// case 'webhook':
// return await handleWebhook();
case 'join':
return await handleJoin();
case 'leave':
return await handleLeave();
default:
return await handleDefaultRequest();
}
} else {
return new Response('durable object: path not found', {
headers,
status: 404,
});
}
} catch (err) {
console.warn(err);
return new Response(JSON.stringify({ error: err.stack }), {
headers,
status: 500,
});
}
}
render(node: ReactNode) {
this.agentRenderer.render(node);
}
unmount() {
return this.agentRenderer.unmount();
}
/* async updateAlarm() {
// get the next timeout
const agents = this.agentRenderer.registry.agents as ActiveAgentObject[];
const timeouts = agents.map((agent) =>
agent.liveManager.getNextTimeout()
);
{
const now = Date.now();
const pingTimeout = now + pingRate;
timeouts.push(pingTimeout);
}
{
const oldAlarm = await this.state.storage.getAlarm();
if (oldAlarm !== null) {
timeouts.push(oldAlarm);
}
}
const minTimeout = Math.min(...timeouts);
// set the next alarm
this.state.storage.setAlarm(minTimeout);
}
async alarm() {
// wait for load just in case
await this.#waitForLoad();
// process the agent's live managers
const agents = this.agentRenderer.registry.agents as ActiveAgentObject[];
const processPromises = agents.map(async (agent) => {
agent.liveManager.process();
});
await Promise.all(processPromises);
this.updateAlarm();
} */
}
export function createRoot(opts: RootOpts) {
return new Root(opts);
}