agents 0.0.0-de168a2 → 0.0.0-df41827

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 (42) hide show
  1. package/dist/ai-chat-agent.d.ts +46 -4
  2. package/dist/ai-chat-agent.js +138 -68
  3. package/dist/ai-chat-agent.js.map +1 -1
  4. package/dist/ai-react.d.ts +17 -4
  5. package/dist/ai-react.js +49 -42
  6. package/dist/ai-react.js.map +1 -1
  7. package/dist/ai-types.d.ts +5 -0
  8. package/dist/chunk-767EASBA.js +106 -0
  9. package/dist/chunk-767EASBA.js.map +1 -0
  10. package/dist/chunk-E3LCYPCB.js +469 -0
  11. package/dist/chunk-E3LCYPCB.js.map +1 -0
  12. package/dist/chunk-NKZZ66QY.js +116 -0
  13. package/dist/chunk-NKZZ66QY.js.map +1 -0
  14. package/dist/{chunk-XG52S6YY.js → chunk-ZRRXJUAA.js} +357 -160
  15. package/dist/chunk-ZRRXJUAA.js.map +1 -0
  16. package/dist/client.d.ts +15 -1
  17. package/dist/client.js +6 -126
  18. package/dist/client.js.map +1 -1
  19. package/dist/index.d.ts +123 -14
  20. package/dist/index.js +8 -6
  21. package/dist/mcp/client.d.ts +34 -14
  22. package/dist/mcp/client.js +3 -402
  23. package/dist/mcp/client.js.map +1 -1
  24. package/dist/mcp/do-oauth-client-provider.d.ts +3 -3
  25. package/dist/mcp/do-oauth-client-provider.js +3 -103
  26. package/dist/mcp/do-oauth-client-provider.js.map +1 -1
  27. package/dist/mcp/index.d.ts +44 -5
  28. package/dist/mcp/index.js +593 -159
  29. package/dist/mcp/index.js.map +1 -1
  30. package/dist/react.d.ts +85 -5
  31. package/dist/react.js +20 -8
  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/package.json +71 -56
  39. package/src/index.ts +429 -86
  40. package/dist/chunk-HMLY7DHA.js +0 -16
  41. package/dist/chunk-XG52S6YY.js.map +0 -1
  42. /package/dist/{chunk-HMLY7DHA.js.map → serializable.js.map} +0 -0
@@ -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 "node:async_hooks";
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,19 +19,29 @@ declare class AIChatAgent<Env = unknown, State = unknown> extends Agent<
11
19
  Env,
12
20
  State
13
21
  > {
14
- #private;
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;
15
27
  /** Array of chat messages for the current conversation */
16
28
  messages: Message[];
17
29
  constructor(ctx: AgentContext, env: Env);
30
+ private _broadcastChatMessage;
18
31
  onMessage(connection: Connection, message: WSMessage): Promise<void>;
19
32
  onRequest(request: Request): Promise<Response>;
33
+ private _tryCatchChat;
20
34
  /**
21
35
  * Handle incoming chat messages and generate a response
22
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
23
38
  * @returns Response to send to the client or undefined
24
39
  */
25
40
  onChatMessage(
26
- onFinish: StreamTextOnFinishCallback<ToolSet>
41
+ onFinish: StreamTextOnFinishCallback<ToolSet>,
42
+ options?: {
43
+ abortSignal: AbortSignal | undefined;
44
+ }
27
45
  ): Promise<Response | undefined>;
28
46
  /**
29
47
  * Save messages on the server side and trigger AI response
@@ -34,6 +52,30 @@ declare class AIChatAgent<Env = unknown, State = unknown> extends Agent<
34
52
  messages: Message[],
35
53
  excludeBroadcastIds?: string[]
36
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>;
37
79
  }
38
80
 
39
81
  export { AIChatAgent };
@@ -1,19 +1,16 @@
1
1
  import {
2
2
  Agent
3
- } from "./chunk-XG52S6YY.js";
4
- import {
5
- __privateAdd,
6
- __privateMethod
7
- } from "./chunk-HMLY7DHA.js";
3
+ } from "./chunk-ZRRXJUAA.js";
4
+ import "./chunk-E3LCYPCB.js";
5
+ import "./chunk-767EASBA.js";
6
+ import "./chunk-NKZZ66QY.js";
8
7
 
9
8
  // src/ai-chat-agent.ts
10
9
  import { appendResponseMessages } from "ai";
11
10
  var decoder = new TextDecoder();
12
- var _AIChatAgent_instances, broadcastChatMessage_fn, tryCatch_fn, reply_fn;
13
11
  var AIChatAgent = class extends Agent {
14
12
  constructor(ctx, env) {
15
13
  super(ctx, env);
16
- __privateAdd(this, _AIChatAgent_instances);
17
14
  this.sql`create table if not exists cf_ai_chat_agent_messages (
18
15
  id text primary key,
19
16
  message text not null,
@@ -22,64 +19,91 @@ var AIChatAgent = class extends Agent {
22
19
  this.messages = (this.sql`select * from cf_ai_chat_agent_messages` || []).map((row) => {
23
20
  return JSON.parse(row.message);
24
21
  });
22
+ this._chatMessageAbortControllers = /* @__PURE__ */ new Map();
23
+ }
24
+ _broadcastChatMessage(message, exclude) {
25
+ this.broadcast(JSON.stringify(message), exclude);
25
26
  }
