agents 0.0.0-f6c26e4 → 0.0.0-f7bd395

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 (50) hide show
  1. package/README.md +136 -6
  2. package/dist/ai-chat-agent.d.ts +12 -9
  3. package/dist/ai-chat-agent.js +142 -59
  4. package/dist/ai-chat-agent.js.map +1 -1
  5. package/dist/ai-chat-v5-migration.d.ts +152 -0
  6. package/dist/ai-chat-v5-migration.js +19 -0
  7. package/dist/ai-chat-v5-migration.js.map +1 -0
  8. package/dist/ai-react.d.ts +62 -71
  9. package/dist/ai-react.js +144 -37
  10. package/dist/ai-react.js.map +1 -1
  11. package/dist/ai-types.d.ts +36 -19
  12. package/dist/ai-types.js +6 -0
  13. package/dist/chunk-AVYJQSLW.js +17 -0
  14. package/dist/chunk-AVYJQSLW.js.map +1 -0
  15. package/dist/{chunk-5YIRLLUX.js → chunk-IJPBZOSS.js} +137 -105
  16. package/dist/chunk-IJPBZOSS.js.map +1 -0
  17. package/dist/{chunk-PVQZBKN7.js → chunk-LL2AFX7V.js} +5 -2
  18. package/dist/chunk-LL2AFX7V.js.map +1 -0
  19. package/dist/{chunk-KUH345EY.js → chunk-QEVM4BVL.js} +5 -5
  20. package/dist/chunk-QEVM4BVL.js.map +1 -0
  21. package/dist/chunk-UJVEAURM.js +150 -0
  22. package/dist/chunk-UJVEAURM.js.map +1 -0
  23. package/dist/{chunk-MW5BQ2FW.js → chunk-VYENMKFS.js} +163 -20
  24. package/dist/chunk-VYENMKFS.js.map +1 -0
  25. package/dist/client-CcIORE73.d.ts +4607 -0
  26. package/dist/client.js +2 -1
  27. package/dist/index.d.ts +557 -32
  28. package/dist/index.js +7 -4
  29. package/dist/mcp/client.d.ts +9 -1053
  30. package/dist/mcp/client.js +1 -1
  31. package/dist/mcp/do-oauth-client-provider.d.ts +1 -0
  32. package/dist/mcp/do-oauth-client-provider.js +1 -1
  33. package/dist/mcp/index.d.ts +66 -53
  34. package/dist/mcp/index.js +850 -604
  35. package/dist/mcp/index.js.map +1 -1
  36. package/dist/observability/index.d.ts +46 -12
  37. package/dist/observability/index.js +5 -4
  38. package/dist/react.d.ts +7 -3
  39. package/dist/react.js +7 -5
  40. package/dist/react.js.map +1 -1
  41. package/dist/schedule.d.ts +83 -9
  42. package/dist/schedule.js +15 -2
  43. package/dist/schedule.js.map +1 -1
  44. package/package.json +19 -8
  45. package/src/index.ts +192 -123
  46. package/dist/chunk-5YIRLLUX.js.map +0 -1
  47. package/dist/chunk-KUH345EY.js.map +0 -1
  48. package/dist/chunk-MW5BQ2FW.js.map +0 -1
  49. package/dist/chunk-PVQZBKN7.js.map +0 -1
  50. package/dist/index-BIJvkfYt.d.ts +0 -614
