@copilotkit/react-core 0.0.0-main-20260220223427 → 0.0.0-main-20260403195251
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.
- package/CHANGELOG.md +540 -71
- package/dist/copilotkit-BK_zLoVm.mjs +7661 -0
- package/dist/copilotkit-BK_zLoVm.mjs.map +1 -0
- package/dist/copilotkit-BYNyIuE7.d.cts +2208 -0
- package/dist/copilotkit-BYNyIuE7.d.cts.map +1 -0
- package/dist/copilotkit-BYNyIuE7.d.ts +2208 -0
- package/dist/copilotkit-BYNyIuE7.d.ts.map +1 -0
- package/dist/copilotkit-CDZGGOIB.cjs +8074 -0
- package/dist/copilotkit-CDZGGOIB.cjs.map +1 -0
- package/dist/copilotkit-rBCfdqIo.d.mts +2208 -0
- package/dist/copilotkit-rBCfdqIo.d.mts.map +1 -0
- package/dist/index.cjs +166 -2200
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -674
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +14 -674
- package/dist/index.d.mts.map +1 -1
- package/dist/index.d.ts +667 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.mjs +119 -2124
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +2252 -230
- package/dist/index.umd.js.map +1 -1
- package/dist/v2/index.cjs +78 -6
- package/dist/v2/index.css +1 -2
- package/dist/v2/index.d.cts +6 -2
- package/dist/v2/index.d.mts +6 -2
- package/dist/v2/index.d.ts +6 -0
- package/dist/v2/index.mjs +8 -3
- package/dist/v2/index.umd.js +7786 -12
- package/dist/v2/index.umd.js.map +1 -0
- package/package.json +66 -39
- package/scripts/scope-preflight.mjs +100 -0
- package/src/components/CopilotListeners.tsx +2 -6
- package/src/components/copilot-provider/__tests__/copilot-messages-key.test.tsx +92 -0
- package/src/components/copilot-provider/copilot-messages.tsx +1 -1
- package/src/components/copilot-provider/copilotkit-props.tsx +1 -1
- package/src/components/copilot-provider/copilotkit.tsx +120 -68
- package/src/context/copilot-messages-context.tsx +1 -1
- package/src/hooks/__tests__/use-coagent-config.test.ts +2 -2
- package/src/hooks/__tests__/use-coagent-state-render.e2e.test.tsx +5 -6
- package/src/hooks/__tests__/use-copilot-chat-internal-connect.test.tsx +242 -0
- package/src/hooks/__tests__/use-frontend-tool-available.test.tsx +1 -1
- package/src/hooks/__tests__/use-frontend-tool-remount.e2e.test.tsx +4 -4
- package/src/hooks/index.ts +0 -1
- package/src/hooks/use-agent-nodename.ts +1 -1
- package/src/hooks/use-coagent-state-render-bridge.tsx +1 -4
- package/src/hooks/use-coagent.ts +1 -1
- package/src/hooks/use-configure-chat-suggestions.tsx +2 -2
- package/src/hooks/use-copilot-chat-suggestions.tsx +2 -2
- package/src/hooks/use-copilot-chat_internal.ts +73 -13
- package/src/hooks/use-copilot-readable.ts +1 -1
- package/src/hooks/use-frontend-tool.ts +2 -2
- package/src/hooks/use-human-in-the-loop.ts +2 -2
- package/src/hooks/use-langgraph-interrupt.ts +95 -38
- package/src/hooks/use-lazy-tool-renderer.tsx +1 -1
- package/src/hooks/use-render-tool-call.ts +1 -1
- package/src/lib/copilot-task.ts +1 -1
- package/src/setupTests.ts +18 -14
- package/src/types/interrupt-action.ts +5 -0
- package/src/v2/__tests__/A2UIMessageRenderer.test.tsx +176 -0
- package/src/v2/__tests__/globalSetup.ts +14 -0
- package/src/v2/__tests__/setup.ts +93 -0
- package/src/v2/__tests__/utils/test-helpers.tsx +503 -0
- package/src/v2/a2ui/A2UIMessageRenderer.tsx +206 -0
- package/src/v2/components/CopilotKitInspector.tsx +50 -0
- package/src/v2/components/MCPAppsActivityRenderer.tsx +785 -0
- package/src/v2/components/WildcardToolCallRender.tsx +86 -0
- package/src/v2/components/__tests__/license-warning-banner.test.tsx +46 -0
- package/src/v2/components/chat/CopilotChat.tsx +433 -0
- package/src/v2/components/chat/CopilotChatAssistantMessage.tsx +375 -0
- package/src/v2/components/chat/CopilotChatAudioRecorder.tsx +350 -0
- package/src/v2/components/chat/CopilotChatInput.tsx +1302 -0
- package/src/v2/components/chat/CopilotChatMessageView.tsx +561 -0
- package/src/v2/components/chat/CopilotChatReasoningMessage.tsx +252 -0
- package/src/v2/components/chat/CopilotChatSuggestionPill.tsx +59 -0
- package/src/v2/components/chat/CopilotChatSuggestionView.tsx +133 -0
- package/src/v2/components/chat/CopilotChatToggleButton.tsx +171 -0
- package/src/v2/components/chat/CopilotChatToolCallsView.tsx +40 -0
- package/src/v2/components/chat/CopilotChatUserMessage.tsx +388 -0
- package/src/v2/components/chat/CopilotChatView.tsx +598 -0
- package/src/v2/components/chat/CopilotModalHeader.tsx +129 -0
- package/src/v2/components/chat/CopilotPopup.tsx +81 -0
- package/src/v2/components/chat/CopilotPopupView.tsx +317 -0
- package/src/v2/components/chat/CopilotSidebar.tsx +76 -0
- package/src/v2/components/chat/CopilotSidebarView.tsx +255 -0
- package/src/v2/components/chat/__tests__/CopilotChat.e2e.test.tsx +1113 -0
- package/src/v2/components/chat/__tests__/CopilotChat.onError.test.tsx +73 -0
- package/src/v2/components/chat/__tests__/CopilotChat.slots.e2e.test.tsx +432 -0
- package/src/v2/components/chat/__tests__/CopilotChatActivityRendering.e2e.test.tsx +150 -0
- package/src/v2/components/chat/__tests__/CopilotChatAssistantMessage.slots.e2e.test.tsx +624 -0
- package/src/v2/components/chat/__tests__/CopilotChatAssistantMessage.test.tsx +702 -0
- package/src/v2/components/chat/__tests__/CopilotChatCssClasses.test.tsx +107 -0
- package/src/v2/components/chat/__tests__/CopilotChatInput.slots.e2e.test.tsx +929 -0
- package/src/v2/components/chat/__tests__/CopilotChatInput.test.tsx +986 -0
- package/src/v2/components/chat/__tests__/CopilotChatMessageView.slots.e2e.test.tsx +1004 -0
- package/src/v2/components/chat/__tests__/CopilotChatMessageView.test.tsx +169 -0
- package/src/v2/components/chat/__tests__/CopilotChatSuggestionView.slots.e2e.test.tsx +530 -0
- package/src/v2/components/chat/__tests__/CopilotChatToolRendering.e2e.test.tsx +785 -0
- package/src/v2/components/chat/__tests__/CopilotChatToolRerenders.e2e.test.tsx +2416 -0
- package/src/v2/components/chat/__tests__/CopilotChatUserMessage.slots.e2e.test.tsx +621 -0
- package/src/v2/components/chat/__tests__/CopilotChatView.onClick.e2e.test.tsx +853 -0
- package/src/v2/components/chat/__tests__/CopilotChatView.slots.e2e.test.tsx +1050 -0
- package/src/v2/components/chat/__tests__/CopilotModalHeader.slots.e2e.test.tsx +484 -0
- package/src/v2/components/chat/__tests__/CopilotPopupView.slots.e2e.test.tsx +612 -0
- package/src/v2/components/chat/__tests__/CopilotSidebarView.slots.e2e.test.tsx +502 -0
- package/src/v2/components/chat/__tests__/MCPAppsActivityRenderer.e2e.test.tsx +1027 -0
- package/src/v2/components/chat/__tests__/setup.ts +1 -0
- package/src/v2/components/chat/index.ts +79 -0
- package/src/v2/components/index.ts +7 -0
- package/src/v2/components/license-warning-banner.tsx +198 -0
- package/src/v2/components/ui/button.tsx +123 -0
- package/src/v2/components/ui/dropdown-menu.tsx +258 -0
- package/src/v2/components/ui/tooltip.tsx +60 -0
- package/src/v2/hooks/__tests__/standard-schema-types.test.tsx +152 -0
- package/src/v2/hooks/__tests__/standard-schema.test.tsx +282 -0
- package/src/v2/hooks/__tests__/use-agent-context-timing.e2e.test.tsx +140 -0
- package/src/v2/hooks/__tests__/use-agent-context.test.tsx +401 -0
- package/src/v2/hooks/__tests__/use-agent-error-state.test.tsx +44 -0
- package/src/v2/hooks/__tests__/use-agent-stability.test.tsx +205 -0
- package/src/v2/hooks/__tests__/use-agent-thread-isolation.test.tsx +327 -0
- package/src/v2/hooks/__tests__/use-agent-throttle.test.tsx +728 -0
- package/src/v2/hooks/__tests__/use-agent.e2e.test.tsx +159 -0
- package/src/v2/hooks/__tests__/use-component.test.tsx +123 -0
- package/src/v2/hooks/__tests__/use-configure-suggestions.e2e.test.tsx +696 -0
- package/src/v2/hooks/__tests__/use-default-render-tool.test.tsx +153 -0
- package/src/v2/hooks/__tests__/use-frontend-tool-available.test.tsx +167 -0
- package/src/v2/hooks/__tests__/use-frontend-tool.e2e.test.tsx +2148 -0
- package/src/v2/hooks/__tests__/use-human-in-the-loop.e2e.test.tsx +1261 -0
- package/src/v2/hooks/__tests__/use-interrupt.test.tsx +397 -0
- package/src/v2/hooks/__tests__/use-katex-styles.test.tsx +56 -0
- package/src/v2/hooks/__tests__/use-keyboard-height.test.tsx +192 -0
- package/src/v2/hooks/__tests__/use-render-tool.test.tsx +259 -0
- package/src/v2/hooks/__tests__/use-suggestions.e2e.test.tsx +524 -0
- package/src/v2/hooks/__tests__/use-threads.test.tsx +433 -0
- package/src/v2/hooks/__tests__/zod-regression.test.tsx +311 -0
- package/src/v2/hooks/index.ts +18 -0
- package/src/v2/hooks/use-agent-context.tsx +45 -0
- package/src/v2/hooks/use-agent.tsx +358 -0
- package/src/v2/hooks/use-component.tsx +89 -0
- package/src/v2/hooks/use-configure-suggestions.tsx +187 -0
- package/src/v2/hooks/use-default-render-tool.tsx +254 -0
- package/src/v2/hooks/use-frontend-tool.tsx +43 -0
- package/src/v2/hooks/use-human-in-the-loop.tsx +81 -0
- package/src/v2/hooks/use-interrupt.tsx +305 -0
- package/src/v2/hooks/use-keyboard-height.tsx +67 -0
- package/src/v2/hooks/use-render-activity-message.tsx +73 -0
- package/src/v2/hooks/use-render-custom-messages.tsx +98 -0
- package/src/v2/hooks/use-render-tool-call.tsx +175 -0
- package/src/v2/hooks/use-render-tool.tsx +181 -0
- package/src/v2/hooks/use-suggestions.tsx +91 -0
- package/src/v2/hooks/use-threads.tsx +256 -0
- package/src/v2/hooks/useKatexStyles.ts +27 -0
- package/src/v2/index.css +1 -1
- package/src/v2/index.ts +21 -2
- package/src/v2/lib/__tests__/completePartialMarkdown.test.ts +495 -0
- package/src/v2/lib/__tests__/renderSlot.test.tsx +588 -0
- package/src/v2/lib/react-core.ts +156 -0
- package/src/v2/lib/slots.tsx +143 -0
- package/src/v2/lib/transcription-client.ts +184 -0
- package/src/v2/lib/utils.ts +8 -0
- package/src/v2/providers/CopilotChatConfigurationProvider.tsx +162 -0
- package/src/v2/providers/CopilotKitProvider.tsx +600 -0
- package/src/v2/providers/__tests__/CopilotChatConfigurationProvider.test.tsx +546 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.license.test.tsx +101 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.onError.test.tsx +69 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.renderCustomMessages.e2e.test.tsx +881 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.stability.test.tsx +740 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.test.tsx +642 -0
- package/src/v2/providers/__tests__/CopilotKitProvider.wildcard.test.tsx +294 -0
- package/src/v2/providers/index.ts +14 -0
- package/src/v2/styles/globals.css +231 -0
- package/src/v2/types/__tests__/defineToolCallRenderer.test.tsx +525 -0
- package/src/v2/types/defineToolCallRenderer.ts +65 -0
- package/src/v2/types/frontend-tool.ts +8 -0
- package/src/v2/types/human-in-the-loop.ts +33 -0
- package/src/v2/types/index.ts +7 -0
- package/src/v2/types/interrupt.ts +15 -0
- package/src/v2/types/react-activity-message-renderer.ts +27 -0
- package/src/v2/types/react-custom-message-renderer.ts +17 -0
- package/src/v2/types/react-tool-call-renderer.ts +32 -0
- package/tsdown.config.ts +34 -10
- package/vitest.config.mjs +4 -3
- package/LICENSE +0 -21
- package/dist/v2/index.css.map +0 -1
- package/src/hooks/use-langgraph-interrupt-render.ts +0 -147
package/CHANGELOG.md
CHANGED
|
@@ -1,27 +1,472 @@
|
|
|
1
1
|
# ui
|
|
2
2
|
|
|
3
|
-
## 0.0.0-main-
|
|
3
|
+
## 0.0.0-main-20260403195251
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 0f6a61c: fix: add React keys to CopilotMessages children to suppress "unique key prop" warning
|
|
12
|
+
- 1ceb963: fix: respect defaultOpen={false} in CopilotSidebar and CopilotPopup
|
|
13
|
+
- 1ceb963: fix: race condition in RunHandler.runAgent() causes dropped runs
|
|
14
|
+
- 1ceb963: fix: address scroll bar styling when using mouse-wheel
|
|
15
|
+
- 53e5669: Fix multiple CopilotChat components with different threadIds sharing message state. The useAgent hook now creates per-thread agent clones when threadId is provided, ensuring each chat instance maintains isolated messages and state.
|
|
16
|
+
- 52a9322: Fixing license warnings, barrel export and typing
|
|
17
|
+
- c341ed2: chore: kick CI to verify publish pipeline
|
|
18
|
+
- Updated dependencies [1ceb963]
|
|
19
|
+
- Updated dependencies [1ceb963]
|
|
20
|
+
- Updated dependencies [52a9322]
|
|
21
|
+
- Updated dependencies [1ceb963]
|
|
22
|
+
- @copilotkit/a2ui-renderer@0.0.0-main-20260403195251
|
|
23
|
+
- @copilotkit/core@0.0.0-main-20260403195251
|
|
24
|
+
- @copilotkit/runtime-client-gql@0.0.0-main-20260403195251
|
|
25
|
+
- @copilotkit/shared@0.0.0-main-20260403195251
|
|
26
|
+
- @copilotkit/web-inspector@0.0.0-main-20260403195251
|
|
27
|
+
|
|
28
|
+
## 1.55.0-next.8
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- 0f6a61c: fix: add React keys to CopilotMessages children to suppress "unique key prop" warning
|
|
33
|
+
- 53e5669: Fix multiple CopilotChat components with different threadIds sharing message state. The useAgent hook now creates per-thread agent clones when threadId is provided, ensuring each chat instance maintains isolated messages and state.
|
|
34
|
+
- @copilotkit/a2ui-renderer@1.55.0-next.8
|
|
35
|
+
- @copilotkit/core@1.55.0-next.8
|
|
36
|
+
- @copilotkit/runtime-client-gql@1.55.0-next.8
|
|
37
|
+
- @copilotkit/shared@1.55.0-next.8
|
|
38
|
+
- @copilotkit/web-inspector@1.55.0-next.8
|
|
39
|
+
|
|
40
|
+
## 1.55.0-next.7
|
|
41
|
+
|
|
42
|
+
### Minor Changes
|
|
43
|
+
|
|
44
|
+
- 1ceb963: refactor: consolidate V1/V2 packages into flat @copilotkit/\* structure
|
|
45
|
+
|
|
46
|
+
### Patch Changes
|
|
47
|
+
|
|
48
|
+
- Updated dependencies [1ceb963]
|
|
49
|
+
- @copilotkit/a2ui-renderer@1.55.0-next.7
|
|
50
|
+
- @copilotkit/core@1.55.0-next.7
|
|
51
|
+
- @copilotkit/runtime-client-gql@1.55.0-next.7
|
|
52
|
+
- @copilotkit/shared@1.55.0-next.7
|
|
53
|
+
- @copilotkit/web-inspector@1.55.0-next.7
|
|
54
|
+
|
|
55
|
+
## 1.54.1-next.6
|
|
56
|
+
|
|
57
|
+
### Patch Changes
|
|
58
|
+
|
|
59
|
+
- Updated dependencies [13584d0]
|
|
60
|
+
- @copilotkitnext/react@1.54.1-next.6
|
|
61
|
+
- @copilotkit/runtime-client-gql@1.54.1-next.6
|
|
62
|
+
- @copilotkit/shared@1.54.1-next.6
|
|
63
|
+
- @copilotkitnext/core@1.54.1-next.6
|
|
64
|
+
|
|
65
|
+
## 1.54.1-next.5
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- @copilotkit/runtime-client-gql@1.54.1-next.5
|
|
70
|
+
- @copilotkit/shared@1.54.1-next.5
|
|
71
|
+
- @copilotkitnext/core@1.54.1-next.5
|
|
72
|
+
- @copilotkitnext/react@1.54.1-next.5
|
|
73
|
+
|
|
74
|
+
## 1.54.1-next.4
|
|
75
|
+
|
|
76
|
+
### Patch Changes
|
|
77
|
+
|
|
78
|
+
- 8113dba: fix: race condition in RunHandler.runAgent() causes dropped runs
|
|
79
|
+
- Updated dependencies [8113dba]
|
|
80
|
+
- @copilotkitnext/core@1.54.1-next.4
|
|
81
|
+
- @copilotkitnext/react@1.54.1-next.4
|
|
82
|
+
- @copilotkit/runtime-client-gql@1.54.1-next.4
|
|
83
|
+
- @copilotkit/shared@1.54.1-next.4
|
|
84
|
+
|
|
85
|
+
## 1.54.1-next.3
|
|
86
|
+
|
|
87
|
+
### Patch Changes
|
|
88
|
+
|
|
89
|
+
- Updated dependencies [9e6a09f]
|
|
90
|
+
- @copilotkitnext/react@1.54.1-next.3
|
|
91
|
+
- @copilotkit/runtime-client-gql@1.54.1-next.3
|
|
92
|
+
- @copilotkit/shared@1.54.1-next.3
|
|
93
|
+
- @copilotkitnext/core@1.54.1-next.3
|
|
94
|
+
|
|
95
|
+
## 1.54.1-next.2
|
|
96
|
+
|
|
97
|
+
### Patch Changes
|
|
98
|
+
|
|
99
|
+
- @copilotkit/runtime-client-gql@1.54.1-next.2
|
|
100
|
+
- @copilotkit/shared@1.54.1-next.2
|
|
101
|
+
- @copilotkitnext/core@1.54.1-next.2
|
|
102
|
+
- @copilotkitnext/react@1.54.1-next.2
|
|
103
|
+
|
|
104
|
+
## 1.54.1-next.1
|
|
105
|
+
|
|
106
|
+
### Patch Changes
|
|
107
|
+
|
|
108
|
+
- Updated dependencies [d423001]
|
|
109
|
+
- @copilotkitnext/core@1.54.1-next.1
|
|
110
|
+
- @copilotkitnext/react@1.54.1-next.1
|
|
111
|
+
- @copilotkit/runtime-client-gql@1.54.1-next.1
|
|
112
|
+
- @copilotkit/shared@1.54.1-next.1
|
|
113
|
+
|
|
114
|
+
## 1.54.1-next.0
|
|
115
|
+
|
|
116
|
+
### Patch Changes
|
|
117
|
+
|
|
118
|
+
- @copilotkit/runtime-client-gql@1.54.1-next.0
|
|
119
|
+
- @copilotkit/shared@1.54.1-next.0
|
|
120
|
+
- @copilotkitnext/core@1.54.1-next.0
|
|
121
|
+
- @copilotkitnext/react@1.54.1-next.0
|
|
122
|
+
|
|
123
|
+
## 1.54.0
|
|
124
|
+
|
|
125
|
+
### Minor Changes
|
|
126
|
+
|
|
127
|
+
- fa0d1cd: Add support for Standard Schema (instead of just Zod)
|
|
128
|
+
|
|
129
|
+
### Patch Changes
|
|
130
|
+
|
|
131
|
+
- c80498e: feat(core): add copilotkit.runTool() for programmatic tool execution
|
|
132
|
+
- af11b1e: Fixed hook render registrations lost under React Strict Mode.
|
|
133
|
+
- Updated dependencies [eb1e0bf]
|
|
134
|
+
- Updated dependencies [3780c6a]
|
|
135
|
+
- Updated dependencies [6e0cddf]
|
|
136
|
+
- Updated dependencies [fa0d1cd]
|
|
137
|
+
- Updated dependencies [c80498e]
|
|
138
|
+
- Updated dependencies [d746e4f]
|
|
139
|
+
- Updated dependencies [f1571ef]
|
|
140
|
+
- @copilotkitnext/core@1.54.0
|
|
141
|
+
- @copilotkitnext/react@1.54.0
|
|
142
|
+
- @copilotkit/runtime-client-gql@1.54.0
|
|
143
|
+
- @copilotkit/shared@1.54.0
|
|
144
|
+
|
|
145
|
+
## 1.54.0-next.9
|
|
146
|
+
|
|
147
|
+
### Patch Changes
|
|
148
|
+
|
|
149
|
+
- Updated dependencies [3780c6a]
|
|
150
|
+
- @copilotkitnext/core@1.54.0-next.9
|
|
151
|
+
- @copilotkitnext/react@1.54.0-next.9
|
|
152
|
+
- @copilotkit/runtime-client-gql@1.54.0-next.9
|
|
153
|
+
- @copilotkit/shared@1.54.0-next.9
|
|
154
|
+
|
|
155
|
+
## 1.54.0-next.8
|
|
156
|
+
|
|
157
|
+
### Patch Changes
|
|
158
|
+
|
|
159
|
+
- Updated dependencies [f1571ef]
|
|
160
|
+
- @copilotkitnext/core@1.54.0-next.8
|
|
161
|
+
- @copilotkitnext/react@1.54.0-next.8
|
|
162
|
+
- @copilotkit/runtime-client-gql@1.54.0-next.8
|
|
163
|
+
- @copilotkit/shared@1.54.0-next.8
|
|
164
|
+
|
|
165
|
+
## 1.54.0-next.7
|
|
166
|
+
|
|
167
|
+
### Patch Changes
|
|
168
|
+
|
|
169
|
+
- Updated dependencies [eb1e0bf]
|
|
170
|
+
- @copilotkitnext/core@1.54.0-next.7
|
|
171
|
+
- @copilotkitnext/react@1.54.0-next.7
|
|
172
|
+
- @copilotkit/runtime-client-gql@1.54.0-next.7
|
|
173
|
+
- @copilotkit/shared@1.54.0-next.7
|
|
174
|
+
|
|
175
|
+
## 1.54.0-next.6
|
|
176
|
+
|
|
177
|
+
### Patch Changes
|
|
178
|
+
|
|
179
|
+
- c80498e: feat(core): add copilotkit.runTool() for programmatic tool execution
|
|
180
|
+
- Updated dependencies [c80498e]
|
|
181
|
+
- @copilotkitnext/core@1.54.0-next.6
|
|
182
|
+
- @copilotkitnext/react@1.54.0-next.6
|
|
183
|
+
- @copilotkit/runtime-client-gql@1.54.0-next.6
|
|
184
|
+
- @copilotkit/shared@1.54.0-next.6
|
|
185
|
+
|
|
186
|
+
## 1.54.0-next.5
|
|
187
|
+
|
|
188
|
+
### Patch Changes
|
|
189
|
+
|
|
190
|
+
- @copilotkitnext/react@1.54.0-next.5
|
|
191
|
+
- @copilotkit/runtime-client-gql@1.54.0-next.5
|
|
192
|
+
- @copilotkit/shared@1.54.0-next.5
|
|
193
|
+
- @copilotkitnext/core@1.54.0-next.5
|
|
194
|
+
|
|
195
|
+
## 1.54.0-next.4
|
|
196
|
+
|
|
197
|
+
### Patch Changes
|
|
198
|
+
|
|
199
|
+
- af11b1e: Fixed hook render registrations lost under React Strict Mode.
|
|
200
|
+
- @copilotkit/runtime-client-gql@1.54.0-next.4
|
|
201
|
+
- @copilotkit/shared@1.54.0-next.4
|
|
202
|
+
- @copilotkitnext/core@1.54.0-next.4
|
|
203
|
+
- @copilotkitnext/react@1.54.0-next.4
|
|
204
|
+
|
|
205
|
+
## 1.54.0-next.3
|
|
206
|
+
|
|
207
|
+
### Minor Changes
|
|
208
|
+
|
|
209
|
+
- fa0d1cd: Add support for Standard Schema (instead of just Zod)
|
|
210
|
+
|
|
211
|
+
### Patch Changes
|
|
212
|
+
|
|
213
|
+
- Updated dependencies [fa0d1cd]
|
|
214
|
+
- @copilotkitnext/react@1.54.0-next.3
|
|
215
|
+
- @copilotkit/runtime-client-gql@1.54.0-next.3
|
|
216
|
+
- @copilotkit/shared@1.54.0-next.3
|
|
217
|
+
- @copilotkitnext/core@1.54.0-next.3
|
|
218
|
+
|
|
219
|
+
## 1.53.1-next.2
|
|
220
|
+
|
|
221
|
+
### Patch Changes
|
|
222
|
+
|
|
223
|
+
- Updated dependencies [d746e4f]
|
|
224
|
+
- @copilotkit/react@1.53.1-next.2
|
|
225
|
+
- @copilotkit/runtime-client-gql@1.53.1-next.2
|
|
226
|
+
- @copilotkit/shared@1.53.1-next.2
|
|
227
|
+
- @copilotkit/core@1.53.1-next.2
|
|
228
|
+
|
|
229
|
+
## 1.53.1-next.1
|
|
230
|
+
|
|
231
|
+
### Patch Changes
|
|
232
|
+
|
|
233
|
+
- @copilotkit/runtime-client-gql@1.53.1-next.1
|
|
234
|
+
- @copilotkit/shared@1.53.1-next.1
|
|
235
|
+
- @copilotkit/core@1.53.1-next.1
|
|
236
|
+
- @copilotkit/react@1.53.1-next.1
|
|
237
|
+
|
|
238
|
+
## 1.53.1-next.0
|
|
239
|
+
|
|
240
|
+
### Patch Changes
|
|
241
|
+
|
|
242
|
+
- Updated dependencies [6e0cddf]
|
|
243
|
+
- @copilotkit/react@1.53.1-next.0
|
|
244
|
+
- @copilotkit/runtime-client-gql@1.53.1-next.0
|
|
245
|
+
- @copilotkit/shared@1.53.1-next.0
|
|
246
|
+
- @copilotkit/core@1.53.1-next.0
|
|
247
|
+
|
|
248
|
+
## 1.53.0
|
|
249
|
+
|
|
250
|
+
### Patch Changes
|
|
251
|
+
|
|
252
|
+
- 1510f64: feat: enable mcp and a2ui middleware directly from copilotkit runtime
|
|
253
|
+
- f1eaa4c: Fixing a regression with setModalOpen
|
|
254
|
+
- ac31331: - Prevents error propagating out of CPK when an agent runtime is defined but not reachable
|
|
255
|
+
- Adds an onError callback to CopilotChat and CopilotKitProvider
|
|
256
|
+
- Updated dependencies [1510f64]
|
|
257
|
+
- Updated dependencies [bf1fc6f]
|
|
258
|
+
- @copilotkit/shared@1.53.0
|
|
259
|
+
- @copilotkit/core@1.53.0
|
|
260
|
+
- @copilotkit/react@1.53.0
|
|
261
|
+
- @copilotkit/runtime-client-gql@1.53.0
|
|
262
|
+
|
|
263
|
+
## 1.53.0-next.6
|
|
264
|
+
|
|
265
|
+
### Patch Changes
|
|
266
|
+
|
|
267
|
+
- @copilotkit/runtime-client-gql@1.53.0-next.6
|
|
268
|
+
- @copilotkit/shared@1.53.0-next.6
|
|
269
|
+
- @copilotkit/core@1.53.0-next.6
|
|
270
|
+
- @copilotkit/react@1.53.0-next.6
|
|
271
|
+
|
|
272
|
+
## 1.53.0-next.5
|
|
273
|
+
|
|
274
|
+
### Patch Changes
|
|
275
|
+
|
|
276
|
+
- @copilotkit/runtime-client-gql@1.53.0-next.5
|
|
277
|
+
- @copilotkit/shared@1.53.0-next.5
|
|
278
|
+
- @copilotkit/core@1.53.0-next.5
|
|
279
|
+
- @copilotkit/react@1.53.0-next.5
|
|
280
|
+
|
|
281
|
+
## 1.52.2-next.4
|
|
282
|
+
|
|
283
|
+
### Patch Changes
|
|
284
|
+
|
|
285
|
+
- ac31331: - Prevents error propagating out of CPK when an agent runtime is defined but not reachable
|
|
286
|
+
- Adds an onError callback to CopilotChat and CopilotKitProvider
|
|
287
|
+
- @copilotkit/runtime-client-gql@1.52.2-next.4
|
|
288
|
+
- @copilotkit/shared@1.52.2-next.4
|
|
289
|
+
- @copilotkit/core@1.52.2-next.4
|
|
290
|
+
- @copilotkit/react@1.52.2-next.4
|
|
291
|
+
|
|
292
|
+
## 1.52.2-next.3
|
|
293
|
+
|
|
294
|
+
### Patch Changes
|
|
295
|
+
|
|
296
|
+
- 1510f64: feat: enable mcp and a2ui middleware directly from copilotkit runtime
|
|
297
|
+
- Updated dependencies [1510f64]
|
|
298
|
+
- @copilotkit/shared@1.52.2-next.3
|
|
299
|
+
- @copilotkit/core@1.52.2-next.3
|
|
300
|
+
- @copilotkit/react@1.52.2-next.3
|
|
301
|
+
- @copilotkit/runtime-client-gql@1.52.2-next.3
|
|
302
|
+
|
|
303
|
+
## 1.52.2-next.2
|
|
304
|
+
|
|
305
|
+
### Patch Changes
|
|
306
|
+
|
|
307
|
+
- @copilotkit/runtime-client-gql@1.52.2-next.2
|
|
308
|
+
- @copilotkit/shared@1.52.2-next.2
|
|
309
|
+
- @copilotkit/core@1.52.2-next.2
|
|
310
|
+
- @copilotkit/react@1.52.2-next.2
|
|
311
|
+
|
|
312
|
+
## 1.52.2-next.1
|
|
313
|
+
|
|
314
|
+
### Patch Changes
|
|
315
|
+
|
|
316
|
+
- Updated dependencies [bf1fc6f]
|
|
317
|
+
- @copilotkit/shared@1.52.2-next.1
|
|
318
|
+
- @copilotkit/runtime-client-gql@1.52.2-next.1
|
|
319
|
+
- @copilotkit/core@1.52.2-next.1
|
|
320
|
+
- @copilotkit/react@1.52.2-next.1
|
|
321
|
+
|
|
322
|
+
## 1.52.2-next.0
|
|
323
|
+
|
|
324
|
+
### Patch Changes
|
|
325
|
+
|
|
326
|
+
- f1eaa4c: Fixing a regression with setModalOpen
|
|
327
|
+
- @copilotkit/runtime-client-gql@1.52.2-next.0
|
|
328
|
+
- @copilotkit/shared@1.52.2-next.0
|
|
329
|
+
- @copilotkit/core@1.52.2-next.0
|
|
330
|
+
- @copilotkit/react@1.52.2-next.0
|
|
331
|
+
|
|
332
|
+
## 1.52.1
|
|
333
|
+
|
|
334
|
+
### Patch Changes
|
|
335
|
+
|
|
336
|
+
- b555ac4: fix(react-core): allow overriding useSingleEndpoint in CopilotKit provider
|
|
337
|
+
|
|
338
|
+
The V1 `<CopilotKit>` provider previously hardcoded `useSingleEndpoint={true}` when wrapping the V2 provider, preventing users from opting into REST transport mode. The prop is now passed through from user config, defaulting to `true` to preserve backward compatibility.
|
|
339
|
+
|
|
340
|
+
- Updated dependencies [bbdf67d]
|
|
341
|
+
- @copilotkit/react@1.52.1
|
|
342
|
+
- @copilotkit/runtime-client-gql@1.52.1
|
|
343
|
+
- @copilotkit/shared@1.52.1
|
|
344
|
+
- @copilotkit/core@1.52.1
|
|
345
|
+
|
|
346
|
+
## 1.52.1-next.1
|
|
347
|
+
|
|
348
|
+
### Patch Changes
|
|
349
|
+
|
|
350
|
+
- b555ac4: fix(react-core): allow overriding useSingleEndpoint in CopilotKit provider
|
|
351
|
+
|
|
352
|
+
The V1 `<CopilotKit>` provider previously hardcoded `useSingleEndpoint={true}` when wrapping the V2 provider, preventing users from opting into REST transport mode. The prop is now passed through from user config, defaulting to `true` to preserve backward compatibility.
|
|
353
|
+
|
|
354
|
+
- @copilotkit/runtime-client-gql@1.52.1-next.1
|
|
355
|
+
- @copilotkit/shared@1.52.1-next.1
|
|
356
|
+
- @copilotkit/core@1.52.1-next.1
|
|
357
|
+
- @copilotkit/react@1.52.1-next.1
|
|
358
|
+
|
|
359
|
+
## 1.52.1-next.0
|
|
360
|
+
|
|
361
|
+
### Patch Changes
|
|
362
|
+
|
|
363
|
+
- Updated dependencies [bbdf67d]
|
|
364
|
+
- @copilotkit/react@1.52.1-next.0
|
|
365
|
+
- @copilotkit/runtime-client-gql@1.52.1-next.0
|
|
366
|
+
- @copilotkit/shared@1.52.1-next.0
|
|
367
|
+
- @copilotkit/core@1.52.1-next.0
|
|
368
|
+
|
|
369
|
+
## 1.52.0
|
|
370
|
+
|
|
371
|
+
### Minor Changes
|
|
372
|
+
|
|
373
|
+
- 6dd6c84: Adding new v2 features:
|
|
374
|
+
|
|
375
|
+
- useComponent
|
|
376
|
+
- useRenderTool
|
|
377
|
+
- useDefaultRenderTool
|
|
378
|
+
|
|
379
|
+
Also, fixing issues with styles not being
|
|
380
|
+
properly scoped for tailwind.
|
|
4
381
|
|
|
5
382
|
### Patch Changes
|
|
6
383
|
|
|
384
|
+
- d77f347: Added in the useInterrupt hook
|
|
385
|
+
- 2007f8b: feat: useComponent improvements
|
|
7
386
|
- ef0f539: Add reasoning support and default components for reasoning messages
|
|
8
387
|
- 412965a: Introducing available prop to useFrontendTool()
|
|
388
|
+
- 5f941db: Prevent CPK styles from polluting user app
|
|
9
389
|
- Updated dependencies [593859f]
|
|
390
|
+
- Updated dependencies [d77f347]
|
|
391
|
+
- Updated dependencies [2007f8b]
|
|
10
392
|
- Updated dependencies [ef0f539]
|
|
11
|
-
|
|
12
|
-
- @copilotkit/
|
|
13
|
-
- @
|
|
14
|
-
- @copilotkit/
|
|
393
|
+
- Updated dependencies [942d397]
|
|
394
|
+
- @copilotkit/react@1.52.0
|
|
395
|
+
- @copilotkit/core@1.52.0
|
|
396
|
+
- @copilotkit/shared@1.52.0
|
|
397
|
+
- @copilotkit/runtime-client-gql@1.52.0
|
|
398
|
+
|
|
399
|
+
## 1.52.0-next.8
|
|
400
|
+
|
|
401
|
+
### Patch Changes
|
|
402
|
+
|
|
403
|
+
- Updated dependencies [942d397]
|
|
404
|
+
- @copilotkit/react@1.52.0-next.8
|
|
405
|
+
- @copilotkit/runtime-client-gql@1.52.0-next.8
|
|
406
|
+
- @copilotkit/shared@1.52.0-next.8
|
|
407
|
+
- @copilotkit/core@1.52.0-next.8
|
|
408
|
+
|
|
409
|
+
## 1.52.0-next.7
|
|
410
|
+
|
|
411
|
+
### Patch Changes
|
|
412
|
+
|
|
413
|
+
- d77f347: Added in the useInterrupt hook
|
|
414
|
+
- Updated dependencies [d77f347]
|
|
415
|
+
- @copilotkit/react@1.52.0-next.7
|
|
416
|
+
- @copilotkit/core@1.52.0-next.7
|
|
417
|
+
- @copilotkit/runtime-client-gql@1.52.0-next.7
|
|
418
|
+
- @copilotkit/shared@1.52.0-next.7
|
|
419
|
+
|
|
420
|
+
## 1.52.0-next.6
|
|
421
|
+
|
|
422
|
+
### Patch Changes
|
|
423
|
+
|
|
424
|
+
- 2007f8b: feat: useComponent improvements
|
|
425
|
+
- 5f941db: Prevent CPK styles from polluting user app
|
|
426
|
+
- Updated dependencies [2007f8b]
|
|
427
|
+
- @copilotkit/react@1.52.0-next.6
|
|
428
|
+
- @copilotkit/runtime-client-gql@1.52.0-next.6
|
|
429
|
+
- @copilotkit/shared@1.52.0-next.6
|
|
430
|
+
- @copilotkit/core@1.52.0-next.6
|
|
431
|
+
|
|
432
|
+
## 1.52.0-next.5
|
|
433
|
+
|
|
434
|
+
### Minor Changes
|
|
435
|
+
|
|
436
|
+
- 6dd6c84: Adding new v2 features:
|
|
437
|
+
|
|
438
|
+
- useComponent
|
|
439
|
+
- useRenderTool
|
|
440
|
+
- useDefaultRenderTool
|
|
441
|
+
|
|
442
|
+
Also, fixing issues with styles not being
|
|
443
|
+
properly scoped for tailwind.
|
|
444
|
+
|
|
445
|
+
### Patch Changes
|
|
446
|
+
|
|
447
|
+
- @copilotkit/runtime-client-gql@1.52.0-next.5
|
|
448
|
+
- @copilotkit/shared@1.52.0-next.5
|
|
449
|
+
- @copilotkit/core@1.52.0-next.5
|
|
450
|
+
- @copilotkit/react@1.52.0-next.5
|
|
451
|
+
|
|
452
|
+
## 1.51.5-next.4
|
|
453
|
+
|
|
454
|
+
### Patch Changes
|
|
455
|
+
|
|
456
|
+
- @copilotkit/runtime-client-gql@1.51.5-next.4
|
|
457
|
+
- @copilotkit/shared@1.51.5-next.4
|
|
458
|
+
- @copilotkit/core@1.51.5-next.4
|
|
459
|
+
- @copilotkit/react@1.51.5-next.4
|
|
15
460
|
|
|
16
461
|
## 1.51.5-next.3
|
|
17
462
|
|
|
18
463
|
### Patch Changes
|
|
19
464
|
|
|
20
465
|
- Updated dependencies [593859f]
|
|
21
|
-
- @
|
|
466
|
+
- @copilotkit/react@1.51.5-next.3
|
|
22
467
|
- @copilotkit/runtime-client-gql@1.51.5-next.3
|
|
23
468
|
- @copilotkit/shared@1.51.5-next.3
|
|
24
|
-
- @
|
|
469
|
+
- @copilotkit/core@1.51.5-next.3
|
|
25
470
|
|
|
26
471
|
## 1.51.5-next.2
|
|
27
472
|
|
|
@@ -29,8 +474,8 @@
|
|
|
29
474
|
|
|
30
475
|
- @copilotkit/runtime-client-gql@1.51.5-next.2
|
|
31
476
|
- @copilotkit/shared@1.51.5-next.2
|
|
32
|
-
- @
|
|
33
|
-
- @
|
|
477
|
+
- @copilotkit/core@1.51.5-next.2
|
|
478
|
+
- @copilotkit/react@1.51.5-next.2
|
|
34
479
|
|
|
35
480
|
## 1.51.5-next.1
|
|
36
481
|
|
|
@@ -39,8 +484,8 @@
|
|
|
39
484
|
- 412965a: Introducing available prop to useFrontendTool()
|
|
40
485
|
- @copilotkit/runtime-client-gql@1.51.5-next.1
|
|
41
486
|
- @copilotkit/shared@1.51.5-next.1
|
|
42
|
-
- @
|
|
43
|
-
- @
|
|
487
|
+
- @copilotkit/core@1.51.5-next.1
|
|
488
|
+
- @copilotkit/react@1.51.5-next.1
|
|
44
489
|
|
|
45
490
|
## 1.51.5-next.0
|
|
46
491
|
|
|
@@ -49,8 +494,8 @@
|
|
|
49
494
|
- ef0f539: Add reasoning support and default components for reasoning messages
|
|
50
495
|
- Updated dependencies [ef0f539]
|
|
51
496
|
- @copilotkit/shared@1.51.5-next.0
|
|
52
|
-
- @
|
|
53
|
-
- @
|
|
497
|
+
- @copilotkit/react@1.51.5-next.0
|
|
498
|
+
- @copilotkit/core@1.51.5-next.0
|
|
54
499
|
- @copilotkit/runtime-client-gql@1.51.5-next.0
|
|
55
500
|
|
|
56
501
|
## 1.51.4
|
|
@@ -64,8 +509,8 @@
|
|
|
64
509
|
- 6b7d8ef: feat(react): apply resource CSP domains to MCP Apps sandbox iframe
|
|
65
510
|
- Updated dependencies [c998f30]
|
|
66
511
|
- Updated dependencies [a3090d5]
|
|
67
|
-
- @
|
|
68
|
-
- @
|
|
512
|
+
- @copilotkit/core@1.51.4
|
|
513
|
+
- @copilotkit/react@1.51.4
|
|
69
514
|
- @copilotkit/runtime-client-gql@1.51.4
|
|
70
515
|
- @copilotkit/shared@1.51.4
|
|
71
516
|
|
|
@@ -76,8 +521,8 @@
|
|
|
76
521
|
- 9bc868d: Frontend tools integration with core in Angular package
|
|
77
522
|
- @copilotkit/runtime-client-gql@1.51.4-next.8
|
|
78
523
|
- @copilotkit/shared@1.51.4-next.8
|
|
79
|
-
- @
|
|
80
|
-
- @
|
|
524
|
+
- @copilotkit/core@1.51.4-next.8
|
|
525
|
+
- @copilotkit/react@1.51.4-next.8
|
|
81
526
|
|
|
82
527
|
## 1.51.4-next.7
|
|
83
528
|
|
|
@@ -86,8 +531,8 @@
|
|
|
86
531
|
- 6b7d8ef: feat(react): apply resource CSP domains to MCP Apps sandbox iframe
|
|
87
532
|
- @copilotkit/runtime-client-gql@1.51.4-next.7
|
|
88
533
|
- @copilotkit/shared@1.51.4-next.7
|
|
89
|
-
- @
|
|
90
|
-
- @
|
|
534
|
+
- @copilotkit/core@1.51.4-next.7
|
|
535
|
+
- @copilotkit/react@1.51.4-next.7
|
|
91
536
|
|
|
92
537
|
## 1.51.4-next.6
|
|
93
538
|
|
|
@@ -95,8 +540,8 @@
|
|
|
95
540
|
|
|
96
541
|
- @copilotkit/runtime-client-gql@1.51.4-next.6
|
|
97
542
|
- @copilotkit/shared@1.51.4-next.6
|
|
98
|
-
- @
|
|
99
|
-
- @
|
|
543
|
+
- @copilotkit/core@1.51.4-next.6
|
|
544
|
+
- @copilotkit/react@1.51.4-next.6
|
|
100
545
|
|
|
101
546
|
## 1.51.4-next.5
|
|
102
547
|
|
|
@@ -104,8 +549,8 @@
|
|
|
104
549
|
|
|
105
550
|
- @copilotkit/runtime-client-gql@1.51.4-next.5
|
|
106
551
|
- @copilotkit/shared@1.51.4-next.5
|
|
107
|
-
- @
|
|
108
|
-
- @
|
|
552
|
+
- @copilotkit/core@1.51.4-next.5
|
|
553
|
+
- @copilotkit/react@1.51.4-next.5
|
|
109
554
|
|
|
110
555
|
## 1.51.4-next.4
|
|
111
556
|
|
|
@@ -113,8 +558,8 @@
|
|
|
113
558
|
|
|
114
559
|
- c998f30: fix(core): prevent tool call results from leaking into wrong thread on thread switch
|
|
115
560
|
- Updated dependencies [c998f30]
|
|
116
|
-
- @
|
|
117
|
-
- @
|
|
561
|
+
- @copilotkit/core@1.51.4-next.4
|
|
562
|
+
- @copilotkit/react@1.51.4-next.4
|
|
118
563
|
- @copilotkit/runtime-client-gql@1.51.4-next.4
|
|
119
564
|
- @copilotkit/shared@1.51.4-next.4
|
|
120
565
|
|
|
@@ -124,10 +569,10 @@
|
|
|
124
569
|
|
|
125
570
|
- 6b9c60e: fix: add dependencies to fix stale state of regenerate method
|
|
126
571
|
- Updated dependencies [a3090d5]
|
|
127
|
-
- @
|
|
572
|
+
- @copilotkit/react@1.51.4-next.3
|
|
128
573
|
- @copilotkit/runtime-client-gql@1.51.4-next.3
|
|
129
574
|
- @copilotkit/shared@1.51.4-next.3
|
|
130
|
-
- @
|
|
575
|
+
- @copilotkit/core@1.51.4-next.3
|
|
131
576
|
|
|
132
577
|
## 1.51.4-next.2
|
|
133
578
|
|
|
@@ -135,8 +580,8 @@
|
|
|
135
580
|
|
|
136
581
|
- @copilotkit/runtime-client-gql@1.51.4-next.2
|
|
137
582
|
- @copilotkit/shared@1.51.4-next.2
|
|
138
|
-
- @
|
|
139
|
-
- @
|
|
583
|
+
- @copilotkit/core@1.51.4-next.2
|
|
584
|
+
- @copilotkit/react@1.51.4-next.2
|
|
140
585
|
|
|
141
586
|
## 1.51.4-next.1
|
|
142
587
|
|
|
@@ -145,8 +590,8 @@
|
|
|
145
590
|
- 12ee574: v2 UI improvements
|
|
146
591
|
- @copilotkit/runtime-client-gql@1.51.4-next.1
|
|
147
592
|
- @copilotkit/shared@1.51.4-next.1
|
|
148
|
-
- @
|
|
149
|
-
- @
|
|
593
|
+
- @copilotkit/core@1.51.4-next.1
|
|
594
|
+
- @copilotkit/react@1.51.4-next.1
|
|
150
595
|
|
|
151
596
|
## 1.51.4-next.0
|
|
152
597
|
|
|
@@ -154,8 +599,8 @@
|
|
|
154
599
|
|
|
155
600
|
- @copilotkit/runtime-client-gql@1.51.4-next.0
|
|
156
601
|
- @copilotkit/shared@1.51.4-next.0
|
|
157
|
-
- @
|
|
158
|
-
- @
|
|
602
|
+
- @copilotkit/core@1.51.4-next.0
|
|
603
|
+
- @copilotkit/react@1.51.4-next.0
|
|
159
604
|
|
|
160
605
|
## 1.51.3
|
|
161
606
|
|
|
@@ -169,8 +614,8 @@
|
|
|
169
614
|
- Updated dependencies [d36fc1e]
|
|
170
615
|
- @copilotkit/shared@1.51.3
|
|
171
616
|
- @copilotkit/runtime-client-gql@1.51.3
|
|
172
|
-
- @
|
|
173
|
-
- @
|
|
617
|
+
- @copilotkit/react@1.51.3
|
|
618
|
+
- @copilotkit/core@1.51.3
|
|
174
619
|
|
|
175
620
|
## 1.51.3-next.8
|
|
176
621
|
|
|
@@ -180,8 +625,8 @@
|
|
|
180
625
|
- Updated dependencies [d36fc1e]
|
|
181
626
|
- @copilotkit/runtime-client-gql@1.51.3-next.8
|
|
182
627
|
- @copilotkit/shared@1.51.3-next.8
|
|
183
|
-
- @
|
|
184
|
-
- @
|
|
628
|
+
- @copilotkit/react@1.51.3-next.8
|
|
629
|
+
- @copilotkit/core@1.51.3-next.8
|
|
185
630
|
|
|
186
631
|
## 1.51.3-next.7
|
|
187
632
|
|
|
@@ -190,8 +635,8 @@
|
|
|
190
635
|
- 3f00a01: Fix issue causing onSubmitMessage to fire after agent response
|
|
191
636
|
- @copilotkit/runtime-client-gql@1.51.3-next.7
|
|
192
637
|
- @copilotkit/shared@1.51.3-next.7
|
|
193
|
-
- @
|
|
194
|
-
- @
|
|
638
|
+
- @copilotkit/core@1.51.3-next.7
|
|
639
|
+
- @copilotkit/react@1.51.3-next.7
|
|
195
640
|
|
|
196
641
|
## 1.51.3-next.6
|
|
197
642
|
|
|
@@ -199,8 +644,8 @@
|
|
|
199
644
|
|
|
200
645
|
- @copilotkit/runtime-client-gql@1.51.3-next.6
|
|
201
646
|
- @copilotkit/shared@1.51.3-next.6
|
|
202
|
-
- @
|
|
203
|
-
- @
|
|
647
|
+
- @copilotkit/core@1.51.3-next.6
|
|
648
|
+
- @copilotkit/react@1.51.3-next.6
|
|
204
649
|
|
|
205
650
|
## 1.51.3-next.5
|
|
206
651
|
|
|
@@ -209,8 +654,8 @@
|
|
|
209
654
|
- e89fe98: fix(v1.x): address issue causing onSubmitMessage to fire after agent response
|
|
210
655
|
- @copilotkit/runtime-client-gql@1.51.3-next.5
|
|
211
656
|
- @copilotkit/shared@1.51.3-next.5
|
|
212
|
-
- @
|
|
213
|
-
- @
|
|
657
|
+
- @copilotkit/core@1.51.3-next.5
|
|
658
|
+
- @copilotkit/react@1.51.3-next.5
|
|
214
659
|
|
|
215
660
|
## 1.51.3-next.4
|
|
216
661
|
|
|
@@ -218,8 +663,8 @@
|
|
|
218
663
|
|
|
219
664
|
- @copilotkit/runtime-client-gql@1.51.3-next.4
|
|
220
665
|
- @copilotkit/shared@1.51.3-next.4
|
|
221
|
-
- @
|
|
222
|
-
- @
|
|
666
|
+
- @copilotkit/core@1.51.3-next.4
|
|
667
|
+
- @copilotkit/react@1.51.3-next.4
|
|
223
668
|
|
|
224
669
|
## 1.51.3-next.3
|
|
225
670
|
|
|
@@ -229,8 +674,8 @@
|
|
|
229
674
|
- Updated dependencies [d655e75]
|
|
230
675
|
- @copilotkit/shared@1.51.3-next.3
|
|
231
676
|
- @copilotkit/runtime-client-gql@1.51.3-next.3
|
|
232
|
-
- @
|
|
233
|
-
- @
|
|
677
|
+
- @copilotkit/core@1.51.3-next.3
|
|
678
|
+
- @copilotkit/react@1.51.3-next.3
|
|
234
679
|
|
|
235
680
|
## 1.51.3-next.2
|
|
236
681
|
|
|
@@ -238,8 +683,8 @@
|
|
|
238
683
|
|
|
239
684
|
- @copilotkit/runtime-client-gql@1.51.3-next.2
|
|
240
685
|
- @copilotkit/shared@1.51.3-next.2
|
|
241
|
-
- @
|
|
242
|
-
- @
|
|
686
|
+
- @copilotkit/core@1.51.3-next.2
|
|
687
|
+
- @copilotkit/react@1.51.3-next.2
|
|
243
688
|
|
|
244
689
|
## 1.51.3-next.1
|
|
245
690
|
|
|
@@ -247,8 +692,8 @@
|
|
|
247
692
|
|
|
248
693
|
- @copilotkit/runtime-client-gql@1.51.3-next.1
|
|
249
694
|
- @copilotkit/shared@1.51.3-next.1
|
|
250
|
-
- @
|
|
251
|
-
- @
|
|
695
|
+
- @copilotkit/core@1.51.3-next.1
|
|
696
|
+
- @copilotkit/react@1.51.3-next.1
|
|
252
697
|
|
|
253
698
|
## 1.51.3-next.0
|
|
254
699
|
|
|
@@ -256,8 +701,8 @@
|
|
|
256
701
|
|
|
257
702
|
- @copilotkit/runtime-client-gql@1.51.3-next.0
|
|
258
703
|
- @copilotkit/shared@1.51.3-next.0
|
|
259
|
-
- @
|
|
260
|
-
- @
|
|
704
|
+
- @copilotkit/core@1.51.3-next.0
|
|
705
|
+
- @copilotkit/react@1.51.3-next.0
|
|
261
706
|
|
|
262
707
|
## 1.51.2
|
|
263
708
|
|
|
@@ -268,8 +713,8 @@
|
|
|
268
713
|
- Updated dependencies [e59d23f]
|
|
269
714
|
- Updated dependencies [e59d23f]
|
|
270
715
|
- @copilotkit/runtime-client-gql@1.51.2
|
|
271
|
-
- @
|
|
272
|
-
- @
|
|
716
|
+
- @copilotkit/react@1.51.2
|
|
717
|
+
- @copilotkit/core@1.51.2
|
|
273
718
|
- @copilotkit/shared@1.51.2
|
|
274
719
|
|
|
275
720
|
## 1.51.2-next.1
|
|
@@ -281,8 +726,8 @@
|
|
|
281
726
|
- Updated dependencies [e59d23f]
|
|
282
727
|
- Updated dependencies [e59d23f]
|
|
283
728
|
- @copilotkit/runtime-client-gql@1.51.2-next.1
|
|
284
|
-
- @
|
|
285
|
-
- @
|
|
729
|
+
- @copilotkit/react@1.51.2-next.1
|
|
730
|
+
- @copilotkit/core@1.51.2-next.1
|
|
286
731
|
- @copilotkit/shared@1.51.2-next.1
|
|
287
732
|
|
|
288
733
|
## 1.51.2-next.0
|
|
@@ -291,8 +736,8 @@
|
|
|
291
736
|
|
|
292
737
|
- @copilotkit/runtime-client-gql@1.51.2-next.0
|
|
293
738
|
- @copilotkit/shared@1.51.2-next.0
|
|
294
|
-
- @
|
|
295
|
-
- @
|
|
739
|
+
- @copilotkit/core@1.51.2-next.0
|
|
740
|
+
- @copilotkit/react@1.51.2-next.0
|
|
296
741
|
|
|
297
742
|
## 1.51.1
|
|
298
743
|
|
|
@@ -300,10 +745,10 @@
|
|
|
300
745
|
|
|
301
746
|
- 329653b: Add support for MCP Apps Middleware
|
|
302
747
|
- Updated dependencies [329653b]
|
|
303
|
-
- @
|
|
748
|
+
- @copilotkit/react@1.51.1
|
|
304
749
|
- @copilotkit/runtime-client-gql@1.51.1
|
|
305
750
|
- @copilotkit/shared@1.51.1
|
|
306
|
-
- @
|
|
751
|
+
- @copilotkit/core@1.51.1
|
|
307
752
|
|
|
308
753
|
## 1.51.0
|
|
309
754
|
|
|
@@ -314,8 +759,8 @@
|
|
|
314
759
|
- Updated dependencies [2afd4e3]
|
|
315
760
|
- @copilotkit/runtime-client-gql@1.51.0
|
|
316
761
|
- @copilotkit/shared@1.51.0
|
|
317
|
-
- @
|
|
318
|
-
- @
|
|
762
|
+
- @copilotkit/react@1.51.0
|
|
763
|
+
- @copilotkit/core@1.51.0
|
|
319
764
|
|
|
320
765
|
## 1.51.0-next.4
|
|
321
766
|
|
|
@@ -323,8 +768,8 @@
|
|
|
323
768
|
|
|
324
769
|
- @copilotkit/runtime-client-gql@1.51.0-next.4
|
|
325
770
|
- @copilotkit/shared@1.51.0-next.4
|
|
326
|
-
- @
|
|
327
|
-
- @
|
|
771
|
+
- @copilotkit/core@1.51.0-next.4
|
|
772
|
+
- @copilotkit/react@1.51.0-next.4
|
|
328
773
|
|
|
329
774
|
## 1.51.0-next.3
|
|
330
775
|
|
|
@@ -332,8 +777,8 @@
|
|
|
332
777
|
|
|
333
778
|
- @copilotkit/runtime-client-gql@1.51.0-next.3
|
|
334
779
|
- @copilotkit/shared@1.51.0-next.3
|
|
335
|
-
- @
|
|
336
|
-
- @
|
|
780
|
+
- @copilotkit/core@1.51.0-next.3
|
|
781
|
+
- @copilotkit/react@1.51.0-next.3
|
|
337
782
|
|
|
338
783
|
## 1.51.0-next.2
|
|
339
784
|
|
|
@@ -342,8 +787,8 @@
|
|
|
342
787
|
- Updated dependencies [2afd4e3]
|
|
343
788
|
- @copilotkit/shared@1.51.0-next.2
|
|
344
789
|
- @copilotkit/runtime-client-gql@1.51.0-next.2
|
|
345
|
-
- @
|
|
346
|
-
- @
|
|
790
|
+
- @copilotkit/core@1.51.0-next.2
|
|
791
|
+
- @copilotkit/react@1.51.0-next.2
|
|
347
792
|
|
|
348
793
|
## 1.51.0-next.1
|
|
349
794
|
|
|
@@ -351,8 +796,8 @@
|
|
|
351
796
|
|
|
352
797
|
- @copilotkit/runtime-client-gql@1.51.0-next.1
|
|
353
798
|
- @copilotkit/shared@1.51.0-next.1
|
|
354
|
-
- @
|
|
355
|
-
- @
|
|
799
|
+
- @copilotkit/core@1.51.0-next.1
|
|
800
|
+
- @copilotkit/react@1.51.0-next.1
|
|
356
801
|
|
|
357
802
|
## 1.50.2-next.0
|
|
358
803
|
|
|
@@ -966,12 +1411,14 @@
|
|
|
966
1411
|
agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.
|
|
967
1412
|
|
|
968
1413
|
As such, the following features have been updated to be completely functional with Headless UI.
|
|
1414
|
+
|
|
969
1415
|
- Generative UI
|
|
970
1416
|
- Suggestions
|
|
971
1417
|
- Agentic Generative UI
|
|
972
1418
|
- Interrupts
|
|
973
1419
|
|
|
974
1420
|
In addition, a variety of QOL changes have been made.
|
|
1421
|
+
|
|
975
1422
|
- New AG-UI based message types
|
|
976
1423
|
- Inline code rendering is fixed
|
|
977
1424
|
|
|
@@ -983,15 +1430,19 @@
|
|
|
983
1430
|
- 6d1de58: - fix: address issues that would cause headless UI breaking changes in the next release
|
|
984
1431
|
|
|
985
1432
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1433
|
+
|
|
986
1434
|
- fix: more fixes addressing breaking changes in new Headless UI
|
|
987
1435
|
|
|
988
1436
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1437
|
+
|
|
989
1438
|
- chore: address linting issues
|
|
990
1439
|
|
|
991
1440
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1441
|
+
|
|
992
1442
|
- chore: fixing branding and docs
|
|
993
1443
|
|
|
994
1444
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1445
|
+
|
|
995
1446
|
- chore: more docs fixing
|
|
996
1447
|
|
|
997
1448
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
@@ -1033,15 +1484,19 @@
|
|
|
1033
1484
|
- 6d1de58: - fix: address issues that would cause headless UI breaking changes in the next release
|
|
1034
1485
|
|
|
1035
1486
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1487
|
+
|
|
1036
1488
|
- fix: more fixes addressing breaking changes in new Headless UI
|
|
1037
1489
|
|
|
1038
1490
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1491
|
+
|
|
1039
1492
|
- chore: address linting issues
|
|
1040
1493
|
|
|
1041
1494
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1495
|
+
|
|
1042
1496
|
- chore: fixing branding and docs
|
|
1043
1497
|
|
|
1044
1498
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1499
|
+
|
|
1045
1500
|
- chore: more docs fixing
|
|
1046
1501
|
|
|
1047
1502
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
@@ -1126,12 +1581,14 @@
|
|
|
1126
1581
|
agentic runtimes we acquired tech-debt that, with this PR, is being alleviated.
|
|
1127
1582
|
|
|
1128
1583
|
As such, the following features have been updated to be completely functional with Headless UI.
|
|
1584
|
+
|
|
1129
1585
|
- Generative UI
|
|
1130
1586
|
- Suggestions
|
|
1131
1587
|
- Agentic Generative UI
|
|
1132
1588
|
- Interrupts
|
|
1133
1589
|
|
|
1134
1590
|
In addition, a variety of QOL changes have been made.
|
|
1591
|
+
|
|
1135
1592
|
- New AG-UI based message types
|
|
1136
1593
|
- Inline code rendering is fixed
|
|
1137
1594
|
|
|
@@ -1197,6 +1654,7 @@
|
|
|
1197
1654
|
- 3f8c575: - fix: use time travel for regeneration of messages
|
|
1198
1655
|
- fix: use a better cutoff for regeneration request
|
|
1199
1656
|
- fac89c2: - refactor: rename onTrace to onError throughout codebase
|
|
1657
|
+
|
|
1200
1658
|
- Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
|
|
1201
1659
|
|
|
1202
1660
|
- e1de032: - fix: synchronously execute renderAndWaitForResponse
|
|
@@ -1289,6 +1747,7 @@
|
|
|
1289
1747
|
works with any combination of action given much more freedom when asking for user input.
|
|
1290
1748
|
|
|
1291
1749
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
1750
|
+
|
|
1292
1751
|
- @copilotkit/runtime-client-gql@1.9.2-next.20
|
|
1293
1752
|
- @copilotkit/shared@1.9.2-next.20
|
|
1294
1753
|
|
|
@@ -1304,6 +1763,7 @@
|
|
|
1304
1763
|
### Patch Changes
|
|
1305
1764
|
|
|
1306
1765
|
- fac89c2: - refactor: rename onTrace to onError throughout codebase
|
|
1766
|
+
|
|
1307
1767
|
- Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
|
|
1308
1768
|
|
|
1309
1769
|
- Updated dependencies [fac89c2]
|
|
@@ -1800,9 +2260,11 @@
|
|
|
1800
2260
|
- c0d3261: - full AWP support
|
|
1801
2261
|
|
|
1802
2262
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
2263
|
+
|
|
1803
2264
|
- refactor: address linter issues with the new pages
|
|
1804
2265
|
|
|
1805
2266
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
2267
|
+
|
|
1806
2268
|
- Merge branch 'mme/acp' into mme/mastra
|
|
1807
2269
|
- add sse example
|
|
1808
2270
|
- Create small-turkeys-agree.md
|
|
@@ -1828,9 +2290,11 @@
|
|
|
1828
2290
|
- c0d3261: - full AWP support
|
|
1829
2291
|
|
|
1830
2292
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
2293
|
+
|
|
1831
2294
|
- refactor: address linter issues with the new pages
|
|
1832
2295
|
|
|
1833
2296
|
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
2297
|
+
|
|
1834
2298
|
- Merge branch 'mme/acp' into mme/mastra
|
|
1835
2299
|
- add sse example
|
|
1836
2300
|
- Create small-turkeys-agree.md
|
|
@@ -2945,6 +3409,7 @@
|
|
|
2945
3409
|
- e16d95e: New prerelease
|
|
2946
3410
|
- 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
|
|
2947
3411
|
- CopilotKit Core:
|
|
3412
|
+
|
|
2948
3413
|
- Improved error messages and overall logs
|
|
2949
3414
|
- `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
|
|
2950
3415
|
- Improved scrolling behavior. It is now possible to scroll up during LLM response generation
|
|
@@ -2952,6 +3417,7 @@
|
|
|
2952
3417
|
- Updated interfaces for better developer ergonomics
|
|
2953
3418
|
|
|
2954
3419
|
CoAgents:
|
|
3420
|
+
|
|
2955
3421
|
- Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
|
|
2956
3422
|
- Support for LangGraph Platform in Remote Endpoints
|
|
2957
3423
|
- LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
|
|
@@ -2959,6 +3425,7 @@
|
|
|
2959
3425
|
- Enhanced state management and message handling
|
|
2960
3426
|
|
|
2961
3427
|
CopilotKid Back-end SDK:
|
|
3428
|
+
|
|
2962
3429
|
- Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
|
|
2963
3430
|
|
|
2964
3431
|
- 8d0144f: bump
|
|
@@ -3333,6 +3800,7 @@ CopilotKid Back-end SDK:
|
|
|
3333
3800
|
### Patch Changes
|
|
3334
3801
|
|
|
3335
3802
|
- inject minified css in bundle
|
|
3803
|
+
|
|
3336
3804
|
- removes the need to import `styles.css` manually
|
|
3337
3805
|
- empty `styles.css` included in the build for backwards compatibility
|
|
3338
3806
|
- uses tsup's `injectStyles` with `postcss` to bundle and minify the CSS, then inject it as a style tag
|
|
@@ -3483,6 +3951,7 @@ CopilotKid Back-end SDK:
|
|
|
3483
3951
|
### Major Changes
|
|
3484
3952
|
|
|
3485
3953
|
- b6a4b6eb: V1.0 Release Candidate
|
|
3954
|
+
|
|
3486
3955
|
- A robust new protocol between the frontend and the Copilot Runtime
|
|
3487
3956
|
- Support for Copilot Cloud
|
|
3488
3957
|
- Generative UI
|