26
27
  async onMessage(connection, message) {
27
28
  if (typeof message === "string") {
28
29
  let data;
29
30
  try {
30
31
  data = JSON.parse(message);
31
- } catch (error) {
32
+ } catch (_error) {
32
33
  return;
33
34
  }
34
35
  if (data.type === "cf_agent_use_chat_request" && data.init.method === "POST") {
35
36
  const {
36
- method,
37
- keepalive,
38
- headers,
39
- body,
37
+ // method,
38
+ // keepalive,
39
+ // headers,
40
+ body
40
41
  // we're reading this
41
- redirect,
42
- integrity,
43
- credentials,
44
- mode,
45
- referrer,
46
- referrerPolicy,
47
- window
42
+ //
43
+ // // these might not exist?
48
44
  // dispatcher,
49
45
  // duplex
50
46
  } = data.init;
51
47
  const { messages } = JSON.parse(body);
52
- __privateMethod(this, _AIChatAgent_instances, broadcastChatMessage_fn).call(this, {
53
- type: "cf_agent_chat_messages",
54
- messages
55
- }, [connection.id]);
48
+ this._broadcastChatMessage(
49
+ {
50
+ messages,
51
+ type: "cf_agent_chat_messages"
52
+ },
53
+ [connection.id]
54
+ );
56
55
  await this.persistMessages(messages, [connection.id]);
57
- return __privateMethod(this, _AIChatAgent_instances, tryCatch_fn).call(this, async () => {
58
- const response = await this.onChatMessage(async ({ response: response2 }) => {
59
- const finalMessages = appendResponseMessages({
60
- messages,
61
- responseMessages: response2.messages
62
- });
63
- await this.persistMessages(finalMessages, [connection.id]);
64
- });
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
+ );
65
70
  if (response) {
66
- await __privateMethod(this, _AIChatAgent_instances, reply_fn).call(this, data.id, 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
+ );
67
85
  }
68
86
  });
69
87
  }
70
88
  if (data.type === "cf_agent_chat_clear") {
89
+ this._destroyAbortControllers();
71
90
  this.sql`delete from cf_ai_chat_agent_messages`;
72
91
  this.messages = [];
73
- __privateMethod(this, _AIChatAgent_instances, broadcastChatMessage_fn).call(this, {
74
- type: "cf_agent_chat_clear"
75
- }, [connection.id]);
92
+ this._broadcastChatMessage(
93
+ {
94
+ type: "cf_agent_chat_clear"
95
+ },
96
+ [connection.id]
97
+ );
76
98
  } else if (data.type === "cf_agent_chat_messages") {
77
99
  await this.persistMessages(data.messages, [connection.id]);
100
+ } else if (data.type === "cf_agent_chat_request_cancel") {
101
+ this._cancelChatRequest(data.id);
78
102
  }
79
103
  }
80
104
  }