@@ -0,0 +1,152 @@
1
+ import { UIMessage } from "ai";
2
+
3
+ /**
4
+ * AI SDK v5 Migration following https://jhak.im/blog/ai-sdk-migration-handling-previously-saved-messages
5
+ * Using exact types from the official AI SDK documentation
6
+ */
7
+ /**
8
+ * AI SDK v5 Message Part types reference (from official AI SDK documentation)
9
+ *
10
+ * The migration logic below transforms legacy messages to match these official AI SDK v5 formats:
11
+ * - TextUIPart: { type: "text", text: string, state?: "streaming" | "done" }
12
+ * - ReasoningUIPart: { type: "reasoning", text: string, state?: "streaming" | "done", providerMetadata?: Record<string, unknown> }
13
+ * - FileUIPart: { type: "file", mediaType: string, filename?: string, url: string }
14
+ * - ToolUIPart: { type: `tool-${string}`, toolCallId: string, state: "input-streaming" | "input-available" | "output-available" | "output-error", input?: Record<string, unknown>, output?: unknown, errorText?: string, providerExecuted?: boolean }
15
+ */
16
+ /**
17
+ * Tool invocation from v4 format
18
+ */
19
+ type ToolInvocation = {
20
+ toolCallId: string;
21
+ toolName: string;
22
+ args: Record<string, unknown>;
23
+ result?: unknown;
24
+ state: "partial-call" | "call" | "result" | "error";
25
+ };
26
+ /**
27
+ * Legacy part from v4 format
28
+ */
29
+ type LegacyPart = {
30
+ type: string;
31
+ text?: string;
32
+ url?: string;
33
+ data?: string;
34
+ mimeType?: string;
35
+ mediaType?: string;
36
+ filename?: string;
37
+ };
38
+ /**
39
+ * Legacy message format from AI SDK v4
40
+ */
41
+ type LegacyMessage = {
42
+ id?: string;
43
+ role: string;
44
+ content: string;
45
+ reasoning?: string;
46
+ toolInvocations?: ToolInvocation[];
47
+ parts?: LegacyPart[];
48
+ [key: string]: unknown;
49
+ };
50
+ /**
51
+ * Corrupt content item
52
+ */
53
+ type CorruptContentItem = {
54
+ type: string;
55
+ text: string;
56
+ };
57
+ /**
58
+ * Corrupted message format - has content as array instead of parts
59
+ */
60
+ type CorruptArrayMessage = {
61
+ id?: string;
62
+ role: string;
63
+ content: CorruptContentItem[];
64
+ reasoning?: string;
65
+ toolInvocations?: ToolInvocation[];
66
+ [key: string]: unknown;
67
+ };
68
+ /**
69
+ * Union type for messages that could be in any format
70
+ */
71
+ type MigratableMessage = LegacyMessage | CorruptArrayMessage | UIMessage;
72
+ /**
73
+ * Checks if a message is already in the UIMessage format (has parts array)
74
+ */
75
+ declare function isUIMessage(message: unknown): message is UIMessage;
76
+ /**
77
+ * Input message that could be in any format - using unknown for flexibility
78
+ */
79
+ type InputMessage = {
80
+ id?: string;
81
+ role?: string;
82
+ content?: unknown;
83
+ reasoning?: string;
84
+ toolInvocations?: unknown[];
85
+ parts?: unknown[];
86
+ [key: string]: unknown;
87
+ };
88
+ /**
89
+ * Automatic message transformer following the blog post pattern
90
+ * Handles comprehensive migration from AI SDK v4 to v5 format
91
+ * @param message - Message in any legacy format
92
+ * @param index - Index for ID generation fallback
93
+ * @returns UIMessage in v5 format
94
+ */
95
+ declare function autoTransformMessage(
96
+ message: InputMessage,
97
+ index?: number
98
+ ): UIMessage;
99
+ /**
100
+ * Legacy single message migration for backward compatibility
101
+ */
102
+ declare function migrateToUIMessage(message: MigratableMessage): UIMessage;
103
+ /**
104
+ * Automatic message transformer for arrays following the blog post pattern
105
+ * @param messages - Array of messages in any format
106
+ * @returns Array of UIMessages in v5 format
107
+ */
108
+ declare function autoTransformMessages(messages: unknown[]): UIMessage[];
109
+ /**
110
+ * Migrates an array of messages to UIMessage format (legacy compatibility)
111
+ * @param messages - Array of messages in old or new format
112
+ * @returns Array of UIMessages in the new format
113
+ */
114
+ declare function migrateMessagesToUIFormat(
115
+ messages: MigratableMessage[]
116
+ ): UIMessage[];
117
+ /**
118
+ * Checks if any messages in an array need migration
119
+ * @param messages - Array of messages to check
120
+ * @returns true if any messages are not in proper UIMessage format
121
+ */
122
+ declare function needsMigration(messages: unknown[]): boolean;
123
+ /**
124
+ * Analyzes the corruption types in a message array for debugging
125
+ * @param messages - Array of messages to analyze
126
+ * @returns Statistics about corruption types found
127
+ */
128
+ declare function analyzeCorruption(messages: unknown[]): {
129
+ total: number;
130
+ clean: number;
131
+ legacyString: number;
132
+ corruptArray: number;
133
+ unknown: number;
134
+ examples: {
135
+ legacyString?: unknown;
136
+ corruptArray?: unknown;
137
+ unknown?: unknown;
138
+ };
139
+ };
140
+
141
+ export {
142
+ type CorruptArrayMessage,
143
+ type LegacyMessage,
144
+ type MigratableMessage,
145
+ analyzeCorruption,
146
+ autoTransformMessage,
147
+ autoTransformMessages,
148
+ isUIMessage,
149
+ migrateMessagesToUIFormat,
150
+ migrateToUIMessage,
151
+ needsMigration
152
+ };
@@ -0,0 +1,19 @@
1
+ import {
2
+ analyzeCorruption,
3
+ autoTransformMessage,
4
+ autoTransformMessages,
5
+ isUIMessage,
6
+ migrateMessagesToUIFormat,
7
+ migrateToUIMessage,
8
+ needsMigration
9
+ } from "./chunk-UJVEAURM.js";
10
+ export {
11
+ analyzeCorruption,
12
+ autoTransformMessage,
13
+ autoTransformMessages,
14
+ isUIMessage,
15
+ migrateMessagesToUIFormat,
16
+ migrateToUIMessage,
17
+ needsMigration
18
+ };
19
+ //# sourceMappingURL=ai-chat-v5-migration.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
@@ -1,101 +1,92 @@
1
- import * as ai from "ai";
2
- import { Message } from "ai";
3
- import { useChat } from "@ai-sdk/react";
1
+ import { UseChatOptions, useChat } from "@ai-sdk/react";
2
+ import { UIMessage, ChatInit } from "ai";
4
3
  import { useAgent } from "./react.js";
