agents 0.0.0-b25bc37 → 0.0.0-b275dea

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.
@@ -1,9 +1,12 @@
1
1
  import {
2
- __privateAdd,
3
- __privateGet,
4
- __privateMethod,
5
- __privateSet
6
- } from "./chunk-HMLY7DHA.js";
2
+ DurableObjectOAuthClientProvider
3
+ } from "./chunk-BZXOAZUX.js";
4
+ import {
5
+ camelCaseToKebabCase
6
+ } from "./chunk-QSGN3REV.js";
7
+ import {
8
+ MCPClientManager
9
+ } from "./chunk-Y67CHZBI.js";
7
10
 
8
11
  // src/index.ts
9
12
  import {
@@ -14,7 +17,6 @@ import {
14
17
  import { parseCronExpression } from "cron-schedule";
15
18
  import { nanoid } from "nanoid";
16
19
  import { AsyncLocalStorage } from "node:async_hooks";
17
- import { WorkflowEntrypoint as CFWorkflowEntrypoint } from "cloudflare:workers";
18
20
  function isRPCRequest(msg) {
19
21
  return typeof msg === "object" && msg !== null && "type" in msg && msg.type === "rpc" && "id" in msg && typeof msg.id === "string" && "method" in msg && typeof msg.method === "string" && "args" in msg && Array.isArray(msg.args);
20
22
  }
@@ -30,8 +32,6 @@ function unstable_callable(metadata = {}) {
30
32
  return target;
31
33
  };
32
34
  }
33
- var WorkflowEntrypoint = class extends CFWorkflowEntrypoint {
34
- };
35
35
  function getNextCronTime(cron) {
36
36
  const interval = parseCronExpression(cron);
37
37
  return interval.getNextDate();
@@ -39,18 +39,72 @@ function getNextCronTime(cron) {
39
39
  var STATE_ROW_ID = "cf_state_row_id";
40
40
  var STATE_WAS_CHANGED = "cf_state_was_changed";
41
41
  var DEFAULT_STATE = {};
42
- var unstable_context = new AsyncLocalStorage();
43
- var _state, _Agent_instances, setStateInternal_fn, tryCatch_fn, scheduleNextAlarm_fn, isCallable_fn;
42
+ var agentContext = new AsyncLocalStorage();
43
+ function getCurrentAgent() {
44
+ const store = agentContext.getStore();
45
+ if (!store) {
46
+ return {
47
+ agent: void 0,
48
+ connection: void 0,
49
+ request: void 0
50
+ };
51
+ }
52
+ return store;
53
+ }
44
54
  var Agent = class extends Server {
45
55
  constructor(ctx, env) {
46
56
  super(ctx, env);
47
- __privateAdd(this, _Agent_instances);
48
- __privateAdd(this, _state, DEFAULT_STATE);
57
+ this._state = DEFAULT_STATE;
58
+ this._ParentClass = Object.getPrototypeOf(this).constructor;
59
+ this.mcp = new MCPClientManager(this._ParentClass.name, "0.0.1");
49
60
  /**
50
61
  * Initial state for the Agent
51
62
  * Override to provide default state values
52
63
  */
53
64
  this.initialState = DEFAULT_STATE;
65
+ /**
66
+ * Method called when an alarm fires.
67
+ * Executes any scheduled tasks that are due.
68
+ *
69
+ * @remarks
70
+ * To schedule a task, please use the `this.schedule` method instead.
71
+ * See {@link https://developers.cloudflare.com/agents/api-reference/schedule-tasks/}
72
+ */
73
+ this.alarm = async () => {
74
+ const now = Math.floor(Date.now() / 1e3);
75
+ const result = this.sql`
76
+ SELECT * FROM cf_agents_schedules WHERE time <= ${now}
77
+ `;
78
+ for (const row of result || []) {
79
+ const callback = this[row.callback];
80
+ if (!callback) {
81
+ console.error(`callback ${row.callback} not found`);
82
+ continue;
83
+ }
84
+ await agentContext.run(
85
+ { agent: this, connection: void 0, request: void 0 },
86
+ async () => {
87
+ try {
88
+ await callback.bind(this)(JSON.parse(row.payload), row);
89
+ } catch (e) {
90
+ console.error(`error executing callback "${row.callback}"`, e);
91
+ }
92
+ }
93
+ );
94
+ if (row.type === "cron") {
95
+ const nextExecutionTime = getNextCronTime(row.cron);
96
+ const nextTimestamp = Math.floor(nextExecutionTime.getTime() / 1e3);
97
+ this.sql`
98
+ UPDATE cf_agents_schedules SET time = ${nextTimestamp} WHERE id = ${row.id}
99
+ `;
100
+ } else {
101
+ this.sql`
102
+ DELETE FROM cf_agents_schedules WHERE id = ${row.id}
103
+ `;
104
+ }
105
+ }
106
+ await this._scheduleNextAlarm();
107
+ };
54
108
  this.sql`
55
109
  CREATE TABLE IF NOT EXISTS cf_agents_state (
56
110
  id TEXT PRIMARY KEY NOT NULL,
@@ -58,7 +112,7 @@ var Agent = class extends Server {
58
112
  )
59
113
  `;
60
114
  void this.ctx.blockConcurrencyWhile(async () => {
61
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, async () => {
115
+ return this._tryCatch(async () => {
62
116
  this.sql`
63
117
  CREATE TABLE IF NOT EXISTS cf_agents_schedules (
64
118
  id TEXT PRIMARY KEY NOT NULL DEFAULT (randomblob(9)),
@@ -74,22 +128,55 @@ var Agent = class extends Server {
74
128
  await this.alarm();
75
129
  });
76
130
  });
131
+ this.sql`
132
+ CREATE TABLE IF NOT EXISTS cf_agents_mcp_servers (
133
+ id TEXT PRIMARY KEY NOT NULL,
134
+ name TEXT NOT NULL,
135
+ server_url TEXT NOT NULL,
136
+ callback_url TEXT NOT NULL,
137
+ client_id TEXT,
138
+ auth_url TEXT,
139
+ server_options TEXT
140
+ )
141
+ `;
142
+ const _onRequest = this.onRequest.bind(this);
143
+ this.onRequest = (request) => {
144
+ return agentContext.run(
145
+ { agent: this, connection: void 0, request },
146
+ async () => {
147
+ if (this.mcp.isCallbackRequest(request)) {
148
+ await this.mcp.handleCallbackRequest(request);
149
+ this.broadcast(
150
+ JSON.stringify({
151
+ type: "cf_agent_mcp_servers",
152
+ mcp: this.getMcpServerState()
153
+ })
154
+ );
155
+ return new Response("<script>window.close();</script>", {
156
+ status: 200,
157
+ headers: { "content-type": "text/html" }
158
+ });
159
+ }
160
+ return this._tryCatch(() => _onRequest(request));
161
+ }
162
+ );
163
+ };
77
164
  const _onMessage = this.onMessage.bind(this);
78
165
  this.onMessage = async (connection, message) => {
79
- return unstable_context.run(
166
+ return agentContext.run(
80
167
  { agent: this, connection, request: void 0 },
81
168
  async () => {
82
169
  if (typeof message !== "string") {
83
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => _onMessage(connection, message));
170
+ return this._tryCatch(() => _onMessage(connection, message));
84
171
  }
85
172
  let parsed;
86
173
  try {
87
174
  parsed = JSON.parse(message);
88
175
  } catch (e) {
89
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => _onMessage(connection, message));
176
+ return this._tryCatch(() => _onMessage(connection, message));
90
177
  }
91
178
  if (isStateUpdateMessage(parsed)) {
92
- __privateMethod(this, _Agent_instances, setStateInternal_fn).call(this, parsed.state, connection);
179
+ this._setStateInternal(parsed.state, connection);
93
180
  return;
94
181
  }
95
182
  if (isRPCRequest(parsed)) {
@@ -99,7 +186,7 @@ var Agent = class extends Server {
99
186
  if (typeof methodFn !== "function") {
100
187
  throw new Error(`Method ${method} does not exist`);
101
188
  }
102
- if (!__privateMethod(this, _Agent_instances, isCallable_fn).call(this, method)) {
189
+ if (!this._isCallable(method)) {
103
190
  throw new Error(`Method ${method} is not callable`);
104
191
  }
105
192
  const metadata = callableMetadata.get(methodFn);
@@ -129,13 +216,13 @@ var Agent = class extends Server {
129
216
  }
130
217
  return;
131
218
  }
132
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => _onMessage(connection, message));
219
+ return this._tryCatch(() => _onMessage(connection, message));
133
220
  }
134
221
  );
135
222
  };
136
223
  const _onConnect = this.onConnect.bind(this);
137
224
  this.onConnect = (connection, ctx2) => {
138
- return unstable_context.run(
225
+ return agentContext.run(
139
226
  { agent: this, connection, request: ctx2.request },
140
227
  async () => {
141
228
  setTimeout(() => {
@@ -147,18 +234,56 @@ var Agent = class extends Server {
147
234
  })
148
235
  );
149
236
  }
150
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => _onConnect(connection, ctx2));
237
+ connection.send(
238
+ JSON.stringify({
239
+ type: "cf_agent_mcp_servers",
240
+ mcp: this.getMcpServerState()
241
+ })
242
+ );
243
+ return this._tryCatch(() => _onConnect(connection, ctx2));
151
244
  }, 20);
152
245
  }
153
246
  );
154
247
  };
248
+ const _onStart = this.onStart.bind(this);
249
+ this.onStart = async () => {
250
+ return agentContext.run(
251
+ { agent: this, connection: void 0, request: void 0 },
252
+ async () => {
253
+ const servers = this.sql`
254
+ SELECT id, name, server_url, client_id, auth_url, callback_url, server_options FROM cf_agents_mcp_servers;
255
+ `;
256
+ await Promise.allSettled(
257
+ servers.map((server) => {
258
+ return this._connectToMcpServerInternal(
259
+ server.name,
260
+ server.server_url,
261
+ server.callback_url,
262
+ server.server_options ? JSON.parse(server.server_options) : void 0,
263
+ {
264
+ id: server.id,
265
+ oauthClientId: server.client_id ?? void 0
266
+ }
267
+ );
268
+ })
269
+ );
270
+ this.broadcast(
271
+ JSON.stringify({
272
+ type: "cf_agent_mcp_servers",
273
+ mcp: this.getMcpServerState()
274
+ })
275
+ );
276
+ await this._tryCatch(() => _onStart());
277
+ }
278
+ );
279
+ };
155
280
  }
156
281
  /**
157
282
  * Current state of the Agent
158
283
  */
159
284
  get state() {
160
- if (__privateGet(this, _state) !== DEFAULT_STATE) {
161
- return __privateGet(this, _state);
285
+ if (this._state !== DEFAULT_STATE) {
286
+ return this._state;
162
287
  }
163
288
  const wasChanged = this.sql`
164
289
  SELECT state FROM cf_agents_state WHERE id = ${STATE_WAS_CHANGED}
@@ -169,8 +294,8 @@ var Agent = class extends Server {
169
294
  if (wasChanged[0]?.state === "true" || // we do this check for people who updated their code before we shipped wasChanged
170
295
  result[0]?.state) {
171
296
  const state = result[0]?.state;
172
- __privateSet(this, _state, JSON.parse(state));
173
- return __privateGet(this, _state);
297
+ this._state = JSON.parse(state);
298
+ return this._state;
174
299
  }
175
300
  if (this.initialState === DEFAULT_STATE) {
176
301
  return void 0;
@@ -198,12 +323,39 @@ var Agent = class extends Server {
198
323
  throw this.onError(e);
199
324
  }
200
325
  }
326
+ _setStateInternal(state, source = "server") {
327
+ this._state = state;
328
+ this.sql`
329
+ INSERT OR REPLACE INTO cf_agents_state (id, state)
330
+ VALUES (${STATE_ROW_ID}, ${JSON.stringify(state)})
331
+ `;
332
+ this.sql`
333
+ INSERT OR REPLACE INTO cf_agents_state (id, state)
334
+ VALUES (${STATE_WAS_CHANGED}, ${JSON.stringify(true)})
335
+ `;
336
+ this.broadcast(
337
+ JSON.stringify({
338
+ type: "cf_agent_state",
339
+ state
340
+ }),
341
+ source !== "server" ? [source.id] : []
342
+ );
343
+ return this._tryCatch(() => {
344
+ const { connection, request } = agentContext.getStore() || {};
345
+ return agentContext.run(
346
+ { agent: this, connection, request },
347
+ async () => {
348
+ return this.onStateUpdate(state, source);
349
+ }
350
+ );
351
+ });
352
+ }
201
353
  /**
202
354
  * Update the Agent's state
203
355
  * @param state New state to set
204
356
  */
205
357
  setState(state) {
206
- __privateMethod(this, _Agent_instances, setStateInternal_fn).call(this, state, "server");
358
+ this._setStateInternal(state, "server");
207
359
  }
208
360
  /**
209
361
  * Called when the Agent's state is updated
@@ -217,13 +369,20 @@ var Agent = class extends Server {
217
369
  * @param email Email message to process
218
370
  */
219
371
  onEmail(email) {
220
- return unstable_context.run(
372
+ return agentContext.run(
221
373
  { agent: this, connection: void 0, request: void 0 },
222
374
  async () => {
223
375
  console.error("onEmail not implemented");
224
376
  }
225
377
  );
226
378
  }
379
+ async _tryCatch(fn) {
380
+ try {
381
+ return await fn();
382
+ } catch (e) {
383
+ throw this.onError(e);
384
+ }
385
+ }
227
386
  onError(connectionOrError, error) {
228
387
  let theError;
229
388
  if (connectionOrError && error) {
@@ -273,7 +432,7 @@ var Agent = class extends Server {
273
432
  payload
274
433
  )}, 'scheduled', ${timestamp})
275
434
  `;
276
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
435
+ await this._scheduleNextAlarm();
277
436
  return {
278
437
  id,
279
438
  callback,
@@ -291,7 +450,7 @@ var Agent = class extends Server {
291
450
  payload
292
451
  )}, 'delayed', ${when}, ${timestamp})
293
452
  `;
294
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
453
+ await this._scheduleNextAlarm();
295
454
  return {
296
455
  id,
297
456
  callback,
@@ -310,7 +469,7 @@ var Agent = class extends Server {
310
469
  payload
311
470
  )}, 'cron', ${when}, ${timestamp})
312
471
  `;
313
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
472
+ await this._scheduleNextAlarm();
314
473
  return {
315
474
  id,
316
475
  callback,
@@ -377,47 +536,21 @@ var Agent = class extends Server {
377
536
  */
378
537
  async cancelSchedule(id) {
379
538
  this.sql`DELETE FROM cf_agents_schedules WHERE id = ${id}`;
380
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
539
+ await this._scheduleNextAlarm();
381
540
  return true;
382
541
  }
383
- /**
384
- * Method called when an alarm fires
385
- * Executes any scheduled tasks that are due
386
- */
387
- async alarm() {
388
- const now = Math.floor(Date.now() / 1e3);
542
+ async _scheduleNextAlarm() {
389
543
  const result = this.sql`
390
- SELECT * FROM cf_agents_schedules WHERE time <= ${now}
544
+ SELECT time FROM cf_agents_schedules
545
+ WHERE time > ${Math.floor(Date.now() / 1e3)}
546
+ ORDER BY time ASC
547
+ LIMIT 1
391
548
  `;
392
- for (const row of result || []) {
393
- const callback = this[row.callback];
394
- if (!callback) {
395
- console.error(`callback ${row.callback} not found`);
396
- continue;
397
- }
398
- await unstable_context.run(
399
- { agent: this, connection: void 0, request: void 0 },
400
- async () => {
401
- try {
402
- await callback.bind(this)(JSON.parse(row.payload), row);
403
- } catch (e) {
404
- console.error(`error executing callback "${row.callback}"`, e);
405
- }
406
- }
407
- );
408
- if (row.type === "cron") {
409
- const nextExecutionTime = getNextCronTime(row.cron);
410
- const nextTimestamp = Math.floor(nextExecutionTime.getTime() / 1e3);
411
- this.sql`
412
- UPDATE cf_agents_schedules SET time = ${nextTimestamp} WHERE id = ${row.id}
413
- `;
414
- } else {
415
- this.sql`
416
- DELETE FROM cf_agents_schedules WHERE id = ${row.id}
417
- `;
418
- }
549
+ if (!result) return;
550
+ if (result.length > 0 && "time" in result[0]) {
551
+ const nextTime = result[0].time * 1e3;
552
+ await this.ctx.storage.setAlarm(nextTime);
419
553
  }
420
- await __privateMethod(this, _Agent_instances, scheduleNextAlarm_fn).call(this);
421
554
  }
422
555
  /**
423
556
  * Destroy the Agent, removing all state and scheduled tasks
@@ -425,66 +558,128 @@ var Agent = class extends Server {
425
558
  async destroy() {
426
559
  this.sql`DROP TABLE IF EXISTS cf_agents_state`;
427
560
  this.sql`DROP TABLE IF EXISTS cf_agents_schedules`;
561
+ this.sql`DROP TABLE IF EXISTS cf_agents_mcp_servers`;
428
562
  await this.ctx.storage.deleteAlarm();
429
563
  await this.ctx.storage.deleteAll();
430
564
  }
431
- };
432
- _state = new WeakMap();
433
- _Agent_instances = new WeakSet();
434
- setStateInternal_fn = function(state, source = "server") {
435
- __privateSet(this, _state, state);
436
- this.sql`
437
- INSERT OR REPLACE INTO cf_agents_state (id, state)
438
- VALUES (${STATE_ROW_ID}, ${JSON.stringify(state)})
439
- `;
440
- this.sql`
441
- INSERT OR REPLACE INTO cf_agents_state (id, state)
442
- VALUES (${STATE_WAS_CHANGED}, ${JSON.stringify(true)})
443
- `;
444
- this.broadcast(
445
- JSON.stringify({
446
- type: "cf_agent_state",
447
- state
448
- }),
449
- source !== "server" ? [source.id] : []
450
- );
451
- return __privateMethod(this, _Agent_instances, tryCatch_fn).call(this, () => {
452
- const { connection, request } = unstable_context.getStore() || {};
453
- return unstable_context.run(
454
- { agent: this, connection, request },
455
- async () => {
456
- return this.onStateUpdate(state, source);
565
+ /**
566
+ * Get all methods marked as callable on this Agent
567
+ * @returns A map of method names to their metadata
568
+ */
569
+ _isCallable(method) {
570
+ return callableMetadata.has(this[method]);
571
+ }
572
+ /**
573
+ * Connect to a new MCP Server
574
+ *
575
+ * @param url MCP Server SSE URL
576
+ * @param callbackHost Base host for the agent, used for the redirect URI.
577
+ * @param agentsPrefix agents routing prefix if not using `agents`
578
+ * @param options MCP client and transport (header) options
579
+ * @returns authUrl
580
+ */
581
+ async addMcpServer(serverName, url, callbackHost, agentsPrefix = "agents", options) {
582
+ const callbackUrl = `${callbackHost}/${agentsPrefix}/${camelCaseToKebabCase(this._ParentClass.name)}/${this.name}/callback`;
583
+ const result = await this._connectToMcpServerInternal(
584
+ serverName,
585
+ url,
586
+ callbackUrl,
587
+ options
588
+ );
589
+ this.broadcast(
590
+ JSON.stringify({
591
+ type: "cf_agent_mcp_servers",
592
+ mcp: this.getMcpServerState()
593
+ })
594
+ );
595
+ return result;
596
+ }
597
+ async _connectToMcpServerInternal(serverName, url, callbackUrl, options, reconnect) {
598
+ const authProvider = new DurableObjectOAuthClientProvider(
599
+ this.ctx.storage,
600
+ this.name,
601
+ callbackUrl
602
+ );
603
+ if (reconnect) {
604
+ authProvider.serverId = reconnect.id;
605
+ if (reconnect.oauthClientId) {
606
+ authProvider.clientId = reconnect.oauthClientId;
457
607
  }
608
+ }
609
+ let headerTransportOpts = {};
610
+ if (options?.transport?.headers) {
611
+ headerTransportOpts = {
612
+ eventSourceInit: {
613
+ fetch: (url2, init) => fetch(url2, {
614
+ ...init,
615
+ headers: options?.transport?.headers
616
+ })
617
+ },
618
+ requestInit: {
619
+ headers: options?.transport?.headers
620
+ }
621
+ };
622
+ }
623
+ const { id, authUrl, clientId } = await this.mcp.connect(url, {
624
+ reconnect,
625
+ transport: {
626
+ ...headerTransportOpts,
627
+ authProvider
628
+ },
629
+ client: options?.client
630
+ });
631
+ this.sql`
632
+ INSERT OR REPLACE INTO cf_agents_mcp_servers (id, name, server_url, client_id, auth_url, callback_url, server_options)
633
+ VALUES (
634
+ ${id},
635
+ ${serverName},
636
+ ${url},
637
+ ${clientId ?? null},
638
+ ${authUrl ?? null},
639
+ ${callbackUrl},
640
+ ${options ? JSON.stringify(options) : null}
641
+ );
642
+ `;
643
+ return {
644
+ id,
645
+ authUrl
646
+ };
647
+ }
648
+ async removeMcpServer(id) {
649
+ this.mcp.closeConnection(id);
650
+ this.sql`
651
+ DELETE FROM cf_agents_mcp_servers WHERE id = ${id};
652
+ `;
653
+ this.broadcast(
654
+ JSON.stringify({
655
+ type: "cf_agent_mcp_servers",
656
+ mcp: this.getMcpServerState()
657
+ })
458
658
  );
459
- });
460
- };
461
- tryCatch_fn = async function(fn) {
462
- try {
463
- return await fn();
464
- } catch (e) {
465
- throw this.onError(e);
466
659
  }
467
- };
468
- scheduleNextAlarm_fn = async function() {
469
- const result = this.sql`
470
- SELECT time FROM cf_agents_schedules
471
- WHERE time > ${Math.floor(Date.now() / 1e3)}
472
- ORDER BY time ASC
473
- LIMIT 1
660
+ getMcpServerState() {
661
+ const mcpState = {
662
+ servers: {},
663
+ tools: this.mcp.listTools(),
664
+ prompts: this.mcp.listPrompts(),
665
+ resources: this.mcp.listResources()
666
+ };
667
+ const servers = this.sql`
668
+ SELECT id, name, server_url, client_id, auth_url, callback_url, server_options FROM cf_agents_mcp_servers;
474
669
  `;
475
- if (!result) return;
476
- if (result.length > 0 && "time" in result[0]) {
477
- const nextTime = result[0].time * 1e3;
478
- await this.ctx.storage.setAlarm(nextTime);
670
+ for (const server of servers) {
671
+ mcpState.servers[server.id] = {
672
+ name: server.name,
673
+ server_url: server.server_url,
674
+ auth_url: server.auth_url,
675
+ state: this.mcp.mcpConnections[server.id].connectionState,
676
+ instructions: this.mcp.mcpConnections[server.id].instructions ?? null,
677
+ capabilities: this.mcp.mcpConnections[server.id].serverCapabilities ?? null
678
+ };
679
+ }
680
+ return mcpState;
479
681
  }
480
682
  };
481
- /**
482
- * Get all methods marked as callable on this Agent
483
- * @returns A map of method names to their metadata
484
- */
485
- isCallable_fn = function(method) {
486
- return callableMetadata.has(this[method]);
487
- };
488
683
  /**
489
684
  * Agent configuration options
490
685
  */
@@ -530,66 +725,59 @@ async function routeAgentRequest(request, env, options) {
530
725
  }
531
726
  async function routeAgentEmail(email, env, options) {
532
727
  }
533
- function getAgentByName(namespace, name, options) {
728
+ async function getAgentByName(namespace, name, options) {
534
729
  return getServerByName(namespace, name, options);
535
730
  }
536
- var _connection, _id, _closed;
537
731
  var StreamingResponse = class {
538
732
  constructor(connection, id) {
539
- __privateAdd(this, _connection);
540
- __privateAdd(this, _id);
541
- __privateAdd(this, _closed, false);
542
- __privateSet(this, _connection, connection);
543
- __privateSet(this, _id, id);
733
+ this._closed = false;
734
+ this._connection = connection;
735
+ this._id = id;
544
736
  }
545
737
  /**
546
738
  * Send a chunk of data to the client
547
739
  * @param chunk The data to send
548
740
  */
549
741
  send(chunk) {
550
- if (__privateGet(this, _closed)) {
742
+ if (this._closed) {
551
743
  throw new Error("StreamingResponse is already closed");
552
744
  }
553
745
  const response = {
554
746
  type: "rpc",
555
- id: __privateGet(this, _id),
747
+ id: this._id,
556
748
  success: true,
557
749
  result: chunk,
558
750
  done: false
559
751
  };
560
- __privateGet(this, _connection).send(JSON.stringify(response));
752
+ this._connection.send(JSON.stringify(response));
561
753
  }
562
754
  /**
563
755
  * End the stream and send the final chunk (if any)
564
756
  * @param finalChunk Optional final chunk of data to send
565
757
  */
566
758
  end(finalChunk) {
567
- if (__privateGet(this, _closed)) {
759
+ if (this._closed) {
568
760
  throw new Error("StreamingResponse is already closed");
569
761
  }
570
- __privateSet(this, _closed, true);
762
+ this._closed = true;
571
763
  const response = {
572
764
  type: "rpc",
573
- id: __privateGet(this, _id),
765
+ id: this._id,
574
766
  success: true,
575
767
  result: finalChunk,
576
768
  done: true
577
769
  };
578
- __privateGet(this, _connection).send(JSON.stringify(response));
770
+ this._connection.send(JSON.stringify(response));
579
771
  }
580
772
  };
581
- _connection = new WeakMap();
582
- _id = new WeakMap();
583
- _closed = new WeakMap();
584
773
 
585
774
  export {
586
775
  unstable_callable,
587
- WorkflowEntrypoint,
588
- unstable_context,
776
+ getCurrentAgent,
589
777
  Agent,
590
778
  routeAgentRequest,
591
779
  routeAgentEmail,
592
780
  getAgentByName,
593
781
  StreamingResponse
594
782
  };
595
- //# sourceMappingURL=chunk-YMUU7QHV.js.map
783
+ //# sourceMappingURL=chunk-AXSPGBHI.js.map