agents 0.0.0-fbaa8f7 → 0.0.0-fce47ef

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.
Files changed (44) hide show
  1. package/README.md +2 -6
  2. package/dist/ai-chat-agent.d.ts +50 -7
  3. package/dist/ai-chat-agent.js +132 -63
  4. package/dist/ai-chat-agent.js.map +1 -1
  5. package/dist/ai-react.d.ts +22 -7
  6. package/dist/ai-react.js +62 -48
  7. package/dist/ai-react.js.map +1 -1
  8. package/dist/ai-types.d.ts +5 -0
  9. package/dist/chunk-767EASBA.js +106 -0
  10. package/dist/chunk-767EASBA.js.map +1 -0
  11. package/dist/chunk-E3LCYPCB.js +469 -0
  12. package/dist/chunk-E3LCYPCB.js.map +1 -0
  13. package/dist/chunk-NKZZ66QY.js +116 -0
  14. package/dist/chunk-NKZZ66QY.js.map +1 -0
  15. package/dist/chunk-ZRRXJUAA.js +788 -0
  16. package/dist/chunk-ZRRXJUAA.js.map +1 -0
  17. package/dist/client.d.ts +15 -1
  18. package/dist/client.js +6 -133
  19. package/dist/client.js.map +1 -1
  20. package/dist/index.d.ts +123 -18
  21. package/dist/index.js +6 -4
  22. package/dist/mcp/client.d.ts +783 -0
  23. package/dist/mcp/client.js +9 -0
  24. package/dist/mcp/do-oauth-client-provider.d.ts +41 -0
  25. package/dist/mcp/do-oauth-client-provider.js +7 -0
  26. package/dist/mcp/do-oauth-client-provider.js.map +1 -0
  27. package/dist/mcp/index.d.ts +84 -0
  28. package/dist/mcp/index.js +783 -0
  29. package/dist/mcp/index.js.map +1 -0
  30. package/dist/react.d.ts +85 -5
  31. package/dist/react.js +50 -31
  32. package/dist/react.js.map +1 -1
  33. package/dist/schedule.d.ts +2 -2
  34. package/dist/schedule.js +4 -6
  35. package/dist/schedule.js.map +1 -1
  36. package/dist/serializable.d.ts +32 -0
  37. package/dist/serializable.js +1 -0
  38. package/dist/serializable.js.map +1 -0
  39. package/package.json +79 -43
  40. package/src/index.ts +558 -155
  41. package/dist/chunk-HMLY7DHA.js +0 -16
  42. package/dist/chunk-PDF5WEP4.js +0 -542
  43. package/dist/chunk-PDF5WEP4.js.map +0 -1
  44. /package/dist/{chunk-HMLY7DHA.js.map → mcp/client.js.map} +0 -0
package/README.md CHANGED
@@ -316,18 +316,14 @@ Create meaningful conversations with intelligence:
316
316
 