5
4
  import "partysocket";
6
5
  import "partysocket/react";
7
- import "./index-BIJvkfYt.js";
6
+ import "./index.js";
7
+ import "cloudflare:workers";
8
8
  import "@modelcontextprotocol/sdk/client/index.js";
9
9
  import "@modelcontextprotocol/sdk/types.js";
10
10
  import "partyserver";
11
- import "./mcp/client.js";
11
+ import "./client-CcIORE73.js";
12
12
  import "zod";
13
- import "@modelcontextprotocol/sdk/client/sse.js";
14
13
  import "@modelcontextprotocol/sdk/shared/protocol.js";
14
+ import "@modelcontextprotocol/sdk/client/sse.js";
15
+ import "@modelcontextprotocol/sdk/client/streamableHttp.js";
15
16
  import "./mcp/do-oauth-client-provider.js";
16
17
  import "@modelcontextprotocol/sdk/client/auth.js";
17
18
  import "@modelcontextprotocol/sdk/shared/auth.js";
19
+ import "./observability/index.js";
20
+ import "./ai-types.js";
18
21
  import "./client.js";
19
22
  import "./serializable.js";
20
23
 
24
+ type AITool<Input = unknown, Output = unknown> = {
25
+ description?: string;
26
+ inputSchema?: unknown;
27
+ execute?: (input: Input) => Output | Promise<Output>;
28
+ };
21
29
  type GetInitialMessagesOptions = {
22
30
  agent: string;
23
31
  name: string;
24
32
  url: string;
25
33
  };
34
+ type UseChatParams<M extends UIMessage = UIMessage> = ChatInit<M> &
35
+ UseChatOptions<M>;
26
36
  /**
27
37
  * Options for the useAgentChat hook
28
38
  */