81
105
  async onRequest(request) {
82
- return __privateMethod(this, _AIChatAgent_instances, tryCatch_fn).call(this, () => {
106
+ return this._tryCatchChat(() => {
83
107
  const url = new URL(request.url);
84
108
  if (url.pathname.endsWith("/get-messages")) {
85
109
  const messages = (this.sql`select * from cf_ai_chat_agent_messages` || []).map((row) => {
@@ -90,12 +114,20 @@ var AIChatAgent = class extends Agent {
90
114
  return super.onRequest(request);
91
115
  });
92
116
  }
117
+ async _tryCatchChat(fn) {
118
+ try {
119
+ return await fn();
120
+ } catch (e) {
121
+ throw this.onError(e);
122
+ }
123
+ }
93
124
  /**
94
125
  * Handle incoming chat messages and generate a response
95
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
96
128
  * @returns Response to send to the client or undefined
97
129
  */
98
- async onChatMessage(onFinish) {
130
+ async onChatMessage(onFinish, options) {
99
131
  throw new Error(
100
132
  "recieved a chat message, override onChatMessage and return a Response to send to the client"
101
133
  );
@@ -126,41 +158,79 @@ var AIChatAgent = class extends Agent {
126
158
  this.sql`insert into cf_ai_chat_agent_messages (id, message) values (${message.id},${JSON.stringify(message)})`;
127
159
  }
128
160
  this.messages = messages;
129
- __privateMethod(this, _AIChatAgent_instances, broadcastChatMessage_fn).call(this, {
130
- type: "cf_agent_chat_messages",
131
- messages
132
- }, excludeBroadcastIds);
133
- }
134
- };
135
- _AIChatAgent_instances = new WeakSet();
136
- broadcastChatMessage_fn = function(message, exclude) {
137
- this.broadcast(JSON.stringify(message), exclude);
138
- };
139
- tryCatch_fn = async function(fn) {
140
- try {
141
- return await fn();
142
- } catch (e) {
143
- throw this.onError(e);
161
+ this._broadcastChatMessage(
162
+ {
163
+ messages,
164
+ type: "cf_agent_chat_messages"
165
+ },
166
+ excludeBroadcastIds
167
+ );
144
168
  }
145
- };
146
- reply_fn = async function(id, response) {
147
- return __privateMethod(this, _AIChatAgent_instances, tryCatch_fn).call(this, async () => {
148
- for await (const chunk of response.body) {
149
- const body = decoder.decode(chunk);
150
- __privateMethod(this, _AIChatAgent_instances, broadcastChatMessage_fn).call(this, {
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({
174
+ body,
175
+ done: false,
176
+ id,
177
+ type: "cf_agent_use_chat_response"
178
+ });
179
+ }
180
+ this._broadcastChatMessage({
181
+ body: "",
182
+ done: true,
151
183
  id,
152
- type: "cf_agent_use_chat_response",
153
- body,
154
- done: false
184
+ type: "cf_agent_use_chat_response"
155
185
  });
156
- }
157
- __privateMethod(this, _AIChatAgent_instances, broadcastChatMessage_fn).call(this, {
158
- id,
159
- type: "cf_agent_use_chat_response",
160
- body: "",
161
- done: true
162
186
  });
163
- });
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();
216
+ }
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
+ }
164
234
  };
165
235
  export {
166
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 #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 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 return this.#tryCatch(async () => {\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 });\n }\n 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 return this.#tryCatch(() => {\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 async #tryCatch<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 * @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 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 async #reply(id: string, response: Response) {\n // now take chunks out from dataStreamResponse and send them to the client\n return this.#tryCatch(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 id,\n type: \"cf_agent_use_chat_response\",\n body,\n done: false,\n });\n }\n\n this.#broadcastChatMessage({\n id,\n type: \"cf_agent_use_chat_response\",\n body: \"\",\n done: true,\n });\n });\n }\n}\n"],"mappings":";;;;;;;;;AAMA,SAAS,8BAA8B;AAEvC,IAAM,UAAU,IAAI,YAAY;AARhC;AAcO,IAAM,cAAN,cAA0D,MAG/D;AAAA,EAGA,YAAY,KAAmB,KAAU;AACvC,UAAM,KAAK,GAAG;AAPX;AAQH,SAAK;AAAA;AAAA;AAAA;AAAA;AAKL,SAAK,YACH,KAAK,gDAAgD,CAAC,GACtD,IAAI,CAAC,QAAQ;AACb,aAAO,KAAK,MAAM,IAAI,OAAiB;AAAA,IACzC,CAAC;AAAA,EACH;AAAA,EAMA,MAAe,UAAU,YAAwB,SAAoB;AACnE,QAAI,OAAO,YAAY,UAAU;AAC/B,UAAI;AACJ,UAAI;AACF,eAAO,KAAK,MAAM,OAAO;AAAA,MAC3B,SAAS,OAAO;AAGd;AAAA,MACF;AACA,UACE,KAAK,SAAS,+BACd,KAAK,KAAK,WAAW,QACrB;AACA,cAAM;AAAA,UACJ;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA,UACA;AAAA;AAAA;AAAA,QAGF,IAAI,KAAK;AACT,cAAM,EAAE,SAAS,IAAI,KAAK,MAAM,IAAc;AAC9C,8BAAK,iDAAL,WACE;AAAA,UACE,MAAM;AAAA,UACN;AAAA,QACF,GACA,CAAC,WAAW,EAAE;AAEhB,cAAM,KAAK,gBAAgB,UAAU,CAAC,WAAW,EAAE,CAAC;AACpD,eAAO,sBAAK,qCAAL,WAAe,YAAY;AAChC,gBAAM,WAAW,MAAM,KAAK,cAAc,OAAO,EAAE,UAAAA,UAAS,MAAM;AAChE,kBAAM,gBAAgB,uBAAuB;AAAA,cAC3C;AAAA,cACA,kBAAkBA,UAAS;AAAA,YAC7B,CAAC;AAED,kBAAM,KAAK,gBAAgB,eAAe,CAAC,WAAW,EAAE,CAAC;AAAA,UAC3D,CAAC;AACD,cAAI,UAAU;AACZ,kBAAM,sBAAK,kCAAL,WAAY,KAAK,IAAI;AAAA,UAC7B;AAAA,QACF;AAAA,MACF;AACA,UAAI,KAAK,SAAS,uBAAuB;AACvC,aAAK;AACL,aAAK,WAAW,CAAC;AACjB,8BAAK,iDAAL,WACE;AAAA,UACE,MAAM;AAAA,QACR,GACA,CAAC,WAAW,EAAE;AAAA,MAElB,WAAW,KAAK,SAAS,0BAA0B;AAEjD,cAAM,KAAK,gBAAgB,KAAK,UAAU,CAAC,WAAW,EAAE,CAAC;AAAA,MAC3D;AAAA,IACF;AAAA,EACF;AAAA,EAEA,MAAe,UAAU,SAAqC;AAC5D,WAAO,sBAAK,qCAAL,WAAe,MAAM;AAC1B,YAAM,MAAM,IAAI,IAAI,QAAQ,GAAG;AAC/B,UAAI,IAAI,SAAS,SAAS,eAAe,GAAG;AAC1C,cAAM,YACJ,KAAK,gDAAgD,CAAC,GACtD,IAAI,CAAC,QAAQ;AACb,iBAAO,KAAK,MAAM,IAAI,OAAiB;AAAA,QACzC,CAAC;AACD,eAAO,SAAS,KAAK,QAAQ;AAAA,MAC/B;AACA,aAAO,MAAM,UAAU,OAAO;AAAA,IAChC;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAeA,MAAM,cACJ,UAC+B;AAC/B,UAAM,IAAI;AAAA,MACR;AAAA,IACF;AAAA,EACF;AAAA;AAAA;AAAA;AAAA;AAAA,EAMA,MAAM,aAAa,UAAyB;AAC1C,UAAM,KAAK,gBAAgB,QAAQ;AACnC,UAAM,WAAW,MAAM,KAAK,cAAc,OAAO,EAAE,UAAAA,UAAS,MAAM;AAChE,YAAM,gBAAgB,uBAAuB;AAAA,QAC3C;AAAA,QACA,kBAAkBA,UAAS;AAAA,MAC7B,CAAC;AAED,YAAM,KAAK,gBAAgB,eAAe,CAAC,CAAC;AAAA,IAC9C,CAAC;AACD,QAAI,UAAU;AAGZ,uBAAiB,SAAS,SAAS,MAAO;AACxC,gBAAQ,OAAO,KAAK;AAAA,MACtB;AACA,eAAS,MAAM,OAAO;AAAA,IACxB;AAAA,EACF;AAAA,EAEA,MAAM,gBACJ,UACA,sBAAgC,CAAC,GACjC;AACA,SAAK;AACL,eAAW,WAAW,UAAU;AAC9B,WAAK,kEACH,QAAQ,EACV,IAAI,KAAK,UAAU,OAAO,CAAC;AAAA,IAC7B;AACA,SAAK,WAAW;AAChB,0BAAK,iDAAL,WACE;AAAA,MACE,MAAM;AAAA,MACN;AAAA,IACF,GACA;AAAA,EAEJ;AAyBF;AAnMO;AAoBL,0BAAqB,SAAC,SAA0B,SAAoB;AAClE,OAAK,UAAU,KAAK,UAAU,OAAO,GAAG,OAAO;AACjD;AAqFM,cAAY,eAAC,IAA0B;AAC3C,MAAI;AACF,WAAO,MAAM,GAAG;AAAA,EAClB,SAAS,GAAG;AACV,UAAM,KAAK,QAAQ,CAAC;AAAA,EACtB;AACF;AA2DM,WAAM,eAAC,IAAY,UAAoB;AAE3C,SAAO,sBAAK,qCAAL,WAAe,YAAY;AAEhC,qBAAiB,SAAS,SAAS,MAAO;AACxC,YAAM,OAAO,QAAQ,OAAO,KAAK;AAEjC,4BAAK,iDAAL,WAA2B;AAAA,QACzB;AAAA,QACA,MAAM;AAAA,QACN;AAAA,QACA,MAAM;AAAA,MACR;AAAA,IACF;AAEA,0BAAK,iDAAL,WAA2B;AAAA,MACzB;AAAA,MACA,MAAM;AAAA,MACN,MAAM;AAAA,MACN,MAAM;AAAA,IACR;AAAA,EACF;AACF;","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;
@@ -33,15 +45,15 @@ type UseAgentChatOptions<State> = Omit<
33
45
  declare function useAgentChat<State = unknown>(
34
46
  options: UseAgentChatOptions<State>
35
47
  ): {
48
+ /**
49
+ * Clear chat history on both client and Agent
50
+ */
51
+ clearHistory: () => void;
36
52
  /**
37
53
  * Set the chat messages and synchronize with the Agent
38
54
  * @param messages New messages to set
39
55
  */
40
56
  setMessages: (messages: Message[]) => void;
41
- /**
42
- * Clear chat history on both client and Agent
43
- */
44
- clearHistory: () => void;
45
57
  messages: ai.UIMessage[];
46
58
  error: undefined | Error;
47
59
  append: (
@@ -52,6 +64,7 @@ declare function useAgentChat<State = unknown>(
52
64
  chatRequestOptions?: ai.ChatRequestOptions
53
65
  ) => Promise<string | null | undefined>;
54
66
  stop: () => void;
67
+ experimental_resume: () => void;
55
68
  input: string;
56
69
  setInput: React.Dispatch<React.SetStateAction<string>>;
57
70
  handleInputChange: (
package/dist/ai-react.js CHANGED
@@ -1,8 +1,7 @@
1
- import "./chunk-HMLY7DHA.js";
2
-
3
1
  // src/ai-react.tsx
4
2
  import { useChat } from "@ai-sdk/react";
5
- import { useEffect, use } from "react";
3
+ import { nanoid } from "nanoid";
4
+ import { use, useEffect } from "react";
6
5
  var requestCache = /* @__PURE__ */ new Map();
7
6
  function useAgentChat(options) {
8
7
  const { agent, getInitialMessages, ...rest } = options;
@@ -18,8 +17,8 @@ function useAgentChat(options) {
18
17
  const getMessagesUrl = new URL(url);
19
18
  getMessagesUrl.pathname += "/get-messages";
20
19
  const response = await fetch(getMessagesUrl.toString(), {
21
- headers: options.headers,
22
- credentials: options.credentials
20
+ credentials: options.credentials,
21
+ headers: options.headers
23
22
  });
24
23
  return response.json();
25
24
  }
@@ -32,18 +31,23 @@ function useAgentChat(options) {
32
31
  requestCache.set(agentUrlString, promise);
33
32
  return promise;
34
33
  }
35
- const initialMessages = getInitialMessages !== null ? use(
36
- doGetInitialMessages({
37
- agent: agent.agent,
38
- name: agent.name,
39
- url: agentUrlString
40
- })
41
- ) : rest.initialMessages;
34
+ const initialMessagesPromise = getInitialMessages === null ? null : doGetInitialMessages({
35
+ agent: agent.agent,
36
+ name: agent.name,
37
+ url: agentUrlString
38
+ });
39
+ const initialMessages = initialMessagesPromise ? use(initialMessagesPromise) : rest.initialMessages ?? [];
42
40
  useEffect(() => {
41
+ if (!initialMessagesPromise) {
42
+ return;
43
+ }
44
+ requestCache.set(agentUrlString, initialMessagesPromise);
43
45
  return () => {
44
- requestCache.delete(agentUrlString);
46
+ if (requestCache.get(agentUrlString) === initialMessagesPromise) {
47
+ requestCache.delete(agentUrlString);
48
+ }
45
49
  };
46
- }, [agentUrlString]);
50
+ }, [agentUrlString, initialMessagesPromise]);
47
51
  async function aiFetch(request, options2 = {}) {
48
52
  const {
49
53
  method,
@@ -60,10 +64,17 @@ function useAgentChat(options) {
60
64
  window
61
65
  // dispatcher, duplex
62
66
  } = options2;
63
- const id = crypto.randomUUID();
67
+ const id = nanoid(8);
64
68
  const abortController = new AbortController();
65
69
  signal?.addEventListener("abort", () => {
70
+ agent.send(
71
+ JSON.stringify({
72
+ id,
73
+ type: "cf_agent_chat_request_cancel"
74
+ })
75
+ );
66
76
  abortController.abort();
77
+ controller.close();
67
78
  });
68
79
  agent.addEventListener(
69
80
  "message",
@@ -71,7 +82,7 @@ function useAgentChat(options) {
71
82
  let data;
72
83
  try {
73
84
  data = JSON.parse(event.data);
74
- } catch (error) {
85
+ } catch (_error) {
75
86
  return;
76
87
  }
77
88
  if (data.type === "cf_agent_use_chat_response") {
@@ -94,32 +105,32 @@ function useAgentChat(options) {
94
105
  });
95
106
  agent.send(
96
107
  JSON.stringify({
97
- type: "cf_agent_use_chat_request",
98
108
  id,
99
- url: request.toString(),
100
109
  init: {
101
- method,
102
- keepalive,
103
- headers,
104
110
  body,
105
- redirect,
106
- integrity,
107
111
  credentials,
112
+ headers,
113
+ integrity,
114
+ keepalive,
115
+ method,
108
116
  mode,
117
+ redirect,
109
118
  referrer,
110
119
  referrerPolicy,
111
120
  window
112
121
  // dispatcher,
113
122
  // duplex
114
- }
123
+ },
124
+ type: "cf_agent_use_chat_request",
125
+ url: request.toString()
115
126
  })
116
127
  );
117
128
  return new Response(stream);
118
129
  }
119
130
  const useChatHelpers = useChat({
131
+ fetch: aiFetch,
120
132
  initialMessages,
121
133
  sendExtraMessageFields: true,
122
- fetch: aiFetch,
123
134
  ...rest
124
135
  });
125
136
  useEffect(() => {
@@ -130,7 +141,7 @@ function useAgentChat(options) {
130
141
  let data;
131
142
  try {
132
143
  data = JSON.parse(event.data);
133
- } catch (error) {
144
+ } catch (_error) {
134
145
  return;
135
146
  }
136
147
  if (data.type === "cf_agent_chat_clear") {
@@ -144,7 +155,7 @@ function useAgentChat(options) {
144
155
  let data;
145
156
  try {
146
157
  data = JSON.parse(event.data);
147
- } catch (error) {
158
+ } catch (_error) {
148
159
  return;
149
160
  }
150
161
  if (data.type === "cf_agent_chat_messages") {
@@ -157,34 +168,30 @@ function useAgentChat(options) {
157
168
  agent.removeEventListener("message", onClearHistory);
158
169
  agent.removeEventListener("message", onMessages);
159
170
  };
160
- }, [
161
- agent.addEventListener,
162
- agent.removeEventListener,
163
- useChatHelpers.setMessages
164
- ]);
171
+ }, [agent, useChatHelpers.setMessages]);
165
172
  return {
166
173
  ...useChatHelpers,
167
174
  /**
168
- * Set the chat messages and synchronize with the Agent
169
- * @param messages New messages to set
175
+ * Clear chat history on both client and Agent
170
176
  */
171
- setMessages: (messages) => {
172
- useChatHelpers.setMessages(messages);
177
+ clearHistory: () => {
178
+ useChatHelpers.setMessages([]);
173
179
  agent.send(
174
180
  JSON.stringify({
175
- type: "cf_agent_chat_messages",
176
- messages
181
+ type: "cf_agent_chat_clear"
177
182
  })
178
183
  );
179
184
  },
180
185
  /**
181
- * Clear chat history on both client and Agent
186
+ * Set the chat messages and synchronize with the Agent
187
+ * @param messages New messages to set
182
188
  */
183
- clearHistory: () => {
184
- useChatHelpers.setMessages([]);
189
+ setMessages: (messages) => {
190
+ useChatHelpers.setMessages(messages);
185
191
  agent.send(
186
192
  JSON.stringify({
187
- type: "cf_agent_chat_clear"
193
+ messages,
194
+ type: "cf_agent_chat_messages"
188
195
  })
189
196
  );
190
197
  }