317
317
  ```ts
318
318
  import { AIChatAgent } from "agents/ai-chat-agent";
319
- import { createOpenAI } from "@ai-sdk/openai";
319
+ import { openai } from "@ai-sdk/openai";
320
320
 
321
321
  export class DialogueAgent extends AIChatAgent {
322
322
  async onChatMessage(onFinish) {
323
323
  return createDataStreamResponse({
324
324
  execute: async (dataStream) => {
325
- const ai = createOpenAI({
326
- apiKey: this.env.OPENAI_API_KEY,
327
- });
328
-
329
325
  const stream = streamText({
330
- model: ai("gpt-4o"),
326
+ model: openai("gpt-4o"),
331
327
  messages: this.messages,
332
328
  onFinish, // call onFinish so that messages get saved
333
329
  });
@@ -1,7 +1,15 @@
1
- import { Agent, AgentContext } from "./index.js";
2
1
  import { Message, StreamTextOnFinishCallback, ToolSet } from "ai";
2
+ import { Agent, AgentContext } from "./index.js";
3
3
  import { Connection, WSMessage } from "partyserver";
4
- import "cloudflare:workers";
4
+ import "@modelcontextprotocol/sdk/client/index.js";
5
+ import "@modelcontextprotocol/sdk/types.js";
6
+ import "./mcp/client.js";
7
+ import "zod";
8
+ import "@modelcontextprotocol/sdk/client/sse.js";
9
+ import "@modelcontextprotocol/sdk/shared/protocol.js";
10
+ import "./mcp/do-oauth-client-provider.js";
11
+ import "@modelcontextprotocol/sdk/client/auth.js";
12
+ import "@modelcontextprotocol/sdk/shared/auth.js";
5
13
 
6
14
  /**
7
15
  * Extension of Agent with built-in chat capabilities
@@ -11,28 +19,63 @@ declare class AIChatAgent<Env = unknown, State = unknown> extends Agent<
11
19
  Env,
12
20
  State
13
21
  > {
22
+ /**
23
+ * Map of message `id`s to `AbortController`s
24
+ * useful to propagate request cancellation signals for any external calls made by the agent
25
+ */
26
+ private _chatMessageAbortControllers;
14
27
  /** Array of chat messages for the current conversation */
15
28
  messages: Message[];
16
29
  constructor(ctx: AgentContext, env: Env);
17
- private sendChatMessage;
18
- private broadcastChatMessage;
30
+ private _broadcastChatMessage;
19
31
  onMessage(connection: Connection, message: WSMessage): Promise<void>;
20
32
  onRequest(request: Request): Promise<Response>;
33
+ private _tryCatchChat;
21
34
  /**
22
35
  * Handle incoming chat messages and generate a response
23
36
  * @param onFinish Callback to be called when the response is finished
37
+ * @param options.signal A signal to pass to any child requests which can be used to cancel them
24
38
  * @returns Response to send to the client or undefined
25
39
  */
26
40
  onChatMessage(
27
- onFinish: StreamTextOnFinishCallback<ToolSet>
41
+ onFinish: StreamTextOnFinishCallback<ToolSet>,
42
+ options?: {
43
+ abortSignal: AbortSignal | undefined;
44
+ }
28
45
  ): Promise<Response | undefined>;
29
46
  /**
30
47
  * Save messages on the server side and trigger AI response
31
48
  * @param messages Chat messages to save
32
49
  */
33
50
  saveMessages(messages: Message[]): Promise<void>;
34
- private persistMessages;
35
- private reply;
51
+ persistMessages(
52
+ messages: Message[],
53
+ excludeBroadcastIds?: string[]
54
+ ): Promise<void>;
55
+ private _reply;
56
+ /**
57
+ * For the given message id, look up its associated AbortController
58
+ * If the AbortController does not exist, create and store one in memory
59
+ *
60
+ * returns the AbortSignal associated with the AbortController
61
+ */
62
+ private _getAbortSignal;
63
+ /**
64
+ * Remove an abort controller from the cache of pending message responses
65
+ */
66
+ private _removeAbortController;
67
+ /**
68
+ * Propagate an abort signal for any requests associated with the given message id
69
+ */
70
+ private _cancelChatRequest;
71
+ /**
72
+ * Abort all pending requests and clear the cache of AbortControllers
73
+ */
74
+ private _destroyAbortControllers;
75
+ /**
76
+ * When the DO is destroyed, cancel all pending requests
77
+ */
78
+ destroy(): Promise<void>;
36
79
  }
37
80
 
38
81
  export { AIChatAgent };
@@ -1,7 +1,9 @@
1
1
  import {
2
2
  Agent
3
- } from "./chunk-PDF5WEP4.js";
4
- import "./chunk-HMLY7DHA.js";
3
+ } from "./chunk-ZRRXJUAA.js";
4
+ import "./chunk-E3LCYPCB.js";
5
+ import "./chunk-767EASBA.js";
6
+ import "./chunk-NKZZ66QY.js";
5
7
 
6
8
  // src/ai-chat-agent.ts
7
9
  import { appendResponseMessages } from "ai";
@@ -17,67 +19,77 @@ var AIChatAgent = class extends Agent {
17
19
  this.messages = (this.sql`select * from cf_ai_chat_agent_messages` || []).map((row) => {
18
20
  return JSON.parse(row.message);
19
21
  });
22
+ this._chatMessageAbortControllers = /* @__PURE__ */ new Map();
20
23
  }
21
- sendChatMessage(connection, message) {
22
- try {
23
- connection.send(JSON.stringify(message));
24
- } catch (e) {
25
- }
26
- }
27
- broadcastChatMessage(message, exclude) {
28
- try {
29
- this.broadcast(JSON.stringify(message), exclude);
30
- } catch (e) {
31
- }
24
+ _broadcastChatMessage(message, exclude) {
25
+ this.broadcast(JSON.stringify(message), exclude);
32
26
  }
33
27
  async onMessage(connection, message) {
34
28
  if (typeof message === "string") {
35
29
  let data;
36
30
  try {
37
31
  data = JSON.parse(message);
38
- } catch (error) {
32
+ } catch (_error) {
39
33
  return;
40
34
  }
41
35
  if (data.type === "cf_agent_use_chat_request" && data.init.method === "POST") {
42
36
  const {
43
- method,
44
- keepalive,
45
- headers,
46
- body,
37
+ // method,
38
+ // keepalive,
39
+ // headers,
40
+ body
47
41
  // we're reading this
48
- redirect,
49
- integrity,
50
- credentials,
51
- mode,
52
- referrer,
53
- referrerPolicy,
54
- window
42
+ //
43
+ // // these might not exist?
55
44
  // dispatcher,
56
45
  // duplex
57
46
  } = data.init;
58
47
  const { messages } = JSON.parse(body);
59
- this.broadcastChatMessage(
48
+ this._broadcastChatMessage(
60
49
  {
61
- type: "cf_agent_chat_messages",
62
- messages
50
+ messages,
51
+ type: "cf_agent_chat_messages"
63
52
  },
64
53
  [connection.id]
65
54
  );
66
55
  await this.persistMessages(messages, [connection.id]);
67
- const response = await this.onChatMessage(async ({ response: response2 }) => {
68
- const finalMessages = appendResponseMessages({
69
- messages,
70
- responseMessages: response2.messages
71
- });
72
- await this.persistMessages(finalMessages, [connection.id]);
56
+ const chatMessageId = data.id;
57
+ const abortSignal = this._getAbortSignal(chatMessageId);
58
+ return this._tryCatchChat(async () => {
59
+ const response = await this.onChatMessage(
60
+ async ({ response: response2 }) => {
61
+ const finalMessages = appendResponseMessages({
62
+ messages,
63
+ responseMessages: response2.messages
64
+ });
65
+ await this.persistMessages(finalMessages, [connection.id]);
66
+ this._removeAbortController(chatMessageId);
67
+ },
68
+ abortSignal ? { abortSignal } : void 0
69
+ );
70
+ if (response) {
71
+ await this._reply(data.id, response);
72
+ } else {
73
+ console.warn(
74
+ `[AIChatAgent] onChatMessage returned no response for chatMessageId: ${chatMessageId}`
75
+ );
76
+ this._broadcastChatMessage(
77
+ {
78
+ body: "No response was generated by the agent.",
79
+ done: true,
80
+ id: data.id,
81
+ type: "cf_agent_use_chat_response"
82
+ },
83
+ [connection.id]
84
+ );
85
+ }
73
86
  });
74
- if (response) {
75
- await this.reply(data.id, response);
76
- }
77
- } else if (data.type === "cf_agent_chat_clear") {
87
+ }
88
+ if (data.type === "cf_agent_chat_clear") {
89
+ this._destroyAbortControllers();
78
90
  this.sql`delete from cf_ai_chat_agent_messages`;
79
91
  this.messages = [];
80
- this.broadcastChatMessage(
92
+ this._broadcastChatMessage(
81
93
  {
82
94
  type: "cf_agent_chat_clear"
83
95
  },
@@ -85,24 +97,37 @@ var AIChatAgent = class extends Agent {
85
97
  );
86
98
  } else if (data.type === "cf_agent_chat_messages") {
87
99
  await this.persistMessages(data.messages, [connection.id]);
100
+ } else if (data.type === "cf_agent_chat_request_cancel") {
101
+ this._cancelChatRequest(data.id);
88
102
  }
89
103
  }
90
104
  }
91
105
  async onRequest(request) {
92
- if (request.url.endsWith("/get-messages")) {
93
- const messages = (this.sql`select * from cf_ai_chat_agent_messages` || []).map((row) => {
94
- return JSON.parse(row.message);
95
- });
96
- return new Response(JSON.stringify(messages));
106
+ return this._tryCatchChat(() => {
107
+ const url = new URL(request.url);
108
+ if (url.pathname.endsWith("/get-messages")) {
109
+ const messages = (this.sql`select * from cf_ai_chat_agent_messages` || []).map((row) => {
110
+ return JSON.parse(row.message);
111
+ });
112
+ return Response.json(messages);
113
+ }
114
+ return super.onRequest(request);
115
+ });
116
+ }
117
+ async _tryCatchChat(fn) {
118
+ try {
119
+ return await fn();
120
+ } catch (e) {
121
+ throw this.onError(e);
97
122
  }
98
- return super.onRequest(request);
99
123
  }
100
124
  /**
101
125
  * Handle incoming chat messages and generate a response
102
126
  * @param onFinish Callback to be called when the response is finished
127
+ * @param options.signal A signal to pass to any child requests which can be used to cancel them
103
128
  * @returns Response to send to the client or undefined
104
129
  */
105
- async onChatMessage(onFinish) {
130
+ async onChatMessage(onFinish, options) {
106
131
  throw new Error(
107
132
  "recieved a chat message, override onChatMessage and return a Response to send to the client"
108
133
  );
@@ -133,35 +158,79 @@ var AIChatAgent = class extends Agent {
133
158
  this.sql`insert into cf_ai_chat_agent_messages (id, message) values (${message.id},${JSON.stringify(message)})`;
134
159
  }
135
160
  this.messages = messages;
136
- this.broadcastChatMessage(
161
+ this._broadcastChatMessage(
137
162
  {
138
- type: "cf_agent_chat_messages",
139
- messages
163
+ messages,
164
+ type: "cf_agent_chat_messages"
140
165
  },
141
166
  excludeBroadcastIds
142
167
  );
143
168
  }
144
- async reply(id, response) {
145
- for await (const chunk of response.body) {
146
- const body = decoder.decode(chunk);
147
- for (const conn of this.getConnections()) {
148
- this.sendChatMessage(conn, {
149
- id,
150
- type: "cf_agent_use_chat_response",
169
+ async _reply(id, response) {
170
+ return this._tryCatchChat(async () => {
171
+ for await (const chunk of response.body) {
172
+ const body = decoder.decode(chunk);
173
+ this._broadcastChatMessage({
151
174
  body,
152
- done: false
175
+ done: false,
176
+ id,
177
+ type: "cf_agent_use_chat_response"
153
178
  });
154
179
  }
155
- }
156
- for (const conn of this.getConnections()) {
157
- this.sendChatMessage(conn, {
158
- id,
159
- type: "cf_agent_use_chat_response",
180
+ this._broadcastChatMessage({
160
181
  body: "",
161
- done: true
182
+ done: true,
183
+ id,
184
+ type: "cf_agent_use_chat_response"
162
185
  });
186
+ });
187
+ }
188
+ /**
189
+ * For the given message id, look up its associated AbortController
190
+ * If the AbortController does not exist, create and store one in memory
191
+ *
192
+ * returns the AbortSignal associated with the AbortController
193
+ */
194
+ _getAbortSignal(id) {
195
+ if (typeof id !== "string") {
196
+ return void 0;
197
+ }
198
+ if (!this._chatMessageAbortControllers.has(id)) {
199
+ this._chatMessageAbortControllers.set(id, new AbortController());
200
+ }
201
+ return this._chatMessageAbortControllers.get(id)?.signal;
202
+ }
203
+ /**
204
+ * Remove an abort controller from the cache of pending message responses
205
+ */
206
+ _removeAbortController(id) {
207
+ this._chatMessageAbortControllers.delete(id);
208
+ }
209
+ /**
210
+ * Propagate an abort signal for any requests associated with the given message id
211
+ */
212
+ _cancelChatRequest(id) {
213
+ if (this._chatMessageAbortControllers.has(id)) {
214
+ const abortController = this._chatMessageAbortControllers.get(id);
215
+ abortController?.abort();
163
216
  }
164
217
  }
218
+ /**
219
+ * Abort all pending requests and clear the cache of AbortControllers
220
+ */
221
+ _destroyAbortControllers() {
222
+ for (const controller of this._chatMessageAbortControllers.values()) {
223
+ controller?.abort();
224
+ }
225
+ this._chatMessageAbortControllers.clear();
226
+ }
227
+ /**
228
+ * When the DO is destroyed, cancel all pending requests
229
+ */
230
+ async destroy() {
231
+ this._destroyAbortControllers();
232
+ await super.destroy();
233
+ }
165
234
  };
166
235
  export {
167
236
  AIChatAgent
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/ai-chat-agent.ts"],"sourcesContent":["import { Agent, type AgentContext, type Connection, type WSMessage } from \"./\";\nimport type {\n Message as ChatMessage,\n StreamTextOnFinishCallback,\n ToolSet,\n} from \"ai\";\nimport { appendResponseMessages } from \"ai\";\nimport type { OutgoingMessage, IncomingMessage } from \"./ai-types\";\nconst decoder = new TextDecoder();\n\n/**\n * Extension of Agent with built-in chat capabilities\n * @template Env Environment type containing bindings\n */\nexport class AIChatAgent<Env = unknown, State = unknown> extends Agent<\n Env,\n State\n> {\n /** Array of chat messages for the current conversation */\n messages: ChatMessage[];\n constructor(ctx: AgentContext, env: Env) {\n super(ctx, env);\n this.sql`create table if not exists cf_ai_chat_agent_messages (\n id text primary key,\n message text not null,\n created_at datetime default current_timestamp\n )`;\n this.messages = (\n this.sql`select * from cf_ai_chat_agent_messages` || []\n ).map((row) => {\n return JSON.parse(row.message as string);\n });\n }\n\n private sendChatMessage(connection: Connection, message: OutgoingMessage) {\n try {\n connection.send(JSON.stringify(message));\n } catch (e) {\n // silently ignore\n }\n }\n\n private broadcastChatMessage(message: OutgoingMessage, exclude?: string[]) {\n try {\n this.broadcast(JSON.stringify(message), exclude);\n } catch (e) {\n // silently ignore\n }\n }\n\n override async onMessage(connection: Connection, message: WSMessage) {\n if (typeof message === \"string\") {\n let data: IncomingMessage;\n try {\n data = JSON.parse(message) as IncomingMessage;\n } catch (error) {\n // silently ignore invalid messages for now\n // TODO: log errors with log levels\n return;\n }\n if (\n data.type === \"cf_agent_use_chat_request\" &&\n data.init.method === \"POST\"\n ) {\n const {\n method,\n keepalive,\n headers,\n body, // we're reading this\n redirect,\n integrity,\n credentials,\n mode,\n referrer,\n referrerPolicy,\n window,\n // dispatcher,\n // duplex\n } = data.init;\n const { messages } = JSON.parse(body as string);\n this.broadcastChatMessage(\n {\n type: \"cf_agent_chat_messages\",\n messages,\n },\n [connection.id]\n );\n await this.persistMessages(messages, [connection.id]);\n const response = await this.onChatMessage(async ({ response }) => {\n const finalMessages = appendResponseMessages({\n messages,\n responseMessages: response.messages,\n });\n\n await this.persistMessages(finalMessages, [connection.id]);\n });\n if (response) {\n await this.reply(data.id, response);\n }\n } else if (data.type === \"cf_agent_chat_clear\") {\n this.sql`delete from cf_ai_chat_agent_messages`;\n this.messages = [];\n this.broadcastChatMessage(\n {\n type: \"cf_agent_chat_clear\",\n },\n [connection.id]\n );\n } else if (data.type === \"cf_agent_chat_messages\") {\n // replace the messages with the new ones\n await this.persistMessages(data.messages, [connection.id]);\n }\n }\n }\n\n override async onRequest(request: Request): Promise<Response> {\n if (request.url.endsWith(\"/get-messages\")) {\n const messages = (\n this.sql`select * from cf_ai_chat_agent_messages` || []\n ).map((row) => {\n return JSON.parse(row.message as string);\n });\n return new Response(JSON.stringify(messages));\n }\n return super.onRequest(request);\n }\n\n /**\n * Handle incoming chat messages and generate a response\n * @param onFinish Callback to be called when the response is finished\n * @returns Response to send to the client or undefined\n */\n async onChatMessage(\n onFinish: StreamTextOnFinishCallback<ToolSet>\n ): Promise<Response | undefined> {\n throw new Error(\n \"recieved a chat message, override onChatMessage and return a Response to send to the client\"\n );\n }\n\n /**\n * Save messages on the server side and trigger AI response\n * @param messages Chat messages to save\n */\n async saveMessages(messages: ChatMessage[]) {\n await this.persistMessages(messages);\n const response = await this.onChatMessage(async ({ response }) => {\n const finalMessages = appendResponseMessages({\n messages,\n responseMessages: response.messages,\n });\n\n await this.persistMessages(finalMessages, []);\n });\n if (response) {\n // we're just going to drain the body\n // @ts-ignore TODO: fix this type error\n for await (const chunk of response.body!) {\n decoder.decode(chunk);\n }\n response.body?.cancel();\n }\n }\n\n private async persistMessages(\n messages: ChatMessage[],\n excludeBroadcastIds: string[] = []\n ) {\n this.sql`delete from cf_ai_chat_agent_messages`;\n for (const message of messages) {\n this.sql`insert into cf_ai_chat_agent_messages (id, message) values (${\n message.id\n },${JSON.stringify(message)})`;\n }\n this.messages = messages;\n this.broadcastChatMessage(\n {\n type: \"cf_agent_chat_messages\",\n messages: messages,\n },\n excludeBroadcastIds\n );\n }\n\n private async reply(id: string, response: Response) {\n // now take chunks out from dataStreamResponse and send them to the client\n\n // @ts-expect-error TODO: fix this type error\n for await (const chunk of response.body!) {\n const body = decoder.decode(chunk);\n\n for (const conn of this.getConnections()) {\n this.sendChatMessage(conn, {\n id,\n type: \"cf_agent_use_chat_response\",\n body,\n done: false,\n });\n }\n }\n\n for (const conn of this.getConnections()) {\n this.sendChatMessage(conn, {\n id,\n type: \"cf_agent_use_chat_response\",\n body: \"\",\n done: true,\n });\n }\n }\n}\n"],"mappings":"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","names":["response"]}
1
+ {"version":3,"sources":["../src/ai-chat-agent.ts"],"sourcesContent":["import type {\n Message as ChatMessage,\n StreamTextOnFinishCallback,\n ToolSet,\n} from \"ai\";\nimport { appendResponseMessages } from \"ai\";\nimport { Agent, type AgentContext, type Connection, type WSMessage } from \"./\";\nimport type { IncomingMessage, OutgoingMessage } from \"./ai-types\";\n\nconst decoder = new TextDecoder();\n\n/**\n * Extension of Agent with built-in chat capabilities\n * @template Env Environment type containing bindings\n */\nexport class AIChatAgent<Env = unknown, State = unknown> extends Agent<\n Env,\n State\n> {\n /**\n * Map of message `id`s to `AbortController`s\n * useful to propagate request cancellation signals for any external calls made by the agent\n */\n private _chatMessageAbortControllers: Map<string, AbortController>;\n /** Array of chat messages for the current conversation */\n messages: ChatMessage[];\n constructor(ctx: AgentContext, env: Env) {\n super(ctx, env);\n this.sql`create table if not exists cf_ai_chat_agent_messages (\n id text primary key,\n message text not null,\n created_at datetime default current_timestamp\n )`;\n this.messages = (\n this.sql`select * from cf_ai_chat_agent_messages` || []\n ).map((row) => {\n return JSON.parse(row.message as string);\n });\n\n this._chatMessageAbortControllers = new Map();\n }\n\n private _broadcastChatMessage(message: OutgoingMessage, exclude?: string[]) {\n this.broadcast(JSON.stringify(message), exclude);\n }\n\n override async onMessage(connection: Connection, message: WSMessage) {\n if (typeof message === \"string\") {\n let data: IncomingMessage;\n try {\n data = JSON.parse(message) as IncomingMessage;\n } catch (_error) {\n // silently ignore invalid messages for now\n // TODO: log errors with log levels\n return;\n }\n if (\n data.type === \"cf_agent_use_chat_request\" &&\n data.init.method === \"POST\"\n ) {\n const {\n // method,\n // keepalive,\n // headers,\n body, // we're reading this\n //\n // // these might not exist?\n // dispatcher,\n // duplex\n } = data.init;\n const { messages } = JSON.parse(body as string);\n this._broadcastChatMessage(\n {\n messages,\n type: \"cf_agent_chat_messages\",\n },\n [connection.id]\n );\n await this.persistMessages(messages, [connection.id]);\n\n const chatMessageId = data.id;\n const abortSignal = this._getAbortSignal(chatMessageId);\n\n return this._tryCatchChat(async () => {\n const response = await this.onChatMessage(\n async ({ response }) => {\n const finalMessages = appendResponseMessages({\n messages,\n responseMessages: response.messages,\n });\n\n await this.persistMessages(finalMessages, [connection.id]);\n this._removeAbortController(chatMessageId);\n },\n abortSignal ? { abortSignal } : undefined\n );\n\n if (response) {\n await this._reply(data.id, response);\n } else {\n // Log a warning for observability\n console.warn(\n `[AIChatAgent] onChatMessage returned no response for chatMessageId: ${chatMessageId}`\n );\n // Send a fallback message to the client\n this._broadcastChatMessage(\n {\n body: \"No response was generated by the agent.\",\n done: true,\n id: data.id,\n type: \"cf_agent_use_chat_response\",\n },\n [connection.id]\n );\n }\n });\n }\n if (data.type === \"cf_agent_chat_clear\") {\n this._destroyAbortControllers();\n this.sql`delete from cf_ai_chat_agent_messages`;\n this.messages = [];\n this._broadcastChatMessage(\n {\n type: \"cf_agent_chat_clear\",\n },\n [connection.id]\n );\n } else if (data.type === \"cf_agent_chat_messages\") {\n // replace the messages with the new ones\n await this.persistMessages(data.messages, [connection.id]);\n } else if (data.type === \"cf_agent_chat_request_cancel\") {\n // propagate an abort signal for the associated request\n this._cancelChatRequest(data.id);\n }\n }\n }\n\n override async onRequest(request: Request): Promise<Response> {\n return this._tryCatchChat(() => {\n const url = new URL(request.url);\n if (url.pathname.endsWith(\"/get-messages\")) {\n const messages = (\n this.sql`select * from cf_ai_chat_agent_messages` || []\n ).map((row) => {\n return JSON.parse(row.message as string);\n });\n return Response.json(messages);\n }\n return super.onRequest(request);\n });\n }\n\n private async _tryCatchChat<T>(fn: () => T | Promise<T>) {\n try {\n return await fn();\n } catch (e) {\n throw this.onError(e);\n }\n }\n\n /**\n * Handle incoming chat messages and generate a response\n * @param onFinish Callback to be called when the response is finished\n * @param options.signal A signal to pass to any child requests which can be used to cancel them\n * @returns Response to send to the client or undefined\n */\n async onChatMessage(\n // biome-ignore lint/correctness/noUnusedFunctionParameters: overridden later\n onFinish: StreamTextOnFinishCallback<ToolSet>,\n // biome-ignore lint/correctness/noUnusedFunctionParameters: overridden later\n options?: { abortSignal: AbortSignal | undefined }\n ): Promise<Response | undefined> {\n throw new Error(\n \"recieved a chat message, override onChatMessage and return a Response to send to the client\"\n );\n }\n\n /**\n * Save messages on the server side and trigger AI response\n * @param messages Chat messages to save\n */\n async saveMessages(messages: ChatMessage[]) {\n await this.persistMessages(messages);\n const response = await this.onChatMessage(async ({ response }) => {\n const finalMessages = appendResponseMessages({\n messages,\n responseMessages: response.messages,\n });\n\n await this.persistMessages(finalMessages, []);\n });\n if (response) {\n // we're just going to drain the body\n // @ts-ignore TODO: fix this type error\n for await (const chunk of response.body!) {\n decoder.decode(chunk);\n }\n response.body?.cancel();\n }\n }\n\n async persistMessages(\n messages: ChatMessage[],\n excludeBroadcastIds: string[] = []\n ) {\n this.sql`delete from cf_ai_chat_agent_messages`;\n for (const message of messages) {\n this.sql`insert into cf_ai_chat_agent_messages (id, message) values (${\n message.id\n },${JSON.stringify(message)})`;\n }\n this.messages = messages;\n this._broadcastChatMessage(\n {\n messages: messages,\n type: \"cf_agent_chat_messages\",\n },\n excludeBroadcastIds\n );\n }\n\n private async _reply(id: string, response: Response) {\n // now take chunks out from dataStreamResponse and send them to the client\n return this._tryCatchChat(async () => {\n // @ts-expect-error TODO: fix this type error\n for await (const chunk of response.body!) {\n const body = decoder.decode(chunk);\n\n this._broadcastChatMessage({\n body,\n done: false,\n id,\n type: \"cf_agent_use_chat_response\",\n });\n }\n\n this._broadcastChatMessage({\n body: \"\",\n done: true,\n id,\n type: \"cf_agent_use_chat_response\",\n });\n });\n }\n\n /**\n * For the given message id, look up its associated AbortController\n * If the AbortController does not exist, create and store one in memory\n *\n * returns the AbortSignal associated with the AbortController\n */\n private _getAbortSignal(id: string): AbortSignal | undefined {\n // Defensive check, since we're coercing message types at the moment\n if (typeof id !== \"string\") {\n return undefined;\n }\n\n if (!this._chatMessageAbortControllers.has(id)) {\n this._chatMessageAbortControllers.set(id, new AbortController());\n }\n\n return this._chatMessageAbortControllers.get(id)?.signal;\n }\n\n /**\n * Remove an abort controller from the cache of pending message responses\n */\n private _removeAbortController(id: string) {\n this._chatMessageAbortControllers.delete(id);\n }\n\n /**\n * Propagate an abort signal for any requests associated with the given message id\n */\n private _cancelChatRequest(id: string) {\n if (this._chatMessageAbortControllers.has(id)) {\n const abortController = this._chatMessageAbortControllers.get(id);\n abortController?.abort();\n }\n }\n\n /**\n * Abort all pending requests and clear the cache of AbortControllers\n */\n private _destroyAbortControllers() {\n for (const controller of this._chatMessageAbortControllers.values()) {\n controller?.abort();\n }\n this._chatMessageAbortControllers.clear();\n }\n\n /**\n * When the DO is destroyed, cancel all pending requests\n */\n async destroy() {\n this._destroyAbortControllers();\n await super.destroy();\n }\n}\n"],"mappings":"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","names":["response"]}
@@ -4,7 +4,19 @@ import { useChat } from "@ai-sdk/react";
4
4
  import { useAgent } from "./react.js";
5
5
  import "partysocket";
6
6
  import "partysocket/react";
7
+ import "./index.js";
8
+ import "@modelcontextprotocol/sdk/client/index.js";
9
+ import "@modelcontextprotocol/sdk/types.js";
10
+ import "partyserver";
11
+ import "./mcp/client.js";
12
+ import "zod";
13
+ import "@modelcontextprotocol/sdk/client/sse.js";
14
+ import "@modelcontextprotocol/sdk/shared/protocol.js";
15
+ import "./mcp/do-oauth-client-provider.js";
16
+ import "@modelcontextprotocol/sdk/client/auth.js";
17
+ import "@modelcontextprotocol/sdk/shared/auth.js";
7
18
  import "./client.js";
19
+ import "./serializable.js";
8
20
 
9
21
  type GetInitialMessagesOptions = {
10
22
  agent: string;
@@ -14,10 +26,10 @@ type GetInitialMessagesOptions = {
14
26
  /**
15
27
  * Options for the useAgentChat hook
16
28
  */
17
- type UseAgentChatOptions = Omit<
29
+ type UseAgentChatOptions<State> = Omit<
18
30
  Parameters<typeof useChat>[0] & {
19
31
  /** Agent connection from useAgent */
20
- agent: ReturnType<typeof useAgent>;
32
+ agent: ReturnType<typeof useAgent<State>>;
21
33
  getInitialMessages?:
22
34
  | undefined
23
35
  | null
@@ -30,16 +42,18 @@ type UseAgentChatOptions = Omit<
30
42
  * @param options Chat options including the agent connection
31
43
  * @returns Chat interface controls and state with added clearHistory method
32
44
  */
33
- declare function useAgentChat(options: UseAgentChatOptions): {
45
+ declare function useAgentChat<State = unknown>(
46
+ options: UseAgentChatOptions<State>
47
+ ): {
48
+ /**
49
+ * Clear chat history on both client and Agent
50
+ */
51
+ clearHistory: () => void;
34
52
  /**
35
53
  * Set the chat messages and synchronize with the Agent
36
54
  * @param messages New messages to set
37
55
  */
38
56
  setMessages: (messages: Message[]) => void;
39
- /**
40
- * Clear chat history on both client and Agent
41
- */
42
- clearHistory: () => void;
43
57
  messages: ai.UIMessage[];
44
58
  error: undefined | Error;
45
59
  append: (
@@ -50,6 +64,7 @@ declare function useAgentChat(options: UseAgentChatOptions): {
50
64
  chatRequestOptions?: ai.ChatRequestOptions
51
65
  ) => Promise<string | null | undefined>;
52
66
  stop: () => void;
67
+ experimental_resume: () => void;
53
68
  input: string;
54
69
  setInput: React.Dispatch<React.SetStateAction<string>>;
55
70
  handleInputChange: (