29
- type UseAgentChatOptions<State> = Omit<
30
- Parameters<typeof useChat>[0] & {
31
- /** Agent connection from useAgent */
32
- agent: ReturnType<typeof useAgent<State>>;
33
- getInitialMessages?:
34
- | undefined
35
- | null
36
- | ((options: GetInitialMessagesOptions) => Promise<Message[]>);
37
- },
38
- "fetch"
39
- >;
39
+ type UseAgentChatOptions<
40
+ State,
41
+ ChatMessage extends UIMessage = UIMessage
42
+ > = Omit<UseChatParams<ChatMessage>, "fetch"> & {
43
+ /** Agent connection from useAgent */
44
+ agent: ReturnType<typeof useAgent<State>>;
45
+ getInitialMessages?:
46
+ | undefined
47
+ | null
48
+ | ((options: GetInitialMessagesOptions) => Promise<ChatMessage[]>);
49
+ /** Request credentials */
50
+ credentials?: RequestCredentials;
51
+ /** Request headers */
52
+ headers?: HeadersInit;
53
+ /**
54
+ * @description Whether to automatically resolve tool calls that do not require human interaction.
55
+ * @experimental
56
+ */
57
+ experimental_automaticToolResolution?: boolean;
58
+ /**
59
+ * @description Tools object for automatic detection of confirmation requirements.
60
+ * Tools without execute function will require confirmation.
61
+ */
62
+ tools?: Record<string, AITool<unknown, unknown>>;
63
+ /**
64
+ * @description Manual override for tools requiring confirmation.
65
+ * If not provided, will auto-detect from tools object.
66
+ */
67
+ toolsRequiringConfirmation?: string[];
68
+ };
40
69
  /**
41
70
  * React hook for building AI chat interfaces using an Agent
42
71
  * @param options Chat options including the agent connection
43
72
  * @returns Chat interface controls and state with added clearHistory method
44
73
  */
