@copilotkit/runtime 0.0.0-main-20250416144141 → 0.0.0-max-runner-auth-20251229210625
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 +1252 -2
- package/README.md +55 -100
- package/__snapshots__/schema/schema.graphql +25 -1
- package/dist/index.d.ts +1509 -24
- package/dist/index.js +2950 -4109
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5567 -84
- package/dist/index.mjs.map +1 -1
- package/dist/langgraph.d.ts +284 -0
- package/dist/langgraph.js +211 -0
- package/dist/langgraph.js.map +1 -0
- package/dist/langgraph.mjs +206 -0
- package/dist/langgraph.mjs.map +1 -0
- package/dist/v2/index.d.ts +2 -0
- package/dist/v2/index.js +22 -0
- package/dist/v2/index.js.map +1 -0
- package/dist/v2/index.mjs +5 -0
- package/dist/v2/index.mjs.map +1 -0
- package/jest.config.js +8 -3
- package/package.json +69 -19
- package/src/agents/langgraph/event-source.ts +38 -31
- package/src/agents/langgraph/events.ts +19 -1
- package/src/graphql/inputs/agent-state.input.ts +1 -1
- package/src/graphql/inputs/copilot-context.input.ts +10 -0
- package/src/graphql/inputs/generate-copilot-response.input.ts +4 -0
- package/src/graphql/inputs/message.input.ts +18 -0
- package/src/graphql/message-conversion/agui-to-gql.test.ts +1263 -0
- package/src/graphql/message-conversion/agui-to-gql.ts +333 -0
- package/src/graphql/message-conversion/gql-to-agui.test.ts +1580 -0
- package/src/graphql/message-conversion/gql-to-agui.ts +278 -0
- package/src/graphql/message-conversion/index.ts +2 -0
- package/src/graphql/message-conversion/roundtrip-conversion.test.ts +526 -0
- package/src/graphql/resolvers/copilot.resolver.ts +100 -42
- package/src/graphql/resolvers/state.resolver.ts +10 -11
- package/src/graphql/types/converted/index.ts +47 -7
- package/src/graphql/types/copilot-response.type.ts +17 -0
- package/src/graphql/types/enums.ts +2 -2
- package/src/graphql/types/message-status.type.ts +3 -1
- package/src/langgraph.ts +1 -0
- package/src/lib/error-messages.ts +200 -0
- package/src/lib/index.ts +42 -0
- package/src/lib/integrations/nest/index.ts +1 -4
- package/src/lib/integrations/nextjs/app-router.ts +13 -15
- package/src/lib/integrations/nextjs/pages-router.ts +5 -15
- package/src/lib/integrations/node-express/index.ts +1 -4
- package/src/lib/integrations/node-http/index.ts +186 -9
- package/src/lib/integrations/shared.ts +44 -1
- package/src/lib/observability.ts +87 -0
- package/src/lib/runtime/__tests__/copilot-runtime-error.test.ts +169 -0
- package/src/lib/runtime/__tests__/mcp-tools-utils.test.ts +464 -0
- package/src/lib/runtime/agent-integrations/langgraph/agent.ts +209 -0
- package/src/lib/runtime/agent-integrations/langgraph/consts.ts +34 -0
- package/src/lib/runtime/agent-integrations/langgraph/index.ts +2 -0
- package/src/lib/runtime/copilot-runtime.ts +441 -950
- package/src/lib/runtime/mcp-tools-utils.ts +150 -13
- package/src/lib/runtime/retry-utils.ts +96 -0
- package/src/lib/runtime/telemetry-agent-runner.ts +139 -0
- package/src/lib/runtime/types.ts +49 -0
- package/src/lib/runtime/utils.ts +87 -0
- package/src/lib/streaming.ts +145 -2
- package/src/lib/telemetry-client.ts +17 -7
- package/src/service-adapters/anthropic/anthropic-adapter.ts +317 -69
- package/src/service-adapters/anthropic/utils.ts +35 -27
- package/src/service-adapters/bedrock/bedrock-adapter.ts +73 -0
- package/src/service-adapters/conversion.ts +10 -0
- package/src/service-adapters/empty/empty-adapter.ts +3 -0
- package/src/service-adapters/events.ts +65 -220
- package/src/service-adapters/experimental/ollama/ollama-adapter.ts +7 -2
- package/src/service-adapters/google/google-genai-adapter.test.ts +104 -0
- package/src/service-adapters/google/google-genai-adapter.ts +54 -5
- package/src/service-adapters/groq/groq-adapter.ts +86 -59
- package/src/service-adapters/index.ts +2 -0
- package/src/service-adapters/langchain/langchain-adapter.ts +8 -3
- package/src/service-adapters/langchain/langserve.ts +2 -1
- package/src/service-adapters/langchain/utils.ts +8 -1
- package/src/service-adapters/openai/openai-adapter.ts +144 -72
- package/src/service-adapters/openai/openai-assistant-adapter.ts +41 -12
- package/src/service-adapters/openai/utils.ts +12 -0
- package/src/service-adapters/service-adapter.ts +3 -0
- package/src/service-adapters/shared/error-utils.ts +61 -0
- package/src/service-adapters/shared/index.ts +1 -0
- package/src/service-adapters/unify/unify-adapter.ts +9 -2
- package/src/utils/failed-response-status-reasons.ts +23 -1
- package/src/v2/index.ts +3 -0
- package/tests/global.d.ts +13 -0
- package/tests/service-adapters/anthropic/allowlist-approach.test.ts +226 -0
- package/tests/service-adapters/anthropic/anthropic-adapter.test.ts +389 -0
- package/tests/service-adapters/openai/allowlist-approach.test.ts +238 -0
- package/tests/service-adapters/openai/openai-adapter.test.ts +301 -0
- package/tests/setup.jest.ts +21 -0
- package/tests/tsconfig.json +10 -0
- package/tsconfig.json +1 -1
- package/tsup.config.ts +6 -2
- package/dist/chunk-2OZAGFV3.mjs +0 -43
- package/dist/chunk-2OZAGFV3.mjs.map +0 -1
- package/dist/chunk-3KFMOJC6.mjs +0 -25
- package/dist/chunk-3KFMOJC6.mjs.map +0 -1
- package/dist/chunk-5BIEM2UU.mjs +0 -152
- package/dist/chunk-5BIEM2UU.mjs.map +0 -1
- package/dist/chunk-D4R6RNSD.mjs +0 -80
- package/dist/chunk-D4R6RNSD.mjs.map +0 -1
- package/dist/chunk-DNI7KA7Y.mjs +0 -1455
- package/dist/chunk-DNI7KA7Y.mjs.map +0 -1
- package/dist/chunk-FHD4JECV.mjs +0 -33
- package/dist/chunk-FHD4JECV.mjs.map +0 -1
- package/dist/chunk-H2VC34X7.mjs +0 -4897
- package/dist/chunk-H2VC34X7.mjs.map +0 -1
- package/dist/chunk-NKMMHPPX.mjs +0 -25
- package/dist/chunk-NKMMHPPX.mjs.map +0 -1
- package/dist/chunk-Q6JA6YY3.mjs +0 -1
- package/dist/chunk-Q6JA6YY3.mjs.map +0 -1
- package/dist/chunk-RTFJTJMA.mjs +0 -129
- package/dist/chunk-RTFJTJMA.mjs.map +0 -1
- package/dist/graphql/types/base/index.d.ts +0 -6
- package/dist/graphql/types/base/index.js +0 -63
- package/dist/graphql/types/base/index.js.map +0 -1
- package/dist/graphql/types/base/index.mjs +0 -8
- package/dist/graphql/types/base/index.mjs.map +0 -1
- package/dist/graphql/types/converted/index.d.ts +0 -2
- package/dist/graphql/types/converted/index.js +0 -187
- package/dist/graphql/types/converted/index.js.map +0 -1
- package/dist/graphql/types/converted/index.mjs +0 -17
- package/dist/graphql/types/converted/index.mjs.map +0 -1
- package/dist/groq-adapter-fb9aa3ab.d.ts +0 -301
- package/dist/index-5bec5424.d.ts +0 -104
- package/dist/langserve-6f7af8d3.d.ts +0 -245
- package/dist/lib/cloud/index.d.ts +0 -6
- package/dist/lib/cloud/index.js +0 -18
- package/dist/lib/cloud/index.js.map +0 -1
- package/dist/lib/cloud/index.mjs +0 -1
- package/dist/lib/cloud/index.mjs.map +0 -1
- package/dist/lib/index.d.ts +0 -21
- package/dist/lib/index.js +0 -6428
- package/dist/lib/index.js.map +0 -1
- package/dist/lib/index.mjs +0 -66
- package/dist/lib/index.mjs.map +0 -1
- package/dist/lib/integrations/index.d.ts +0 -34
- package/dist/lib/integrations/index.js +0 -2794
- package/dist/lib/integrations/index.js.map +0 -1
- package/dist/lib/integrations/index.mjs +0 -36
- package/dist/lib/integrations/index.mjs.map +0 -1
- package/dist/lib/integrations/nest/index.d.ts +0 -15
- package/dist/lib/integrations/nest/index.js +0 -2701
- package/dist/lib/integrations/nest/index.js.map +0 -1
- package/dist/lib/integrations/nest/index.mjs +0 -13
- package/dist/lib/integrations/nest/index.mjs.map +0 -1
- package/dist/lib/integrations/node-express/index.d.ts +0 -15
- package/dist/lib/integrations/node-express/index.js +0 -2701
- package/dist/lib/integrations/node-express/index.js.map +0 -1
- package/dist/lib/integrations/node-express/index.mjs +0 -13
- package/dist/lib/integrations/node-express/index.mjs.map +0 -1
- package/dist/lib/integrations/node-http/index.d.ts +0 -15
- package/dist/lib/integrations/node-http/index.js +0 -2687
- package/dist/lib/integrations/node-http/index.js.map +0 -1
- package/dist/lib/integrations/node-http/index.mjs +0 -12
- package/dist/lib/integrations/node-http/index.mjs.map +0 -1
- package/dist/service-adapters/index.d.ts +0 -85
- package/dist/service-adapters/index.js +0 -1496
- package/dist/service-adapters/index.js.map +0 -1
- package/dist/service-adapters/index.mjs +0 -28
- package/dist/service-adapters/index.mjs.map +0 -1
- package/dist/shared-93687488.d.ts +0 -404
- package/dist/utils/index.d.ts +0 -49
- package/dist/utils/index.js +0 -174
- package/dist/utils/index.js.map +0 -1
- package/dist/utils/index.mjs +0 -12
- package/dist/utils/index.mjs.map +0 -1
- package/src/lib/runtime/__tests__/remote-action-constructors.test.ts +0 -246
- package/src/lib/runtime/agentwire-action.ts +0 -123
- package/src/lib/runtime/remote-action-constructors.ts +0 -295
- package/src/lib/runtime/remote-actions.ts +0 -209
- package/src/lib/runtime/remote-lg-action.ts +0 -824
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,1263 @@
|
|
|
1
1
|
# @copilotkit/runtime
|
|
2
2
|
|
|
3
|
-
## 0.0.0-
|
|
3
|
+
## 0.0.0-max-runner-auth-20251229210625
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c0f0e41: Optionally include request in run method
|
|
8
|
+
- @copilotkit/shared@0.0.0-max-runner-auth-20251229210625
|
|
9
|
+
|
|
10
|
+
## 1.50.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 80dffec: Updated the default model and API version for the Google GenAI adapter
|
|
15
|
+
- eac8b20: - fix: use latest vnext
|
|
16
|
+
- Updated dependencies [80dffec]
|
|
17
|
+
- @copilotkit/shared@1.50.1
|
|
18
|
+
|
|
19
|
+
## 1.50.1-next.3
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- eac8b20: - fix: use latest vnext
|
|
24
|
+
- @copilotkit/shared@1.50.1-next.3
|
|
25
|
+
|
|
26
|
+
## 1.50.1-next.2
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- @copilotkit/shared@1.50.1-next.2
|
|
31
|
+
|
|
32
|
+
## 1.50.1-next.1
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- @copilotkit/shared@1.50.1-next.1
|
|
37
|
+
|
|
38
|
+
## 1.50.1-next.0
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- Updated the default model and API version for the Google GenAI adapter
|
|
43
|
+
- Updated dependencies
|
|
44
|
+
- @copilotkit/shared@1.50.1-next.0
|
|
45
|
+
|
|
46
|
+
## 1.50.0
|
|
47
|
+
|
|
48
|
+
### Minor Changes
|
|
49
|
+
|
|
50
|
+
- 0fc76d7: add new runner with telemetry baked in
|
|
51
|
+
- c942f9c: Minor fixes and stability improvements
|
|
52
|
+
- bad5f06: - feat: port old endpoint creators to 2.0
|
|
53
|
+
- eed6021: Updating to the latest version of vnext
|
|
54
|
+
- 3b7367e: Improving general stability around LangChain
|
|
55
|
+
- 7ff9ca7: Minor fixes and improvements
|
|
56
|
+
- 5a6029e: - fix(runtime): Update method for merging tools in assignToolsToAgent
|
|
57
|
+
- feat(runtime): Export v2 of the runtime as a subpackage
|
|
58
|
+
- 974875e: Lint and format code to resolve Prettier errors
|
|
59
|
+
- 4942f62: - feat: create rerouting CopilotRuntime
|
|
60
|
+
- 3bd484f: Minor fixes and stability improvements
|
|
61
|
+
- 5a534bf: fix telemetry in v1.50 runtime
|
|
62
|
+
- 769a06c: Refactor suggestions to not always run
|
|
63
|
+
- 788292b: Improving langchain dependency resolution
|
|
64
|
+
- eab69a2: Enabling the new inspector
|
|
65
|
+
- 0a7bfe0: Updating dependency versions across all packages
|
|
66
|
+
|
|
67
|
+
### Patch Changes
|
|
68
|
+
|
|
69
|
+
- b780092: - fix: treeshake and make providers optional
|
|
70
|
+
- b0e3652: - chore: Update to latest of vnext
|
|
71
|
+
- d55a8bd: - feat(runtime): export v2 of the runtime as a subpackage
|
|
72
|
+
- fix(runtime): update method for merging tools in assignToolsToAgent
|
|
73
|
+
- fix: remove redundant agent instantiation code
|
|
74
|
+
- aee1e42: - fix: use hono node directly instead of express for the node http integration
|
|
75
|
+
- 18ba908: - fix: unpack and set agents as promise, to avoid delaying runtime instantiation
|
|
76
|
+
- c70210e: - feat: use copilotnext's single endpoint
|
|
77
|
+
- Updated dependencies [0fc76d7]
|
|
78
|
+
- Updated dependencies [c942f9c]
|
|
79
|
+
- Updated dependencies [b0e3652]
|
|
80
|
+
- Updated dependencies [eed6021]
|
|
81
|
+
- Updated dependencies [3b7367e]
|
|
82
|
+
- Updated dependencies [7ff9ca7]
|
|
83
|
+
- Updated dependencies [974875e]
|
|
84
|
+
- Updated dependencies [4942f62]
|
|
85
|
+
- Updated dependencies [3bd484f]
|
|
86
|
+
- Updated dependencies [5a534bf]
|
|
87
|
+
- Updated dependencies [769a06c]
|
|
88
|
+
- Updated dependencies [788292b]
|
|
89
|
+
- Updated dependencies [eab69a2]
|
|
90
|
+
- Updated dependencies [0a7bfe0]
|
|
91
|
+
- @copilotkit/shared@1.50.0
|
|
92
|
+
|
|
93
|
+
## 1.50.0-beta.19
|
|
94
|
+
|
|
95
|
+
### Minor Changes
|
|
96
|
+
|
|
97
|
+
- Improving langchain dependency resolution
|
|
98
|
+
|
|
99
|
+
### Patch Changes
|
|
100
|
+
|
|
101
|
+
- Updated dependencies
|
|
102
|
+
- @copilotkit/shared@1.50.0-beta.19
|
|
103
|
+
|
|
104
|
+
## 1.50.0-beta.18
|
|
105
|
+
|
|
106
|
+
### Minor Changes
|
|
107
|
+
|
|
108
|
+
- Improving general stability around LangChain
|
|
109
|
+
|
|
110
|
+
### Patch Changes
|
|
111
|
+
|
|
112
|
+
- Updated dependencies
|
|
113
|
+
- @copilotkit/shared@1.50.0-beta.18
|
|
114
|
+
|
|
115
|
+
## 1.50.0-beta.17
|
|
116
|
+
|
|
117
|
+
### Minor Changes
|
|
118
|
+
|
|
119
|
+
- Minor fixes and improvements
|
|
120
|
+
|
|
121
|
+
### Patch Changes
|
|
122
|
+
|
|
123
|
+
- Updated dependencies
|
|
124
|
+
- @copilotkit/shared@1.50.0-beta.17
|
|
125
|
+
|
|
126
|
+
## 1.50.0-beta.16
|
|
127
|
+
|
|
128
|
+
### Minor Changes
|
|
129
|
+
|
|
130
|
+
- Minor fixes and stability improvements
|
|
131
|
+
|
|
132
|
+
### Patch Changes
|
|
133
|
+
|
|
134
|
+
- Updated dependencies
|
|
135
|
+
- @copilotkit/shared@1.50.0-beta.16
|
|
136
|
+
|
|
137
|
+
## 1.50.0-beta.15
|
|
138
|
+
|
|
139
|
+
### Minor Changes
|
|
140
|
+
|
|
141
|
+
- Lint and format code to resolve Prettier errors
|
|
142
|
+
|
|
143
|
+
### Patch Changes
|
|
144
|
+
|
|
145
|
+
- Updated dependencies
|
|
146
|
+
- @copilotkit/shared@1.50.0-beta.15
|
|
147
|
+
|
|
148
|
+
## 1.50.0-beta.14
|
|
149
|
+
|
|
150
|
+
### Minor Changes
|
|
151
|
+
|
|
152
|
+
- Minor fixes and stability improvements
|
|
153
|
+
|
|
154
|
+
### Patch Changes
|
|
155
|
+
|
|
156
|
+
- Updated dependencies
|
|
157
|
+
- @copilotkit/shared@1.50.0-beta.14
|
|
158
|
+
|
|
159
|
+
## 1.50.0-beta.13
|
|
160
|
+
|
|
161
|
+
### Minor Changes
|
|
162
|
+
|
|
163
|
+
- Updating to the latest version of vnext
|
|
164
|
+
|
|
165
|
+
### Patch Changes
|
|
166
|
+
|
|
167
|
+
- Updated dependencies
|
|
168
|
+
- @copilotkit/shared@1.50.0-beta.13
|
|
169
|
+
|
|
170
|
+
## 1.50.0-beta.12
|
|
171
|
+
|
|
172
|
+
### Minor Changes
|
|
173
|
+
|
|
174
|
+
- eab69a2: Enabling the new inspector
|
|
175
|
+
|
|
176
|
+
### Patch Changes
|
|
177
|
+
|
|
178
|
+
- Updated dependencies [eab69a2]
|
|
179
|
+
- @copilotkit/shared@1.50.0-beta.12
|
|
180
|
+
|
|
181
|
+
## 1.50.0-beta.11
|
|
182
|
+
|
|
183
|
+
### Minor Changes
|
|
184
|
+
|
|
185
|
+
- fix telemetry in v1.50 runtime
|
|
186
|
+
|
|
187
|
+
### Patch Changes
|
|
188
|
+
|
|
189
|
+
- Updated dependencies
|
|
190
|
+
- @copilotkit/shared@1.50.0-beta.11
|
|
191
|
+
|
|
192
|
+
## 1.50.0-beta.10
|
|
193
|
+
|
|
194
|
+
### Minor Changes
|
|
195
|
+
|
|
196
|
+
- add new runner with telemetry baked in
|
|
197
|
+
|
|
198
|
+
### Patch Changes
|
|
199
|
+
|
|
200
|
+
- Updated dependencies
|
|
201
|
+
- @copilotkit/shared@1.50.0-beta.10
|
|
202
|
+
|
|
203
|
+
## 1.50.0-beta.9
|
|
204
|
+
|
|
205
|
+
### Minor Changes
|
|
206
|
+
|
|
207
|
+
- Refactor suggestions to not always run
|
|
208
|
+
|
|
209
|
+
### Patch Changes
|
|
210
|
+
|
|
211
|
+
- Updated dependencies
|
|
212
|
+
- @copilotkit/shared@1.50.0-beta.9
|
|
213
|
+
|
|
214
|
+
## 1.50.0-beta.8
|
|
215
|
+
|
|
216
|
+
### Patch Changes
|
|
217
|
+
|
|
218
|
+
- @copilotkit/shared@1.50.0-beta.8
|
|
219
|
+
|
|
220
|
+
## 1.50.0-beta.7
|
|
221
|
+
|
|
222
|
+
### Patch Changes
|
|
223
|
+
|
|
224
|
+
- @copilotkit/shared@1.50.0-beta.7
|
|
225
|
+
|
|
226
|
+
## 1.50.0-beta.6
|
|
227
|
+
|
|
228
|
+
### Minor Changes
|
|
229
|
+
|
|
230
|
+
- Updating dependency versions across all packages
|
|
231
|
+
|
|
232
|
+
### Patch Changes
|
|
233
|
+
|
|
234
|
+
- Updated dependencies
|
|
235
|
+
- @copilotkit/shared@1.50.0-beta.6
|
|
236
|
+
|
|
237
|
+
## 1.50.0-beta.4
|
|
238
|
+
|
|
239
|
+
### Minor Changes
|
|
240
|
+
|
|
241
|
+
- bad5f06: - feat: port old endpoint creators to 2.0
|
|
242
|
+
- 5a6029e: - fix(runtime): Update method for merging tools in assignToolsToAgent
|
|
243
|
+
- feat(runtime): Export v2 of the runtime as a subpackage
|
|
244
|
+
- 4942f62: - feat: create rerouting CopilotRuntime
|
|
245
|
+
|
|
246
|
+
### Patch Changes
|
|
247
|
+
|
|
248
|
+
- b780092: - fix: treeshake and make providers optional
|
|
249
|
+
- b0e3652: - chore: Update to latest of vnext
|
|
250
|
+
- d55a8bd: - feat(runtime): export v2 of the runtime as a subpackage
|
|
251
|
+
- fix(runtime): update method for merging tools in assignToolsToAgent
|
|
252
|
+
- fix: remove redundant agent instantiation code
|
|
253
|
+
- aee1e42: - fix: use hono node directly instead of express for the node http integration
|
|
254
|
+
- 18ba908: - fix: unpack and set agents as promise, to avoid delaying runtime instantiation
|
|
255
|
+
- c70210e: - feat: use copilotnext's single endpoint
|
|
256
|
+
- Updated dependencies [b0e3652]
|
|
257
|
+
- Updated dependencies [4942f62]
|
|
258
|
+
- @copilotkit/shared@1.50.0-beta.4
|
|
259
|
+
|
|
260
|
+
## 1.10.7-next.0
|
|
261
|
+
|
|
262
|
+
### Patch Changes
|
|
263
|
+
|
|
264
|
+
- @copilotkit/shared@1.10.7-next.0
|
|
265
|
+
|
|
266
|
+
## 1.10.6
|
|
267
|
+
|
|
268
|
+
### Patch Changes
|
|
269
|
+
|
|
270
|
+
- 01e0a4b: - fix: use all AGUI as peer dependencies
|
|
271
|
+
- e0dd5d5: - feat: allow additional config in direct to llm actions
|
|
272
|
+
- 7455309: - feat: use latest agui langgraph integration packages
|
|
273
|
+
- Updated dependencies [e0dd5d5]
|
|
274
|
+
- @copilotkit/shared@1.10.6
|
|
275
|
+
|
|
276
|
+
## 1.10.6-next.6
|
|
277
|
+
|
|
278
|
+
### Patch Changes
|
|
279
|
+
|
|
280
|
+
- 7455309: - feat: use latest agui langgraph integration packages
|
|
281
|
+
- @copilotkit/shared@1.10.6-next.6
|
|
282
|
+
|
|
283
|
+
## 1.10.6-next.5
|
|
284
|
+
|
|
285
|
+
### Patch Changes
|
|
286
|
+
|
|
287
|
+
- e0dd5d5: - feat: allow additional config in direct to llm actions
|
|
288
|
+
- Updated dependencies [e0dd5d5]
|
|
289
|
+
- @copilotkit/shared@1.10.6-next.5
|
|
290
|
+
|
|
291
|
+
## 1.10.6-next.4
|
|
292
|
+
|
|
293
|
+
### Patch Changes
|
|
294
|
+
|
|
295
|
+
- @copilotkit/shared@1.10.6-next.4
|
|
296
|
+
|
|
297
|
+
## 1.10.6-next.3
|
|
298
|
+
|
|
299
|
+
### Patch Changes
|
|
300
|
+
|
|
301
|
+
- 01e0a4b: - fix: use all AGUI as peer dependencies
|
|
302
|
+
- @copilotkit/shared@1.10.6-next.3
|
|
303
|
+
|
|
304
|
+
## 1.10.6-next.2
|
|
305
|
+
|
|
306
|
+
### Patch Changes
|
|
307
|
+
|
|
308
|
+
- @copilotkit/shared@1.10.6-next.2
|
|
309
|
+
|
|
310
|
+
## 1.10.6-next.1
|
|
311
|
+
|
|
312
|
+
### Patch Changes
|
|
313
|
+
|
|
314
|
+
- @copilotkit/shared@1.10.6-next.1
|
|
315
|
+
|
|
316
|
+
## 1.10.6-next.0
|
|
317
|
+
|
|
318
|
+
### Patch Changes
|
|
319
|
+
|
|
320
|
+
- @copilotkit/shared@1.10.6-next.0
|
|
321
|
+
|
|
322
|
+
## 1.10.5
|
|
323
|
+
|
|
324
|
+
### Patch Changes
|
|
325
|
+
|
|
326
|
+
- b7bc3a0: - feat: pass copilot readable context to agui agents
|
|
327
|
+
- f199c94: - feat: update agui packages
|
|
328
|
+
- 7467f97: - feat: add stop generation callback and call abort agui agent
|
|
329
|
+
- e730369: - feat: use latest agui langgraph package
|
|
330
|
+
- feat: use latest agui fastapi langgraph package and dependencies
|
|
331
|
+
- c9e32b0: - fix: upgrade agui langgraph version
|
|
332
|
+
- 23fe6a1: - chore: publish python sdk using latest agui
|
|
333
|
+
- feat: use latest agui packages
|
|
334
|
+
- @copilotkit/shared@1.10.5
|
|
335
|
+
|
|
336
|
+
## 1.10.5-next.10
|
|
337
|
+
|
|
338
|
+
### Patch Changes
|
|
339
|
+
|
|
340
|
+
- @copilotkit/shared@1.10.5-next.10
|
|
341
|
+
|
|
342
|
+
## 1.10.5-next.9
|
|
343
|
+
|
|
344
|
+
### Patch Changes
|
|
345
|
+
|
|
346
|
+
- f199c94: - feat: update agui packages
|
|
347
|
+
- @copilotkit/shared@1.10.5-next.9
|
|
348
|
+
|
|
349
|
+
## 1.10.5-next.8
|
|
350
|
+
|
|
351
|
+
### Patch Changes
|
|
352
|
+
|
|
353
|
+
- @copilotkit/shared@1.10.5-next.8
|
|
354
|
+
|
|
355
|
+
## 1.10.5-next.7
|
|
356
|
+
|
|
357
|
+
### Patch Changes
|
|
358
|
+
|
|
359
|
+
- c9e32b0: - fix: upgrade agui langgraph version
|
|
360
|
+
- @copilotkit/shared@1.10.5-next.7
|
|
361
|
+
|
|
362
|
+
## 1.10.5-next.6
|
|
363
|
+
|
|
364
|
+
### Patch Changes
|
|
365
|
+
|
|
366
|
+
- @copilotkit/shared@1.10.5-next.6
|
|
367
|
+
|
|
368
|
+
## 1.10.5-next.5
|
|
369
|
+
|
|
370
|
+
### Patch Changes
|
|
371
|
+
|
|
372
|
+
- @copilotkit/shared@1.10.5-next.5
|
|
373
|
+
|
|
374
|
+
## 1.10.5-next.4
|
|
375
|
+
|
|
376
|
+
### Patch Changes
|
|
377
|
+
|
|
378
|
+
- e730369: - feat: use latest agui langgraph package
|
|
379
|
+
- feat: use latest agui fastapi langgraph package and dependencies
|
|
380
|
+
- @copilotkit/shared@1.10.5-next.4
|
|
381
|
+
|
|
382
|
+
## 1.10.5-next.3
|
|
383
|
+
|
|
384
|
+
### Patch Changes
|
|
385
|
+
|
|
386
|
+
- 23fe6a1: - chore: publish python sdk using latest agui
|
|
387
|
+
- feat: use latest agui packages
|
|
388
|
+
- @copilotkit/shared@1.10.5-next.3
|
|
389
|
+
|
|
390
|
+
## 1.10.5-next.2
|
|
391
|
+
|
|
392
|
+
### Patch Changes
|
|
393
|
+
|
|
394
|
+
- 7467f97: - feat: add stop generation callback and call abort agui agent
|
|
395
|
+
- @copilotkit/shared@1.10.5-next.2
|
|
396
|
+
|
|
397
|
+
## 1.10.5-next.1
|
|
398
|
+
|
|
399
|
+
### Patch Changes
|
|
400
|
+
|
|
401
|
+
- b7bc3a0: - feat: pass copilot readable context to agui agents
|
|
402
|
+
- @copilotkit/shared@1.10.5-next.1
|
|
403
|
+
|
|
404
|
+
## 1.10.5-next.0
|
|
405
|
+
|
|
406
|
+
### Patch Changes
|
|
407
|
+
|
|
408
|
+
- @copilotkit/shared@1.10.5-next.0
|
|
409
|
+
|
|
410
|
+
## 1.10.4
|
|
411
|
+
|
|
412
|
+
### Patch Changes
|
|
413
|
+
|
|
414
|
+
- a640d8e: - feat: update latest agui langgraph for subgraphs support
|
|
415
|
+
- feat: update latest agui core packages
|
|
416
|
+
- Updated dependencies [a640d8e]
|
|
417
|
+
- @copilotkit/shared@1.10.4
|
|
418
|
+
|
|
419
|
+
## 1.10.4-next.3
|
|
420
|
+
|
|
421
|
+
### Patch Changes
|
|
422
|
+
|
|
423
|
+
- @copilotkit/shared@1.10.4-next.3
|
|
424
|
+
|
|
425
|
+
## 1.10.4-next.2
|
|
426
|
+
|
|
427
|
+
### Patch Changes
|
|
428
|
+
|
|
429
|
+
- @copilotkit/shared@1.10.4-next.2
|
|
430
|
+
|
|
431
|
+
## 1.10.4-next.1
|
|
432
|
+
|
|
433
|
+
### Patch Changes
|
|
434
|
+
|
|
435
|
+
- a640d8e: - feat: update latest agui langgraph for subgraphs support
|
|
436
|
+
- feat: update latest agui core packages
|
|
437
|
+
- Updated dependencies [a640d8e]
|
|
438
|
+
- @copilotkit/shared@1.10.4-next.1
|
|
439
|
+
|
|
440
|
+
## 1.10.4-next.0
|
|
441
|
+
|
|
442
|
+
### Patch Changes
|
|
443
|
+
|
|
444
|
+
- @copilotkit/shared@1.10.4-next.0
|
|
445
|
+
|
|
446
|
+
## 1.10.3
|
|
447
|
+
|
|
448
|
+
### Patch Changes
|
|
449
|
+
|
|
450
|
+
- ea74047: - fix: surface run errors from agui
|
|
451
|
+
- a7bb2f0: - fix: fix how node names are read to support newer langgraph versions
|
|
452
|
+
- 21e12af: - feat: send streamSubgraphs forwarded prop to AGUI
|
|
453
|
+
- Updated dependencies [ea74047]
|
|
454
|
+
- @copilotkit/shared@1.10.3
|
|
455
|
+
|
|
456
|
+
## 1.10.3-next.3
|
|
457
|
+
|
|
458
|
+
### Patch Changes
|
|
459
|
+
|
|
460
|
+
- 21e12af: - feat: send streamSubgraphs forwarded prop to AGUI
|
|
461
|
+
- @copilotkit/shared@1.10.3-next.3
|
|
462
|
+
|
|
463
|
+
## 1.10.3-next.2
|
|
464
|
+
|
|
465
|
+
### Patch Changes
|
|
466
|
+
|
|
467
|
+
- a7bb2f0: - fix: fix how node names are read to support newer langgraph versions
|
|
468
|
+
- @copilotkit/shared@1.10.3-next.2
|
|
469
|
+
|
|
470
|
+
## 1.10.3-next.1
|
|
471
|
+
|
|
472
|
+
### Patch Changes
|
|
473
|
+
|
|
474
|
+
- @copilotkit/shared@1.10.3-next.1
|
|
475
|
+
|
|
476
|
+
## 1.10.3-next.0
|
|
477
|
+
|
|
478
|
+
### Patch Changes
|
|
479
|
+
|
|
480
|
+
- ea74047: - fix: surface run errors from agui
|
|
481
|
+
- Updated dependencies [ea74047]
|
|
482
|
+
- @copilotkit/shared@1.10.3-next.0
|
|
483
|
+
|
|
484
|
+
## 1.10.2
|
|
485
|
+
|
|
486
|
+
### Patch Changes
|
|
487
|
+
|
|
488
|
+
- @copilotkit/shared@1.10.2
|
|
489
|
+
|
|
490
|
+
## 1.10.2-next.0
|
|
491
|
+
|
|
492
|
+
### Patch Changes
|
|
493
|
+
|
|
494
|
+
- @copilotkit/shared@1.10.2-next.0
|
|
495
|
+
|
|
496
|
+
## 1.10.1
|
|
497
|
+
|
|
498
|
+
### Patch Changes
|
|
499
|
+
|
|
500
|
+
- @copilotkit/shared@1.10.1
|
|
501
|
+
|
|
502
|
+
## 1.10.1-next.2
|
|
503
|
+
|
|
504
|
+
### Patch Changes
|
|
505
|
+
|
|
506
|
+
- @copilotkit/shared@1.10.1-next.2
|
|
507
|
+
|
|
508
|
+
## 1.10.1-next.1
|
|
509
|
+
|
|
510
|
+
### Patch Changes
|
|
511
|
+
|
|
512
|
+
- @copilotkit/shared@1.10.1-next.1
|
|
513
|
+
|
|
514
|
+
## 1.10.1-next.0
|
|
515
|
+
|
|
516
|
+
### Patch Changes
|
|
517
|
+
|
|
518
|
+
- @copilotkit/shared@1.10.1-next.0
|
|
519
|
+
|
|
520
|
+
## 1.10.0
|
|
521
|
+
|
|
522
|
+
### Patch Changes
|
|
523
|
+
|
|
524
|
+
- 1abcecf: - fix: add graphqlContext to constructAGUIRemoteAction for enhanced agent properties
|
|
525
|
+
|
|
526
|
+
- Updated constructAGUIRemoteAction to accept graphqlContext, allowing forwarding of properties like Authorization token to the agent.
|
|
527
|
+
- Modified setupRemoteActions to include graphqlContext in the parameters.
|
|
528
|
+
|
|
529
|
+
- 6f2f54b: - fix(openai): update maxTokens parameter to max_completion_tokens in OpenAIAdapter
|
|
530
|
+
- b5b94b9: - fix: throw errors when they happen with agui streams
|
|
531
|
+
- 824fb69: - fix: pass config to the forwarded props of an agui agent
|
|
532
|
+
- 59b0e16: - feat: add native prompt caching support to AnthropicAdapter
|
|
533
|
+
- a31443c: removed unused dependency on ip module
|
|
534
|
+
- dc6df18: - feat: use latest agui langgraph package
|
|
535
|
+
- chore: release python sdk 0.1.58
|
|
536
|
+
- Updated dependencies [a8c0263]
|
|
537
|
+
- Updated dependencies [8674da1]
|
|
538
|
+
- Updated dependencies [6d1de58]
|
|
539
|
+
- @copilotkit/shared@1.10.0
|
|
540
|
+
|
|
541
|
+
## 1.10.0-next.13
|
|
542
|
+
|
|
543
|
+
### Patch Changes
|
|
544
|
+
|
|
545
|
+
- b5b94b9: - fix: throw errors when they happen with agui streams
|
|
546
|
+
- @copilotkit/shared@1.10.0-next.13
|
|
547
|
+
|
|
548
|
+
## 1.10.0-next.12
|
|
549
|
+
|
|
550
|
+
### Patch Changes
|
|
551
|
+
|
|
552
|
+
- @copilotkit/shared@1.10.0-next.12
|
|
553
|
+
|
|
554
|
+
## 1.10.0-next.11
|
|
555
|
+
|
|
556
|
+
### Patch Changes
|
|
557
|
+
|
|
558
|
+
- dc6df18: - feat: use latest agui langgraph package
|
|
559
|
+
- chore: release python sdk 0.1.58
|
|
560
|
+
- @copilotkit/shared@1.10.0-next.11
|
|
561
|
+
|
|
562
|
+
## 1.10.0-next.10
|
|
563
|
+
|
|
564
|
+
### Patch Changes
|
|
565
|
+
|
|
566
|
+
- Updated dependencies [6d1de58]
|
|
567
|
+
- @copilotkit/shared@1.10.0-next.10
|
|
568
|
+
|
|
569
|
+
## 1.10.0-next.9
|
|
570
|
+
|
|
571
|
+
### Patch Changes
|
|
572
|
+
|
|
573
|
+
- @copilotkit/shared@1.10.0-next.9
|
|
574
|
+
|
|
575
|
+
## 1.10.0-next.8
|
|
576
|
+
|
|
577
|
+
### Patch Changes
|
|
578
|
+
|
|
579
|
+
- @copilotkit/shared@1.10.0-next.8
|
|
580
|
+
|
|
581
|
+
## 1.10.0-next.7
|
|
582
|
+
|
|
583
|
+
### Patch Changes
|
|
584
|
+
|
|
585
|
+
- 59b0e16: - feat: add native prompt caching support to AnthropicAdapter
|
|
586
|
+
- @copilotkit/shared@1.10.0-next.7
|
|
587
|
+
|
|
588
|
+
## 1.10.0-next.6
|
|
589
|
+
|
|
590
|
+
### Patch Changes
|
|
591
|
+
|
|
592
|
+
- 6f2f54b: - fix(openai): update maxTokens parameter to max_completion_tokens in OpenAIAdapter
|
|
593
|
+
- @copilotkit/shared@1.10.0-next.6
|
|
594
|
+
|
|
595
|
+
## 1.10.0-next.5
|
|
596
|
+
|
|
597
|
+
### Patch Changes
|
|
598
|
+
|
|
599
|
+
- Updated dependencies [a8c0263]
|
|
600
|
+
- @copilotkit/shared@1.10.0-next.5
|
|
601
|
+
|
|
602
|
+
## 1.10.0-next.4
|
|
603
|
+
|
|
604
|
+
### Patch Changes
|
|
605
|
+
|
|
606
|
+
- @copilotkit/shared@1.10.0-next.4
|
|
607
|
+
|
|
608
|
+
## 1.10.0-next.3
|
|
609
|
+
|
|
610
|
+
### Patch Changes
|
|
611
|
+
|
|
612
|
+
- 824fb69: - fix: pass config to the forwarded props of an agui agent
|
|
613
|
+
- @copilotkit/shared@1.10.0-next.3
|
|
614
|
+
|
|
615
|
+
## 1.10.0-next.2
|
|
616
|
+
|
|
617
|
+
### Patch Changes
|
|
618
|
+
|
|
619
|
+
- a31443c: removed unused dependency on ip module
|
|
620
|
+
- @copilotkit/shared@1.10.0-next.2
|
|
621
|
+
|
|
622
|
+
## 1.10.0-next.1
|
|
623
|
+
|
|
624
|
+
### Patch Changes
|
|
625
|
+
|
|
626
|
+
- 1abcecf: - fix: add graphqlContext to constructAGUIRemoteAction for enhanced agent properties
|
|
627
|
+
|
|
628
|
+
- Updated constructAGUIRemoteAction to accept graphqlContext, allowing forwarding of properties like Authorization token to the agent.
|
|
629
|
+
- Modified setupRemoteActions to include graphqlContext in the parameters.
|
|
630
|
+
- @copilotkit/shared@1.10.0-next.1
|
|
631
|
+
|
|
632
|
+
## 1.10.0-next.0
|
|
633
|
+
|
|
634
|
+
### Patch Changes
|
|
635
|
+
|
|
636
|
+
- Updated dependencies [8674da1]
|
|
637
|
+
- @copilotkit/shared@1.10.0-next.0
|
|
638
|
+
|
|
639
|
+
## 1.9.3
|
|
640
|
+
|
|
641
|
+
### Patch Changes
|
|
642
|
+
|
|
643
|
+
- 1bda332: - chore(telemetry): integrate Scarf for usage analytics
|
|
644
|
+
- df25f34: - feat: add agui fastAPI compatible langgraph agent
|
|
645
|
+
- chore: release 0.1.55 with agui langgraph fastapi support
|
|
646
|
+
- 589ae52: - adds scarf deps to runtime
|
|
647
|
+
- 88ceae2: - upgrade AG-UI packages
|
|
648
|
+
- Updated dependencies [1bda332]
|
|
649
|
+
- @copilotkit/shared@1.9.3
|
|
650
|
+
|
|
651
|
+
## 1.9.3-next.4
|
|
652
|
+
|
|
653
|
+
### Patch Changes
|
|
654
|
+
|
|
655
|
+
- @copilotkit/shared@1.9.3-next.4
|
|
656
|
+
|
|
657
|
+
## 1.9.3-next.3
|
|
658
|
+
|
|
659
|
+
### Patch Changes
|
|
660
|
+
|
|
661
|
+
- 1bda332: - chore(telemetry): integrate Scarf for usage analytics
|
|
662
|
+
- Updated dependencies [1bda332]
|
|
663
|
+
- @copilotkit/shared@1.9.3-next.3
|
|
664
|
+
|
|
665
|
+
## 1.9.3-next.2
|
|
666
|
+
|
|
667
|
+
### Patch Changes
|
|
668
|
+
|
|
669
|
+
- df25f34: - feat: add agui fastAPI compatible langgraph agent
|
|
670
|
+
- chore: release 0.1.55 with agui langgraph fastapi support
|
|
671
|
+
- @copilotkit/shared@1.9.3-next.2
|
|
672
|
+
|
|
673
|
+
## 1.9.3-next.1
|
|
674
|
+
|
|
675
|
+
### Patch Changes
|
|
676
|
+
|
|
677
|
+
- 589ae52: - adds scarf deps to runtime
|
|
678
|
+
- @copilotkit/shared@1.9.3-next.1
|
|
679
|
+
|
|
680
|
+
## 1.9.3-next.0
|
|
681
|
+
|
|
682
|
+
### Patch Changes
|
|
683
|
+
|
|
684
|
+
- 88ceae2: - upgrade AG-UI packages
|
|
685
|
+
- @copilotkit/shared@1.9.3-next.0
|
|
686
|
+
|
|
687
|
+
## 1.9.2
|
|
688
|
+
|
|
689
|
+
### Patch Changes
|
|
690
|
+
|
|
691
|
+
- f3f0181: - fix: connect streaming errors to runtime onError handler
|
|
692
|
+
- remove request logging
|
|
693
|
+
- 3a7f45f: - fix: resolve agui agents only after all other endpoints
|
|
694
|
+
- fac89c2: - refactor: rename onTrace to onError throughout codebase
|
|
695
|
+
|
|
696
|
+
- Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
|
|
697
|
+
|
|
698
|
+
- 7ca7023: - feat: send node name to agui agent
|
|
699
|
+
- 54b62f0: - fix: add default schema keys for input and output of agui langgraph
|
|
700
|
+
- 4fd92d1: - fix: enable resolving of langgraph agents when cpk starts
|
|
701
|
+
- 1f4949a: - fix: remove agent discovery for agui agents
|
|
702
|
+
- 9169ad7: - feat: add onTrace handler for runtime and UI error/event tracking
|
|
703
|
+
- f3f0181: - fix: connect streaming errors to runtime onError handler
|
|
704
|
+
- 8e67158: - fixes gemini adapter
|
|
705
|
+
- 83822d2: - fix: do not show error on state loading if thread does not exist
|
|
706
|
+
- fe9009c: - feat(langgraph): new thread metadata
|
|
707
|
+
- f295375: - fix: remove all agents as tools when there is an active agent session
|
|
708
|
+
- fix formatting
|
|
709
|
+
- 9b986ba: - fix: use active interrupt from thread instead of saving to global state
|
|
710
|
+
- 1d1c51d: - feat: surface all errors in structured format
|
|
711
|
+
- dec5527: - fix: only fetch agent state for langgraph agents
|
|
712
|
+
- 9b81464: - fix: use latest langgraph agui
|
|
713
|
+
- 10345a5: - feat: structured error visibility system for streaming errors
|
|
714
|
+
- 8ef8199: - fix: use latest agui dependencies to include required fixes
|
|
715
|
+
- 20e8c3c: - fix(anthropic-adapter): resolve infinite loop caused by duplicate result messages
|
|
716
|
+
- 9169ad7: - feat: add onTrace handler for comprehensive debugging and observability - Add CopilotTraceEvent interfaces with rich debugging context, implement runtime-side tracing with publicApiKey gating, add UI-side error tracing, include comprehensive test coverage, and fix tsup build config to exclude test files
|
|
717
|
+
- fix: extract publicApiKey for all requests + trace GraphQL errors
|
|
718
|
+
- fc6b653: - Fix extract toolParameters in extractParametersFromSchema
|
|
719
|
+
- Ensures consistency in how parameters are passed to the execute function across the codebase.
|
|
720
|
+
- fc6b653: - Fix extract toolParameters in extractParametersFromSchema
|
|
721
|
+
- Fixed generateMcpToolInstructions to properly extract parameters from schema.parameters.properties
|
|
722
|
+
- fix: enhance MCP schema support for complex types and remove duplicate headers
|
|
723
|
+
- fc6b653: - Fix extract toolParameters in extractParametersFromSchema
|
|
724
|
+
- Updated dependencies [fac89c2]
|
|
725
|
+
- Updated dependencies [9169ad7]
|
|
726
|
+
- Updated dependencies [1d1c51d]
|
|
727
|
+
- Updated dependencies [10345a5]
|
|
728
|
+
- Updated dependencies [9169ad7]
|
|
729
|
+
- @copilotkit/shared@1.9.2
|
|
730
|
+
|
|
731
|
+
## 1.9.2-next.26
|
|
732
|
+
|
|
733
|
+
### Patch Changes
|
|
734
|
+
|
|
735
|
+
- 83822d2: - fix: do not show error on state loading if thread does not exist
|
|
736
|
+
- @copilotkit/shared@1.9.2-next.26
|
|
737
|
+
|
|
738
|
+
## 1.9.2-next.25
|
|
739
|
+
|
|
740
|
+
### Patch Changes
|
|
741
|
+
|
|
742
|
+
- f3f0181: - fix: connect streaming errors to runtime onError handler
|
|
743
|
+
- remove request logging
|
|
744
|
+
- f3f0181: - fix: connect streaming errors to runtime onError handler
|
|
745
|
+
- @copilotkit/shared@1.9.2-next.25
|
|
746
|
+
|
|
747
|
+
## 1.9.2-next.24
|
|
748
|
+
|
|
749
|
+
### Patch Changes
|
|
750
|
+
|
|
751
|
+
- 8ef8199: - fix: use latest agui dependencies to include required fixes
|
|
752
|
+
- @copilotkit/shared@1.9.2-next.24
|
|
753
|
+
|
|
754
|
+
## 1.9.2-next.23
|
|
755
|
+
|
|
756
|
+
### Patch Changes
|
|
757
|
+
|
|
758
|
+
- fc6b653: - Fix extract toolParameters in extractParametersFromSchema
|
|
759
|
+
- Ensures consistency in how parameters are passed to the execute function across the codebase.
|
|
760
|
+
- fc6b653: - Fix extract toolParameters in extractParametersFromSchema
|
|
761
|
+
- Fixed generateMcpToolInstructions to properly extract parameters from schema.parameters.properties
|
|
762
|
+
- fix: enhance MCP schema support for complex types and remove duplicate headers
|
|
763
|
+
- fc6b653: - Fix extract toolParameters in extractParametersFromSchema
|
|
764
|
+
- @copilotkit/shared@1.9.2-next.23
|
|
765
|
+
|
|
766
|
+
## 1.9.2-next.22
|
|
767
|
+
|
|
768
|
+
### Patch Changes
|
|
769
|
+
|
|
770
|
+
- @copilotkit/shared@1.9.2-next.22
|
|
771
|
+
|
|
772
|
+
## 1.9.2-next.21
|
|
773
|
+
|
|
774
|
+
### Patch Changes
|
|
775
|
+
|
|
776
|
+
- @copilotkit/shared@1.9.2-next.21
|
|
777
|
+
|
|
778
|
+
## 1.9.2-next.20
|
|
779
|
+
|
|
780
|
+
### Patch Changes
|
|
781
|
+
|
|
782
|
+
- @copilotkit/shared@1.9.2-next.20
|
|
783
|
+
|
|
784
|
+
## 1.9.2-next.19
|
|
785
|
+
|
|
786
|
+
### Patch Changes
|
|
787
|
+
|
|
788
|
+
- 8e67158: - fixes gemini adapter
|
|
789
|
+
- @copilotkit/shared@1.9.2-next.19
|
|
790
|
+
|
|
791
|
+
## 1.9.2-next.18
|
|
792
|
+
|
|
793
|
+
### Patch Changes
|
|
794
|
+
|
|
795
|
+
- fac89c2: - refactor: rename onTrace to onError throughout codebase
|
|
796
|
+
|
|
797
|
+
- Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
|
|
798
|
+
|
|
799
|
+
- Updated dependencies [fac89c2]
|
|
800
|
+
- @copilotkit/shared@1.9.2-next.18
|
|
801
|
+
|
|
802
|
+
## 1.9.2-next.17
|
|
803
|
+
|
|
804
|
+
### Patch Changes
|
|
805
|
+
|
|
806
|
+
- 7ca7023: - feat: send node name to agui agent
|
|
807
|
+
- @copilotkit/shared@1.9.2-next.17
|
|
808
|
+
|
|
809
|
+
## 1.9.2-next.16
|
|
810
|
+
|
|
811
|
+
### Patch Changes
|
|
812
|
+
|
|
813
|
+
- fe9009c: - feat(langgraph): new thread metadata
|
|
814
|
+
- @copilotkit/shared@1.9.2-next.16
|
|
815
|
+
|
|
816
|
+
## 1.9.2-next.15
|
|
817
|
+
|
|
818
|
+
### Patch Changes
|
|
819
|
+
|
|
820
|
+
- @copilotkit/shared@1.9.2-next.15
|
|
821
|
+
|
|
822
|
+
## 1.9.2-next.14
|
|
823
|
+
|
|
824
|
+
### Patch Changes
|
|
825
|
+
|
|
826
|
+
- 3a7f45f: - fix: resolve agui agents only after all other endpoints
|
|
827
|
+
- @copilotkit/shared@1.9.2-next.14
|
|
828
|
+
|
|
829
|
+
## 1.9.2-next.13
|
|
830
|
+
|
|
831
|
+
### Patch Changes
|
|
832
|
+
|
|
833
|
+
- dec5527: - fix: only fetch agent state for langgraph agents
|
|
834
|
+
- @copilotkit/shared@1.9.2-next.13
|
|
835
|
+
|
|
836
|
+
## 1.9.2-next.12
|
|
837
|
+
|
|
838
|
+
### Patch Changes
|
|
839
|
+
|
|
840
|
+
- @copilotkit/shared@1.9.2-next.12
|
|
841
|
+
|
|
842
|
+
## 1.9.2-next.11
|
|
843
|
+
|
|
844
|
+
### Patch Changes
|
|
845
|
+
|
|
846
|
+
- 1f4949a: - fix: remove agent discovery for agui agents
|
|
847
|
+
- @copilotkit/shared@1.9.2-next.11
|
|
848
|
+
|
|
849
|
+
## 1.9.2-next.10
|
|
850
|
+
|
|
851
|
+
### Patch Changes
|
|
852
|
+
|
|
853
|
+
- 20e8c3c: - fix(anthropic-adapter): resolve infinite loop caused by duplicate result messages
|
|
854
|
+
- @copilotkit/shared@1.9.2-next.10
|
|
855
|
+
|
|
856
|
+
## 1.9.2-next.9
|
|
857
|
+
|
|
858
|
+
### Patch Changes
|
|
859
|
+
|
|
860
|
+
- 1d1c51d: - feat: surface all errors in structured format
|
|
861
|
+
- Updated dependencies [1d1c51d]
|
|
862
|
+
- @copilotkit/shared@1.9.2-next.9
|
|
863
|
+
|
|
864
|
+
## 1.9.2-next.8
|
|
865
|
+
|
|
866
|
+
### Patch Changes
|
|
867
|
+
|
|
868
|
+
- 9b986ba: - fix: use active interrupt from thread instead of saving to global state
|
|
869
|
+
- @copilotkit/shared@1.9.2-next.8
|
|
870
|
+
|
|
871
|
+
## 1.9.2-next.7
|
|
872
|
+
|
|
873
|
+
### Patch Changes
|
|
874
|
+
|
|
875
|
+
- 54b62f0: - fix: add default schema keys for input and output of agui langgraph
|
|
876
|
+
- @copilotkit/shared@1.9.2-next.7
|
|
877
|
+
|
|
878
|
+
## 1.9.2-next.6
|
|
879
|
+
|
|
880
|
+
### Patch Changes
|
|
881
|
+
|
|
882
|
+
- 4fd92d1: - fix: enable resolving of langgraph agents when cpk starts
|
|
883
|
+
- @copilotkit/shared@1.9.2-next.6
|
|
884
|
+
|
|
885
|
+
## 1.9.2-next.5
|
|
886
|
+
|
|
887
|
+
### Patch Changes
|
|
888
|
+
|
|
889
|
+
- @copilotkit/shared@1.9.2-next.5
|
|
890
|
+
|
|
891
|
+
## 1.9.2-next.4
|
|
892
|
+
|
|
893
|
+
### Patch Changes
|
|
894
|
+
|
|
895
|
+
- 9169ad7: - feat: add onTrace handler for runtime and UI error/event tracking
|
|
896
|
+
- 9169ad7: - feat: add onTrace handler for comprehensive debugging and observability - Add CopilotTraceEvent interfaces with rich debugging context, implement runtime-side tracing with publicApiKey gating, add UI-side error tracing, include comprehensive test coverage, and fix tsup build config to exclude test files
|
|
897
|
+
- fix: extract publicApiKey for all requests + trace GraphQL errors
|
|
898
|
+
- Updated dependencies [9169ad7]
|
|
899
|
+
- Updated dependencies [9169ad7]
|
|
900
|
+
- @copilotkit/shared@1.9.2-next.4
|
|
901
|
+
|
|
902
|
+
## 1.9.2-next.3
|
|
903
|
+
|
|
904
|
+
### Patch Changes
|
|
905
|
+
|
|
906
|
+
- @copilotkit/shared@1.9.2-next.3
|
|
907
|
+
|
|
908
|
+
## 1.9.2-next.2
|
|
909
|
+
|
|
910
|
+
### Patch Changes
|
|
911
|
+
|
|
912
|
+
- 9b81464: - fix: use latest langgraph agui
|
|
913
|
+
- @copilotkit/shared@1.9.2-next.2
|
|
914
|
+
|
|
915
|
+
## 1.9.2-next.1
|
|
916
|
+
|
|
917
|
+
### Patch Changes
|
|
918
|
+
|
|
919
|
+
- f295375: - fix: remove all agents as tools when there is an active agent session
|
|
920
|
+
- fix formatting
|
|
921
|
+
- @copilotkit/shared@1.9.2-next.1
|
|
922
|
+
|
|
923
|
+
## 1.9.2-next.0
|
|
924
|
+
|
|
925
|
+
### Patch Changes
|
|
926
|
+
|
|
927
|
+
- 10345a5: - feat: structured error visibility system for streaming errors
|
|
928
|
+
- Updated dependencies [10345a5]
|
|
929
|
+
- @copilotkit/shared@1.9.2-next.0
|
|
930
|
+
|
|
931
|
+
## 1.9.1
|
|
932
|
+
|
|
933
|
+
### Patch Changes
|
|
934
|
+
|
|
935
|
+
- deaeca0: - feat: Add public key
|
|
936
|
+
|
|
937
|
+
Signed-off-by: Luis Valdes <luis@copilotkit.ai>
|
|
938
|
+
|
|
939
|
+
- Updated dependencies [deaeca0]
|
|
940
|
+
- @copilotkit/shared@1.9.1
|
|
941
|
+
|
|
942
|
+
## 1.9.1-next.0
|
|
943
|
+
|
|
944
|
+
### Patch Changes
|
|
945
|
+
|
|
946
|
+
- deaeca0: - feat: Add public key
|
|
947
|
+
|
|
948
|
+
Signed-off-by: Luis Valdes <luis@copilotkit.ai>
|
|
949
|
+
|
|
950
|
+
- Updated dependencies [deaeca0]
|
|
951
|
+
- @copilotkit/shared@1.9.1-next.0
|
|
952
|
+
|
|
953
|
+
## 1.9.0
|
|
954
|
+
|
|
955
|
+
### Minor Changes
|
|
956
|
+
|
|
957
|
+
- 8408d58: - feat: create copilotkit agui langgraph agent
|
|
958
|
+
- docs: replace remote endpoint with AGUI agent
|
|
959
|
+
|
|
960
|
+
### Patch Changes
|
|
961
|
+
|
|
962
|
+
- c120e07: - refactor(react-ui): pass full message to onThumbsUp and onThumbsDown handlers
|
|
963
|
+
- 54cae30: - fix(react-core): allow custom toolChoice in forwardedParameters to override default
|
|
964
|
+
- fix: move react-dom to peerDependencies in @copilotkit/react-textarea
|
|
965
|
+
- feat: add amazon bedrock adapter support
|
|
966
|
+
- @copilotkit/shared@1.9.0
|
|
967
|
+
|
|
968
|
+
## 1.9.0-next.2
|
|
969
|
+
|
|
970
|
+
### Minor Changes
|
|
971
|
+
|
|
972
|
+
- 8408d58: - feat: create copilotkit agui langgraph agent
|
|
973
|
+
- docs: replace remote endpoint with AGUI agent
|
|
974
|
+
|
|
975
|
+
### Patch Changes
|
|
976
|
+
|
|
977
|
+
- @copilotkit/shared@1.9.0-next.2
|
|
978
|
+
|
|
979
|
+
## 1.8.15-next.1
|
|
980
|
+
|
|
981
|
+
### Patch Changes
|
|
982
|
+
|
|
983
|
+
- 54cae30: - fix(react-core): allow custom toolChoice in forwardedParameters to override default
|
|
984
|
+
- fix: move react-dom to peerDependencies in @copilotkit/react-textarea
|
|
985
|
+
- feat: add amazon bedrock adapter support
|
|
986
|
+
- @copilotkit/shared@1.8.15-next.1
|
|
987
|
+
|
|
988
|
+
## 1.8.15-next.0
|
|
989
|
+
|
|
990
|
+
### Patch Changes
|
|
991
|
+
|
|
992
|
+
- c120e07: - refactor(react-ui): pass full message to onThumbsUp and onThumbsDown handlers
|
|
993
|
+
- @copilotkit/shared@1.8.15-next.0
|
|
994
|
+
|
|
995
|
+
## 1.8.14
|
|
996
|
+
|
|
997
|
+
### Patch Changes
|
|
998
|
+
|
|
999
|
+
- ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
|
|
1000
|
+
- fix(runtime): filter empty text messages in AnthropicAdapter
|
|
1001
|
+
- 9d33836: - fix: prepare cpk agui wiring for ag-ui langgraph support
|
|
1002
|
+
- 12b8ca8: - fix: fix cpk agui wiring for langgraph
|
|
1003
|
+
- ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
|
|
1004
|
+
- 1af7333: - docs: updates ag-ui agent interface
|
|
1005
|
+
- Updated dependencies [34a78d8]
|
|
1006
|
+
- @copilotkit/shared@1.8.14
|
|
1007
|
+
|
|
1008
|
+
## 1.8.14-next.5
|
|
1009
|
+
|
|
1010
|
+
### Patch Changes
|
|
1011
|
+
|
|
1012
|
+
- ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
|
|
1013
|
+
- fix(runtime): filter empty text messages in AnthropicAdapter
|
|
1014
|
+
- ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
|
|
1015
|
+
- @copilotkit/shared@1.8.14-next.5
|
|
1016
|
+
|
|
1017
|
+
## 1.8.14-next.4
|
|
1018
|
+
|
|
1019
|
+
### Patch Changes
|
|
1020
|
+
|
|
1021
|
+
- 12b8ca8: - fix: fix cpk agui wiring for langgraph
|
|
1022
|
+
- @copilotkit/shared@1.8.14-next.4
|
|
1023
|
+
|
|
1024
|
+
## 1.8.14-next.3
|
|
1025
|
+
|
|
1026
|
+
### Patch Changes
|
|
1027
|
+
|
|
1028
|
+
- 9d33836: - fix: prepare cpk agui wiring for ag-ui langgraph support
|
|
1029
|
+
- @copilotkit/shared@1.8.14-next.3
|
|
1030
|
+
|
|
1031
|
+
## 1.8.14-next.2
|
|
1032
|
+
|
|
1033
|
+
### Patch Changes
|
|
1034
|
+
|
|
1035
|
+
- 1af7333: - docs: updates ag-ui agent interface
|
|
1036
|
+
- @copilotkit/shared@1.8.14-next.2
|
|
1037
|
+
|
|
1038
|
+
## 1.8.14-next.1
|
|
1039
|
+
|
|
1040
|
+
### Patch Changes
|
|
1041
|
+
|
|
1042
|
+
- Updated dependencies [34a78d8]
|
|
1043
|
+
- @copilotkit/shared@1.8.14-next.1
|
|
1044
|
+
|
|
1045
|
+
## 1.8.14-next.0
|
|
1046
|
+
|
|
1047
|
+
### Patch Changes
|
|
1048
|
+
|
|
1049
|
+
- @copilotkit/shared@1.8.14-next.0
|
|
1050
|
+
|
|
1051
|
+
## 1.8.13
|
|
1052
|
+
|
|
1053
|
+
### Patch Changes
|
|
1054
|
+
|
|
1055
|
+
- 6ed54f4: - AG-UI 0.0.28
|
|
1056
|
+
- @copilotkit/shared@1.8.13
|
|
1057
|
+
|
|
1058
|
+
## 1.8.13-next.3
|
|
1059
|
+
|
|
1060
|
+
### Patch Changes
|
|
1061
|
+
|
|
1062
|
+
- @copilotkit/shared@1.8.13-next.3
|
|
1063
|
+
|
|
1064
|
+
## 1.8.13-next.2
|
|
1065
|
+
|
|
1066
|
+
### Patch Changes
|
|
1067
|
+
|
|
1068
|
+
- @copilotkit/shared@1.8.13-next.2
|
|
1069
|
+
|
|
1070
|
+
## 1.8.13-next.1
|
|
1071
|
+
|
|
1072
|
+
### Patch Changes
|
|
1073
|
+
|
|
1074
|
+
- @copilotkit/shared@1.8.13-next.1
|
|
1075
|
+
|
|
1076
|
+
## 1.8.13-next.0
|
|
1077
|
+
|
|
1078
|
+
### Patch Changes
|
|
1079
|
+
|
|
1080
|
+
- 6ed54f4: - AG-UI 0.0.28
|
|
1081
|
+
- @copilotkit/shared@1.8.13-next.0
|
|
1082
|
+
|
|
1083
|
+
## 1.8.12
|
|
1084
|
+
|
|
1085
|
+
### Patch Changes
|
|
1086
|
+
|
|
1087
|
+
- 54838cb: - feat: allow keeping system role for openai adapters
|
|
1088
|
+
- 2b89ad7: - fix: use latest claude 3.5 as default model instead of specific
|
|
1089
|
+
- chore: add missing variable assignment in llm provider docs
|
|
1090
|
+
- chore: add missing call to fetch azure api key in docs
|
|
1091
|
+
- f419d99: - fix: Implement allowlist approach to prevent duplicate tool_result blocks in API calls to OpenAI and Anthropic
|
|
1092
|
+
- @copilotkit/shared@1.8.12
|
|
1093
|
+
|
|
1094
|
+
## 1.8.12-next.6
|
|
1095
|
+
|
|
1096
|
+
### Patch Changes
|
|
1097
|
+
|
|
1098
|
+
- @copilotkit/shared@1.8.12-next.6
|
|
1099
|
+
|
|
1100
|
+
## 1.8.12-next.5
|
|
1101
|
+
|
|
1102
|
+
### Patch Changes
|
|
1103
|
+
|
|
1104
|
+
- @copilotkit/shared@1.8.12-next.5
|
|
1105
|
+
|
|
1106
|
+
## 1.8.12-next.4
|
|
1107
|
+
|
|
1108
|
+
### Patch Changes
|
|
1109
|
+
|
|
1110
|
+
- f419d99: - fix: Implement allowlist approach to prevent duplicate tool_result blocks in API calls to OpenAI and Anthropic
|
|
1111
|
+
- @copilotkit/shared@1.8.12-next.4
|
|
1112
|
+
|
|
1113
|
+
## 1.8.12-next.3
|
|
1114
|
+
|
|
1115
|
+
### Patch Changes
|
|
1116
|
+
|
|
1117
|
+
- @copilotkit/shared@1.8.12-next.3
|
|
1118
|
+
|
|
1119
|
+
## 1.8.12-next.2
|
|
1120
|
+
|
|
1121
|
+
### Patch Changes
|
|
1122
|
+
|
|
1123
|
+
- @copilotkit/shared@1.8.12-next.2
|
|
1124
|
+
|
|
1125
|
+
## 1.8.12-next.1
|
|
1126
|
+
|
|
1127
|
+
### Patch Changes
|
|
1128
|
+
|
|
1129
|
+
- 54838cb: - feat: allow keeping system role for openai adapters
|
|
1130
|
+
- @copilotkit/shared@1.8.12-next.1
|
|
1131
|
+
|
|
1132
|
+
## 1.8.12-next.0
|
|
1133
|
+
|
|
1134
|
+
### Patch Changes
|
|
1135
|
+
|
|
1136
|
+
- 2b89ad7: - fix: use latest claude 3.5 as default model instead of specific
|
|
1137
|
+
- chore: add missing variable assignment in llm provider docs
|
|
1138
|
+
- chore: add missing call to fetch azure api key in docs
|
|
1139
|
+
- @copilotkit/shared@1.8.12-next.0
|
|
1140
|
+
|
|
1141
|
+
## 1.8.11
|
|
1142
|
+
|
|
1143
|
+
### Patch Changes
|
|
1144
|
+
|
|
1145
|
+
- 52d0bb5: - fix: do not attempt to hash lgc key if it doesnt exist
|
|
1146
|
+
- fix: accept null on langsmith api key
|
|
1147
|
+
- @copilotkit/shared@1.8.11
|
|
1148
|
+
|
|
1149
|
+
## 1.8.11-next.1
|
|
1150
|
+
|
|
1151
|
+
### Patch Changes
|
|
1152
|
+
|
|
1153
|
+
- 52d0bb5: - fix: do not attempt to hash lgc key if it doesnt exist
|
|
1154
|
+
- fix: accept null on langsmith api key
|
|
1155
|
+
- @copilotkit/shared@1.8.11-next.1
|
|
1156
|
+
|
|
1157
|
+
## 1.8.11-next.0
|
|
1158
|
+
|
|
1159
|
+
### Patch Changes
|
|
1160
|
+
|
|
1161
|
+
- @copilotkit/shared@1.8.11-next.0
|
|
1162
|
+
|
|
1163
|
+
## 1.8.10
|
|
1164
|
+
|
|
1165
|
+
### Patch Changes
|
|
1166
|
+
|
|
1167
|
+
- f3a0a33: - updates ag-ui deps
|
|
1168
|
+
- 742efbb: - feat: enable setting langgraph config from ui
|
|
1169
|
+
- chore: document usage of new config
|
|
1170
|
+
- @copilotkit/shared@1.8.10
|
|
1171
|
+
|
|
1172
|
+
## 1.8.10-next.3
|
|
1173
|
+
|
|
1174
|
+
### Patch Changes
|
|
1175
|
+
|
|
1176
|
+
- @copilotkit/shared@1.8.10-next.3
|
|
1177
|
+
|
|
1178
|
+
## 1.8.10-next.2
|
|
1179
|
+
|
|
1180
|
+
### Patch Changes
|
|
1181
|
+
|
|
1182
|
+
- f3a0a33: - updates ag-ui deps
|
|
1183
|
+
- @copilotkit/shared@1.8.10-next.2
|
|
1184
|
+
|
|
1185
|
+
## 1.8.10-next.1
|
|
1186
|
+
|
|
1187
|
+
### Patch Changes
|
|
1188
|
+
|
|
1189
|
+
- @copilotkit/shared@1.8.10-next.1
|
|
1190
|
+
|
|
1191
|
+
## 1.8.10-next.0
|
|
1192
|
+
|
|
1193
|
+
### Patch Changes
|
|
1194
|
+
|
|
1195
|
+
- 742efbb: - feat: enable setting langgraph config from ui
|
|
1196
|
+
- chore: document usage of new config
|
|
1197
|
+
- @copilotkit/shared@1.8.10-next.0
|
|
1198
|
+
|
|
1199
|
+
## 1.8.9
|
|
1200
|
+
|
|
1201
|
+
### Patch Changes
|
|
1202
|
+
|
|
1203
|
+
- f81a526: - Fix MCP tool schema structure to match interface requirements
|
|
1204
|
+
- add utils
|
|
1205
|
+
- @copilotkit/shared@1.8.9
|
|
1206
|
+
|
|
1207
|
+
## 1.8.9-next.0
|
|
1208
|
+
|
|
1209
|
+
### Patch Changes
|
|
1210
|
+
|
|
1211
|
+
- f81a526: - Fix MCP tool schema structure to match interface requirements
|
|
1212
|
+
- add utils
|
|
1213
|
+
- @copilotkit/shared@1.8.9-next.0
|
|
1214
|
+
|
|
1215
|
+
## 1.8.8
|
|
1216
|
+
|
|
1217
|
+
### Patch Changes
|
|
1218
|
+
|
|
1219
|
+
- 8c26335: - fix: update MCP tool parameter extraction to handle full tool objects
|
|
1220
|
+
- dfb67c3: - refactor: rename mcpEndpoints to mcpServers for naming consistency
|
|
1221
|
+
- doc changes
|
|
1222
|
+
- @copilotkit/shared@1.8.8
|
|
1223
|
+
|
|
1224
|
+
## 1.8.8-next.1
|
|
1225
|
+
|
|
1226
|
+
### Patch Changes
|
|
1227
|
+
|
|
1228
|
+
- 8c26335: - fix: update MCP tool parameter extraction to handle full tool objects
|
|
1229
|
+
- @copilotkit/shared@1.8.8-next.1
|
|
1230
|
+
|
|
1231
|
+
## 1.8.8-next.0
|
|
1232
|
+
|
|
1233
|
+
### Patch Changes
|
|
1234
|
+
|
|
1235
|
+
- dfb67c3: - refactor: rename mcpEndpoints to mcpServers for naming consistency
|
|
1236
|
+
- doc changes
|
|
1237
|
+
- @copilotkit/shared@1.8.8-next.0
|
|
1238
|
+
|
|
1239
|
+
## 1.8.7
|
|
1240
|
+
|
|
1241
|
+
### Patch Changes
|
|
1242
|
+
|
|
1243
|
+
- 8b8474f: - feat: add image input support with multi-model compatibility, pasting, and UX improvements
|
|
1244
|
+
- @copilotkit/shared@1.8.7
|
|
1245
|
+
|
|
1246
|
+
## 1.8.7-next.0
|
|
1247
|
+
|
|
1248
|
+
### Patch Changes
|
|
1249
|
+
|
|
1250
|
+
- 8b8474f: - feat: add image input support with multi-model compatibility, pasting, and UX improvements
|
|
1251
|
+
- @copilotkit/shared@1.8.7-next.0
|
|
1252
|
+
|
|
1253
|
+
## 1.8.6
|
|
4
1254
|
|
|
5
1255
|
### Patch Changes
|
|
6
1256
|
|
|
7
1257
|
- 7a04bd1: - fix: fix how results are communicated back on interrupt
|
|
8
1258
|
- fix: do not allow followup for interrupt actions
|
|
9
1259
|
- chore: improve TS docs for interrupt
|
|
10
|
-
- @copilotkit/shared@
|
|
1260
|
+
- @copilotkit/shared@1.8.6
|
|
11
1261
|
|
|
12
1262
|
## 1.8.6-next.0
|
|
13
1263
|
|