agents 0.0.0-eb6827a → 0.0.0-ecbd795

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 (76) hide show
  1. package/README.md +255 -27
  2. package/dist/_esm-LV5FJ3HK.js +3922 -0
  3. package/dist/_esm-LV5FJ3HK.js.map +1 -0
  4. package/dist/ai-chat-agent.d.ts +56 -6
  5. package/dist/ai-chat-agent.js +287 -94
  6. package/dist/ai-chat-agent.js.map +1 -1
  7. package/dist/ai-chat-v5-migration.d.ts +152 -0
  8. package/dist/ai-chat-v5-migration.js +20 -0
  9. package/dist/ai-react.d.ts +77 -67
  10. package/dist/ai-react.js +227 -72
  11. package/dist/ai-react.js.map +1 -1
  12. package/dist/ai-types.d.ts +41 -18
  13. package/dist/ai-types.js +7 -0
  14. package/dist/ccip-CMBYN64O.js +15 -0
  15. package/dist/ccip-CMBYN64O.js.map +1 -0
  16. package/dist/chunk-5Y6BEZDY.js +276 -0
  17. package/dist/chunk-5Y6BEZDY.js.map +1 -0
  18. package/dist/chunk-BER7KXUJ.js +18 -0
  19. package/dist/chunk-BER7KXUJ.js.map +1 -0
  20. package/dist/chunk-JJBFIGUC.js +5202 -0
  21. package/dist/chunk-JJBFIGUC.js.map +1 -0
  22. package/dist/chunk-KK7D3KRW.js +1300 -0
  23. package/dist/chunk-KK7D3KRW.js.map +1 -0
  24. package/dist/chunk-LL2AFX7V.js +109 -0
  25. package/dist/chunk-LL2AFX7V.js.map +1 -0
  26. package/dist/chunk-PR4QN5HX.js +43 -0
  27. package/dist/chunk-PR4QN5HX.js.map +1 -0
  28. package/dist/chunk-QEVM4BVL.js +116 -0
  29. package/dist/chunk-QEVM4BVL.js.map +1 -0
  30. package/dist/chunk-THPMWGLS.js +613 -0
  31. package/dist/chunk-THPMWGLS.js.map +1 -0
  32. package/dist/chunk-TYAY6AU6.js +159 -0
  33. package/dist/chunk-TYAY6AU6.js.map +1 -0
  34. package/dist/chunk-UJVEAURM.js +150 -0
  35. package/dist/chunk-UJVEAURM.js.map +1 -0
  36. package/dist/client-CvaJdLQA.d.ts +5015 -0
  37. package/dist/client.d.ts +16 -2
  38. package/dist/client.js +8 -133
  39. package/dist/client.js.map +1 -1
  40. package/dist/index.d.ts +284 -22
  41. package/dist/index.js +16 -4
  42. package/dist/mcp/client.d.ts +11 -0
  43. package/dist/mcp/client.js +10 -0
  44. package/dist/mcp/client.js.map +1 -0
  45. package/dist/mcp/do-oauth-client-provider.d.ts +42 -0
  46. package/dist/mcp/do-oauth-client-provider.js +8 -0
  47. package/dist/mcp/do-oauth-client-provider.js.map +1 -0
  48. package/dist/mcp/index.d.ts +92 -0
  49. package/dist/mcp/index.js +1099 -0
  50. package/dist/mcp/index.js.map +1 -0
  51. package/dist/mcp/x402.d.ts +31 -0
  52. package/dist/mcp/x402.js +3195 -0
  53. package/dist/mcp/x402.js.map +1 -0
  54. package/dist/observability/index.d.ts +46 -0
  55. package/dist/observability/index.js +12 -0
  56. package/dist/observability/index.js.map +1 -0
  57. package/dist/react.d.ts +89 -5
  58. package/dist/react.js +54 -32
  59. package/dist/react.js.map +1 -1
  60. package/dist/schedule.d.ts +81 -7
  61. package/dist/schedule.js +20 -7
  62. package/dist/schedule.js.map +1 -1
  63. package/dist/secp256k1-M22GZP2U.js +2193 -0
  64. package/dist/secp256k1-M22GZP2U.js.map +1 -0
  65. package/dist/serializable.d.ts +32 -0
  66. package/dist/serializable.js +1 -0
  67. package/dist/serializable.js.map +1 -0
  68. package/package.json +99 -50
  69. package/src/index.ts +1249 -184
  70. package/dist/chunk-HMLY7DHA.js +0 -16
  71. package/dist/chunk-X6BBKLSC.js +0 -568
  72. package/dist/chunk-X6BBKLSC.js.map +0 -1
  73. package/dist/mcp.d.ts +0 -58
  74. package/dist/mcp.js +0 -945
  75. package/dist/mcp.js.map +0 -1
  76. /package/dist/{chunk-HMLY7DHA.js.map → ai-chat-v5-migration.js.map} +0 -0