45
- declare function useAgentChat<State = unknown>(
46
- options: UseAgentChatOptions<State>
47
- ): {
48
- /**
49
- * Clear chat history on both client and Agent
50
- */
74
+ /**
75
+ * Automatically detects which tools require confirmation based on their configuration.
76
+ * Tools require confirmation if they have no execute function AND are not server-executed.
77
+ * @param tools - Record of tool name to tool definition
78
+ * @returns Array of tool names that require confirmation
79
+ */
80
+ declare function detectToolsRequiringConfirmation(
81
+ tools?: Record<string, AITool<unknown, unknown>>
82
+ ): string[];
83
+ declare function useAgentChat<
84
+ State = unknown,
85
+ ChatMessage extends UIMessage = UIMessage
86
+ >(
87
+ options: UseAgentChatOptions<State, ChatMessage>
88
+ ): ReturnType<typeof useChat<ChatMessage>> & {
51
89
  clearHistory: () => void;
52
- /**
53
- * Set the chat messages and synchronize with the Agent
54
- * @param messages New messages to set
55
- */
56
- setMessages: (messages: Message[]) => void;
57
- messages: ai.UIMessage[];
58
- error: undefined | Error;
59
- append: (
60
- message: Message | ai.CreateMessage,
61
- chatRequestOptions?: ai.ChatRequestOptions
62
- ) => Promise<string | null | undefined>;
63
- reload: (
64
- chatRequestOptions?: ai.ChatRequestOptions
65
- ) => Promise<string | null | undefined>;
66
- stop: () => void;
67
- experimental_resume: () => void;
68
- input: string;
69
- setInput: React.Dispatch<React.SetStateAction<string>>;
70
- handleInputChange: (
71
- e:
72
- | React.ChangeEvent<HTMLInputElement>
73
- | React.ChangeEvent<HTMLTextAreaElement>
74
- ) => void;
75
- handleSubmit: (
76
- event?: {
77
- preventDefault?: () => void;
78
- },
79
- chatRequestOptions?: ai.ChatRequestOptions
80
- ) => void;
81
- metadata?: Object;
82
- isLoading: boolean;
83
- status: "submitted" | "streaming" | "ready" | "error";
84
- data?: ai.JSONValue[];
85
- setData: (
86
- data:
87
- | ai.JSONValue[]
88
- | undefined
89
- | ((data: ai.JSONValue[] | undefined) => ai.JSONValue[] | undefined)
90
- ) => void;
91
- id: string;
92
- addToolResult: ({
93
- toolCallId,
94
- result
95
- }: {
96
- toolCallId: string;
97
- result: any;
98
- }) => void;
99
90
  };
100
91
 
101
- export { useAgentChat };
92
+ export { type AITool, detectToolsRequiringConfirmation, useAgentChat };
package/dist/ai-react.js CHANGED
@@ -1,10 +1,27 @@
1
+ import "./chunk-AVYJQSLW.js";
2
+
1
3
  // src/ai-react.tsx
2
4
  import { useChat } from "@ai-sdk/react";
5
+ import { getToolName, isToolUIPart } from "ai";
6
+ import { DefaultChatTransport } from "ai";
3
7
  import { nanoid } from "nanoid";
4
- import { use, useEffect } from "react";
8
+ import { use, useEffect, useRef } from "react";
5
9
  var requestCache = /* @__PURE__ */ new Map();
10
+ function detectToolsRequiringConfirmation(tools) {
11
+ if (!tools) return [];
12
+ return Object.entries(tools).filter(([_name, tool]) => !tool.execute).map(([name]) => name);
13
+ }
6
14
  function useAgentChat(options) {
7
- const { agent, getInitialMessages, ...rest } = options;
15
+ const {
16
+ agent,
17
+ getInitialMessages,
18
+ messages: optionsInitialMessages,
19
+ experimental_automaticToolResolution,
20
+ tools,
21
+ toolsRequiringConfirmation: manualToolsRequiringConfirmation,
22
+ ...rest
23
+ } = options;
24
+ const toolsRequiringConfirmation = manualToolsRequiringConfirmation ?? detectToolsRequiringConfirmation(tools);
8
25
  const agentUrl = new URL(
9
26
  `${// @ts-expect-error we're using a protected _url property that includes query params
10
27
  (agent._url || agent._pkurl)?.replace("ws://", "http://").replace("wss://", "https://")}`
@@ -20,7 +37,22 @@ function useAgentChat(options) {
20
37
  credentials: options.credentials,
21
38
  headers: options.headers
22
39
  });
23
- return response.json();
40
+ if (!response.ok) {
41
+ console.warn(
42
+ `Failed to fetch initial messages: ${response.status} ${response.statusText}`
43
+ );
44
+ return [];
45
+ }
46
+ const text = await response.text();
47
+ if (!text.trim()) {
48
+ return [];
49
+ }
50
+ try {
51
+ return JSON.parse(text);
52
+ } catch (error) {
53
+ console.warn("Failed to parse initial messages JSON:", error);
54
+ return [];
55
+ }
24
56
  }
25
57
  const getInitialMessagesFetch = getInitialMessages || defaultGetInitialMessagesFetch;
26
58
  function doGetInitialMessages(getInitialMessagesOptions) {
@@ -36,7 +68,7 @@ function useAgentChat(options) {
36
68
  name: agent.name,
37
69
  url: agentUrlString
38
70
  });
39
- const initialMessages = initialMessagesPromise ? use(initialMessagesPromise) : rest.initialMessages ?? [];
71
+ const initialMessages = initialMessagesPromise ? use(initialMessagesPromise) : optionsInitialMessages ?? [];
40
72
  useEffect(() => {
41
73
  if (!initialMessagesPromise) {
42
74
  return;
@@ -62,19 +94,22 @@ function useAgentChat(options) {
62
94
  referrer,
63
95
  referrerPolicy,
64
96
  window
65
- // dispatcher, duplex
66
97
  } = options2;
67
98
  const id = nanoid(8);
68
99
  const abortController = new AbortController();
100
+ let controller;
101
+ let isToolCallInProgress = false;
69
102
  signal?.addEventListener("abort", () => {
70
103
  agent.send(
71
104
  JSON.stringify({
72
105
  id,
73
- type: "cf_agent_chat_request_cancel"
106
+ type: "cf_agent_chat_request_cancel" /* CF_AGENT_CHAT_REQUEST_CANCEL */
74
107
  })
75
108
  );
76
109
  abortController.abort();
77
- controller.close();
110
+ if (!isToolCallInProgress) {
111
+ controller.close();
112
+ }
78
113
  });
79
114
  agent.addEventListener(
80
115
  "message",
@@ -85,19 +120,32 @@ function useAgentChat(options) {
85
120
  } catch (_error) {
86
121
  return;
87
122
  }
88
- if (data.type === "cf_agent_use_chat_response") {
123
+ if (data.type === "cf_agent_use_chat_response" /* CF_AGENT_USE_CHAT_RESPONSE */) {
89
124
  if (data.id === id) {
90
- controller.enqueue(new TextEncoder().encode(data.body));
91
- if (data.done) {
92
- controller.close();
125
+ if (data.error) {
126
+ controller.error(new Error(data.body));
93
127
  abortController.abort();
128
+ } else {
129
+ if (data.body?.trim()) {
130
+ if (data.body.includes('"tool_calls"')) {
131
+ isToolCallInProgress = true;
132
+ }
133
+ controller.enqueue(
134
+ new TextEncoder().encode(`data: ${data.body}
135
+
136
+ `)
137
+ );
138
+ }
139
+ if (data.done && !isToolCallInProgress) {
140
+ controller.close();
141
+ abortController.abort();
142
+ }
94
143
  }
95
144
  }
96
145
  }
97
146
  },
98
147
  { signal: abortController.signal }
99
148
  );
100
- let controller;
101
149
  const stream = new ReadableStream({
102
150
  start(c) {
103
151
  controller = c;
@@ -118,47 +166,106 @@ function useAgentChat(options) {
118
166
  referrer,
119
167
  referrerPolicy,
120
168
  window
121
- // dispatcher,
122
- // duplex
123
169
  },
124
- type: "cf_agent_use_chat_request",
170
+ type: "cf_agent_use_chat_request" /* CF_AGENT_USE_CHAT_REQUEST */,
125
171
  url: request.toString()
126
172
  })
127
173
  );
128
174
  return new Response(stream);
129
175
  }
176
+ const customTransport = {
177
+ sendMessages: async (options2) => {
178
+ const transport = new DefaultChatTransport({
179
+ api: agentUrlString,
180
+ fetch: aiFetch
181
+ });
182
+ return transport.sendMessages(options2);
183
+ },
184
+ reconnectToStream: async (options2) => {
185
+ const transport = new DefaultChatTransport({
186
+ api: agentUrlString,
187
+ fetch: aiFetch
188
+ });
189
+ return transport.reconnectToStream(options2);
190
+ }
191
+ };
130
192
  const useChatHelpers = useChat({
131
- fetch: aiFetch,
132
- initialMessages,
133
- sendExtraMessageFields: true,
134
- ...rest
193
+ ...rest,
194
+ messages: initialMessages,
195
+ transport: customTransport
135
196
  });
197
+ const processedToolCalls = useRef(/* @__PURE__ */ new Set());
198
+ useEffect(() => {
199
+ if (!experimental_automaticToolResolution) {
200
+ return;
201
+ }
202
+ const lastMessage = useChatHelpers.messages[useChatHelpers.messages.length - 1];
203
+ if (!lastMessage || lastMessage.role !== "assistant") {
204
+ return;
205
+ }
206
+ const toolCalls = lastMessage.parts.filter(
207
+ (part) => isToolUIPart(part) && part.state === "input-available" && !processedToolCalls.current.has(part.toolCallId)
208
+ );
209
+ if (toolCalls.length > 0) {
210
+ (async () => {
211
+ const toolCallsToResolve = toolCalls.filter(
212
+ (part) => isToolUIPart(part) && !toolsRequiringConfirmation.includes(getToolName(part)) && tools?.[getToolName(part)]?.execute
213
+ // Only execute if client has execute function
214
+ );
215
+ if (toolCallsToResolve.length > 0) {
216
+ for (const part of toolCallsToResolve) {
217
+ if (isToolUIPart(part)) {
218
+ processedToolCalls.current.add(part.toolCallId);
219
+ let toolOutput = null;
220
+ const toolName = getToolName(part);
221
+ const tool = tools?.[toolName];
222
+ if (tool?.execute && part.input) {
223
+ try {
224
+ toolOutput = await tool.execute(part.input);
225
+ } catch (error) {
226
+ toolOutput = `Error executing tool: ${error instanceof Error ? error.message : String(error)}`;
227
+ }
228
+ }
229
+ await useChatHelpers.addToolResult({
230
+ toolCallId: part.toolCallId,
231
+ tool: toolName,
232
+ output: toolOutput
233
+ });
234
+ }
235
+ }
236
+ useChatHelpers.sendMessage();
237
+ }
238
+ })();
239
+ }
240
+ }, [
241
+ useChatHelpers.messages,
242
+ experimental_automaticToolResolution,
243
+ useChatHelpers.addToolResult,
244
+ useChatHelpers.sendMessage,
245
+ toolsRequiringConfirmation
246
+ ]);
136
247
  useEffect(() => {
137
248
  function onClearHistory(event) {
138
- if (typeof event.data !== "string") {
139
- return;
140
- }
249
+ if (typeof event.data !== "string") return;
141
250
  let data;
142
251
  try {
143
252
  data = JSON.parse(event.data);
144
253
  } catch (_error) {
145
254
  return;
146
255
  }
147
- if (data.type === "cf_agent_chat_clear") {
256
+ if (data.type === "cf_agent_chat_clear" /* CF_AGENT_CHAT_CLEAR */) {
148
257
  useChatHelpers.setMessages([]);
149
258
  }
150
259
  }
151
260
  function onMessages(event) {
152
- if (typeof event.data !== "string") {
153
- return;
154
- }
261
+ if (typeof event.data !== "string") return;
155
262
  let data;
156
263
  try {
157
264
  data = JSON.parse(event.data);
158
265
  } catch (_error) {
159
266
  return;
160
267
  }
161
- if (data.type === "cf_agent_chat_messages") {
268
+ if (data.type === "cf_agent_chat_messages" /* CF_AGENT_CHAT_MESSAGES */) {
162
269
  useChatHelpers.setMessages(data.messages);
163
270
  }
164
271
  }
@@ -169,35 +276,35 @@ function useAgentChat(options) {
169
276
  agent.removeEventListener("message", onMessages);
170
277
  };
171
278
  }, [agent, useChatHelpers.setMessages]);
279
+ const { addToolResult } = useChatHelpers;
280
+ const addToolResultAndSendMessage = async (...args) => {
281
+ await addToolResult(...args);
282
+ useChatHelpers.sendMessage();
283
+ };
172
284
  return {
173
285
  ...useChatHelpers,
174
- /**
175
- * Clear chat history on both client and Agent
176
- */
286
+ addToolResult: addToolResultAndSendMessage,
177
287
  clearHistory: () => {
178
288
  useChatHelpers.setMessages([]);
179
289
  agent.send(
180
290
  JSON.stringify({
181
- type: "cf_agent_chat_clear"
291
+ type: "cf_agent_chat_clear" /* CF_AGENT_CHAT_CLEAR */
182
292
  })
183
293
  );
184
294
  },
185
- /**
186
- * Set the chat messages and synchronize with the Agent
187
- * @param messages New messages to set
188
- */
189
295
  setMessages: (messages) => {
190
296
  useChatHelpers.setMessages(messages);
191
297
  agent.send(
192
298
  JSON.stringify({
193
- messages,
194
- type: "cf_agent_chat_messages"
299
+ messages: Array.isArray(messages) ? messages : [],
300
+ type: "cf_agent_chat_messages" /* CF_AGENT_CHAT_MESSAGES */
195
301
  })
196
302
  );
197
303
  }
198
304
  };
199
305
  }
200
306
  export {
307
+ detectToolsRequiringConfirmation,
201
308
  useAgentChat
202
309
  };
203
310
  //# sourceMappingURL=ai-react.js.map