@@ -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,20 @@
1
+ import {
2
+ analyzeCorruption,
3
+ autoTransformMessage,
4
+ autoTransformMessages,
5
+ isUIMessage,
6
+ migrateMessagesToUIFormat,
7
+ migrateToUIMessage,
8
+ needsMigration
9
+ } from "./chunk-UJVEAURM.js";
10
+ import "./chunk-PR4QN5HX.js";
11
+ export {
12
+ analyzeCorruption,
13
+ autoTransformMessage,
14
+ autoTransformMessages,
15
+ isUIMessage,
16
+ migrateMessagesToUIFormat,
17
+ migrateToUIMessage,
18
+ needsMigration
19
+ };
20
+ //# sourceMappingURL=ai-chat-v5-migration.js.map
@@ -1,88 +1,98 @@
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";
6
+ import "./index.js";
7
+ import "cloudflare:workers";
8
+ import "@modelcontextprotocol/sdk/client/index.js";
9
+ import "@modelcontextprotocol/sdk/types.js";
10
+ import "partyserver";
11
+ import "./client-CvaJdLQA.js";
12
+ import "zod";
13
+ import "@modelcontextprotocol/sdk/shared/protocol.js";
14
+ import "@modelcontextprotocol/sdk/client/sse.js";
15
+ import "@modelcontextprotocol/sdk/client/streamableHttp.js";
16
+ import "./mcp/do-oauth-client-provider.js";
17
+ import "@modelcontextprotocol/sdk/client/auth.js";
18
+ import "@modelcontextprotocol/sdk/shared/auth.js";
19
+ import "./observability/index.js";
20
+ import "./ai-types.js";
7
21
  import "./client.js";
22
+ import "./serializable.js";
8
23
 
24
+ type AITool<Input = unknown, Output = unknown> = {
25
+ description?: string;
26
+ inputSchema?: unknown;
27
+ execute?: (input: Input) => Output | Promise<Output>;
28
+ };
9
29
  type GetInitialMessagesOptions = {
10
30
  agent: string;
11
31
  name: string;
12
32
  url: string;
13
33
  };
34
+ type UseChatParams<M extends UIMessage = UIMessage> = ChatInit<M> &
35
+ UseChatOptions<M>;
14
36
  /**
15
37
  * Options for the useAgentChat hook
16
38
  */
17
- type UseAgentChatOptions<State> = Omit<
18
- Parameters<typeof useChat>[0] & {
19
- /** Agent connection from useAgent */
20
- agent: ReturnType<typeof useAgent<State>>;
21
- getInitialMessages?:
22
- | undefined
23
- | null
24
- | ((options: GetInitialMessagesOptions) => Promise<Message[]>);
25
- },
26
- "fetch"
27
- >;
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
+ /**
69
+ * When true (default), automatically sends the next message only after
70
+ * all pending confirmation-required tool calls have been resolved.
71
+ * @default true
72
+ */
73
+ autoSendAfterAllConfirmationsResolved?: boolean;
74
+ };
28
75
  /**
29
76
  * React hook for building AI chat interfaces using an Agent
30
77
  * @param options Chat options including the agent connection
31
78
  * @returns Chat interface controls and state with added clearHistory method
32
79
  */
33
- declare function useAgentChat<State = unknown>(
34
- options: UseAgentChatOptions<State>
35
- ): {
36
- /**
37
- * Set the chat messages and synchronize with the Agent
38
- * @param messages New messages to set
39
- */
40
- setMessages: (messages: Message[]) => void;
41
- /**
42
- * Clear chat history on both client and Agent
43
- */
80
+ /**
81
+ * Automatically detects which tools require confirmation based on their configuration.
82
+ * Tools require confirmation if they have no execute function AND are not server-executed.
83
+ * @param tools - Record of tool name to tool definition
84
+ * @returns Array of tool names that require confirmation
85
+ */
86
+ declare function detectToolsRequiringConfirmation(
87
+ tools?: Record<string, AITool<unknown, unknown>>
88
+ ): string[];
89
+ declare function useAgentChat<
90
+ State = unknown,
91
+ ChatMessage extends UIMessage = UIMessage
92
+ >(
93
+ options: UseAgentChatOptions<State, ChatMessage>
94
+ ): ReturnType<typeof useChat<ChatMessage>> & {
44
95
  clearHistory: () => void;
45
- messages: ai.UIMessage[];
46
- error: undefined | Error;
47
- append: (
48
- message: Message | ai.CreateMessage,
49
- chatRequestOptions?: ai.ChatRequestOptions
50
- ) => Promise<string | null | undefined>;
51
- reload: (
52
- chatRequestOptions?: ai.ChatRequestOptions
53
- ) => Promise<string | null | undefined>;
54
- stop: () => void;
55
- input: string;
56
- setInput: React.Dispatch<React.SetStateAction<string>>;
57
- handleInputChange: (
58
- e:
59
- | React.ChangeEvent<HTMLInputElement>
60
- | React.ChangeEvent<HTMLTextAreaElement>
61
- ) => void;
62
- handleSubmit: (
63
- event?: {
64
- preventDefault?: () => void;
65
- },
66
- chatRequestOptions?: ai.ChatRequestOptions
67
- ) => void;
68
- metadata?: Object;
69
- isLoading: boolean;
70
- status: "submitted" | "streaming" | "ready" | "error";
71
- data?: ai.JSONValue[];
72
- setData: (
73
- data:
74
- | ai.JSONValue[]
75
- | undefined
76
- | ((data: ai.JSONValue[] | undefined) => ai.JSONValue[] | undefined)
77
- ) => void;
78
- id: string;
79
- addToolResult: ({
80
- toolCallId,
81
- result,
82
- }: {
83
- toolCallId: string;
84
- result: any;
85
- }) => void;
86
96
  };
87
97
 
88
- export { useAgentChat };
98
+ export { type AITool, detectToolsRequiringConfirmation, useAgentChat };