@copilotkit/runtime 0.0.0-0.0.0-max-changeset-10101010101010-20260109191632

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. package/.eslintrc.js +7 -0
  2. package/CHANGELOG.md +2905 -0
  3. package/LICENSE +21 -0
  4. package/README.md +76 -0
  5. package/__snapshots__/schema/schema.graphql +371 -0
  6. package/dist/index.d.ts +1495 -0
  7. package/dist/index.js +5644 -0
  8. package/dist/index.js.map +1 -0
  9. package/dist/index.mjs +5601 -0
  10. package/dist/index.mjs.map +1 -0
  11. package/dist/langgraph.d.ts +284 -0
  12. package/dist/langgraph.js +211 -0
  13. package/dist/langgraph.js.map +1 -0
  14. package/dist/langgraph.mjs +206 -0
  15. package/dist/langgraph.mjs.map +1 -0
  16. package/dist/v2/index.d.ts +2 -0
  17. package/dist/v2/index.js +22 -0
  18. package/dist/v2/index.js.map +1 -0
  19. package/dist/v2/index.mjs +5 -0
  20. package/dist/v2/index.mjs.map +1 -0
  21. package/jest.config.js +10 -0
  22. package/package.json +143 -0
  23. package/scripts/generate-gql-schema.ts +13 -0
  24. package/src/agents/langgraph/event-source.ts +329 -0
  25. package/src/agents/langgraph/events.ts +377 -0
  26. package/src/graphql/inputs/action.input.ts +16 -0
  27. package/src/graphql/inputs/agent-session.input.ts +13 -0
  28. package/src/graphql/inputs/agent-state.input.ts +13 -0
  29. package/src/graphql/inputs/cloud-guardrails.input.ts +16 -0
  30. package/src/graphql/inputs/cloud.input.ts +8 -0
  31. package/src/graphql/inputs/context-property.input.ts +10 -0
  32. package/src/graphql/inputs/copilot-context.input.ts +10 -0
  33. package/src/graphql/inputs/custom-property.input.ts +15 -0
  34. package/src/graphql/inputs/extensions.input.ts +21 -0
  35. package/src/graphql/inputs/forwarded-parameters.input.ts +22 -0
  36. package/src/graphql/inputs/frontend.input.ts +14 -0
  37. package/src/graphql/inputs/generate-copilot-response.input.ts +59 -0
  38. package/src/graphql/inputs/load-agent-state.input.ts +10 -0
  39. package/src/graphql/inputs/message.input.ts +110 -0
  40. package/src/graphql/inputs/meta-event.input.ts +18 -0
  41. package/src/graphql/message-conversion/agui-to-gql.test.ts +1263 -0
  42. package/src/graphql/message-conversion/agui-to-gql.ts +333 -0
  43. package/src/graphql/message-conversion/gql-to-agui.test.ts +1580 -0
  44. package/src/graphql/message-conversion/gql-to-agui.ts +278 -0
  45. package/src/graphql/message-conversion/index.ts +2 -0
  46. package/src/graphql/message-conversion/roundtrip-conversion.test.ts +526 -0
  47. package/src/graphql/resolvers/copilot.resolver.ts +708 -0
  48. package/src/graphql/resolvers/state.resolver.ts +27 -0
  49. package/src/graphql/types/agents-response.type.ts +19 -0
  50. package/src/graphql/types/base/index.ts +10 -0
  51. package/src/graphql/types/converted/index.ts +176 -0
  52. package/src/graphql/types/copilot-response.type.ts +138 -0
  53. package/src/graphql/types/enums.ts +38 -0
  54. package/src/graphql/types/extensions-response.type.ts +23 -0
  55. package/src/graphql/types/guardrails-result.type.ts +20 -0
  56. package/src/graphql/types/load-agent-state-response.type.ts +17 -0
  57. package/src/graphql/types/message-status.type.ts +42 -0
  58. package/src/graphql/types/meta-events.type.ts +71 -0
  59. package/src/graphql/types/response-status.type.ts +66 -0
  60. package/src/index.ts +4 -0
  61. package/src/langgraph.ts +1 -0
  62. package/src/lib/cloud/index.ts +4 -0
  63. package/src/lib/error-messages.ts +200 -0
  64. package/src/lib/index.ts +52 -0
  65. package/src/lib/integrations/index.ts +6 -0
  66. package/src/lib/integrations/nest/index.ts +14 -0
  67. package/src/lib/integrations/nextjs/app-router.ts +38 -0
  68. package/src/lib/integrations/nextjs/pages-router.ts +39 -0
  69. package/src/lib/integrations/node-express/index.ts +14 -0
  70. package/src/lib/integrations/node-http/index.ts +143 -0
  71. package/src/lib/integrations/node-http/request-handler.ts +111 -0
  72. package/src/lib/integrations/shared.ts +161 -0
  73. package/src/lib/logger.ts +28 -0
  74. package/src/lib/observability.ts +160 -0
  75. package/src/lib/runtime/__tests__/copilot-runtime-error.test.ts +169 -0
  76. package/src/lib/runtime/__tests__/mcp-tools-utils.test.ts +464 -0
  77. package/src/lib/runtime/agent-integrations/langgraph/agent.ts +209 -0
  78. package/src/lib/runtime/agent-integrations/langgraph/consts.ts +34 -0
  79. package/src/lib/runtime/agent-integrations/langgraph/index.ts +2 -0
  80. package/src/lib/runtime/copilot-runtime.ts +710 -0
  81. package/src/lib/runtime/mcp-tools-utils.ts +254 -0
  82. package/src/lib/runtime/retry-utils.ts +96 -0
  83. package/src/lib/runtime/telemetry-agent-runner.ts +139 -0
  84. package/src/lib/runtime/types.ts +49 -0
  85. package/src/lib/runtime/utils.ts +87 -0
  86. package/src/lib/streaming.ts +202 -0
  87. package/src/lib/telemetry-client.ts +64 -0
  88. package/src/service-adapters/anthropic/anthropic-adapter.ts +452 -0
  89. package/src/service-adapters/anthropic/utils.ts +152 -0
  90. package/src/service-adapters/bedrock/bedrock-adapter.ts +73 -0
  91. package/src/service-adapters/conversion.ts +67 -0
  92. package/src/service-adapters/empty/empty-adapter.ts +38 -0
  93. package/src/service-adapters/events.ts +294 -0
  94. package/src/service-adapters/experimental/ollama/ollama-adapter.ts +84 -0
  95. package/src/service-adapters/google/google-genai-adapter.test.ts +104 -0
  96. package/src/service-adapters/google/google-genai-adapter.ts +88 -0
  97. package/src/service-adapters/groq/groq-adapter.ts +203 -0
  98. package/src/service-adapters/index.ts +18 -0
  99. package/src/service-adapters/langchain/langchain-adapter.ts +111 -0
  100. package/src/service-adapters/langchain/langserve.ts +88 -0
  101. package/src/service-adapters/langchain/types.ts +14 -0
  102. package/src/service-adapters/langchain/utils.ts +313 -0
  103. package/src/service-adapters/openai/openai-adapter.ts +283 -0
  104. package/src/service-adapters/openai/openai-assistant-adapter.ts +344 -0
  105. package/src/service-adapters/openai/utils.ts +199 -0
  106. package/src/service-adapters/service-adapter.ts +41 -0
  107. package/src/service-adapters/shared/error-utils.ts +61 -0
  108. package/src/service-adapters/shared/index.ts +1 -0
  109. package/src/service-adapters/unify/unify-adapter.ts +151 -0
  110. package/src/utils/failed-response-status-reasons.ts +70 -0
  111. package/src/utils/index.ts +1 -0
  112. package/src/v2/index.ts +3 -0
  113. package/tests/global.d.ts +13 -0
  114. package/tests/service-adapters/anthropic/allowlist-approach.test.ts +226 -0
  115. package/tests/service-adapters/anthropic/anthropic-adapter.test.ts +389 -0
  116. package/tests/service-adapters/openai/allowlist-approach.test.ts +238 -0
  117. package/tests/service-adapters/openai/openai-adapter.test.ts +301 -0
  118. package/tests/setup.jest.ts +21 -0
  119. package/tests/tsconfig.json +10 -0
  120. package/tsconfig.json +13 -0
  121. package/tsup.config.ts +20 -0
  122. package/typedoc.json +4 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,2905 @@
1
+ # @copilotkit/runtime
2
+
3
+ ## 0.0.0-0.0.0-max-changeset-10101010101010-20260109191632
4
+
5
+ ### Patch Changes
6
+
7
+ - 4fb8075: fix: restore and fix handle method in node http
8
+ - 6da0e74: Update versioning strategy
9
+ - 4fb8075: fix: use direct hono node integration on node-http integration
10
+ - Updated dependencies [6da0e74]
11
+ - @copilotkitnext/runtime@0.0.0-0.0.0-max-changeset-10101010101010-20260109191632
12
+ - @copilotkit/shared@0.0.0-0.0.0-max-changeset-10101010101010-20260109191632
13
+ - @copilotkitnext/agent@0.0.0-0.0.0-max-changeset-10101010101010-20260109191632
14
+
15
+ ## 1.50.2-next.0
16
+
17
+ ### Patch Changes
18
+
19
+ - cf245a6: fix: restore and fix handle method in node http
20
+ - cf245a6: fix: use direct hono node integration on node-http integration
21
+ - @copilotkit/shared@1.50.2-next.0
22
+
23
+ ## 1.50.1
24
+
25
+ ### Patch Changes
26
+
27
+ - 80dffec: Updated the default model and API version for the Google GenAI adapter
28
+ - eac8b20: - fix: use latest vnext
29
+ - Updated dependencies [80dffec]
30
+ - @copilotkit/shared@1.50.1
31
+
32
+ ## 1.50.1-next.3
33
+
34
+ ### Patch Changes
35
+
36
+ - eac8b20: - fix: use latest vnext
37
+ - @copilotkit/shared@1.50.1-next.3
38
+
39
+ ## 1.50.1-next.2
40
+
41
+ ### Patch Changes
42
+
43
+ - @copilotkit/shared@1.50.1-next.2
44
+
45
+ ## 1.50.1-next.1
46
+
47
+ ### Patch Changes
48
+
49
+ - @copilotkit/shared@1.50.1-next.1
50
+
51
+ ## 1.50.1-next.0
52
+
53
+ ### Patch Changes
54
+
55
+ - Updated the default model and API version for the Google GenAI adapter
56
+ - Updated dependencies
57
+ - @copilotkit/shared@1.50.1-next.0
58
+
59
+ ## 1.50.0
60
+
61
+ ### Minor Changes
62
+
63
+ - 0fc76d7: add new runner with telemetry baked in
64
+ - c942f9c: Minor fixes and stability improvements
65
+ - bad5f06: - feat: port old endpoint creators to 2.0
66
+ - eed6021: Updating to the latest version of vnext
67
+ - 3b7367e: Improving general stability around LangChain
68
+ - 7ff9ca7: Minor fixes and improvements
69
+ - 5a6029e: - fix(runtime): Update method for merging tools in assignToolsToAgent
70
+ - feat(runtime): Export v2 of the runtime as a subpackage
71
+ - 974875e: Lint and format code to resolve Prettier errors
72
+ - 4942f62: - feat: create rerouting CopilotRuntime
73
+ - 3bd484f: Minor fixes and stability improvements
74
+ - 5a534bf: fix telemetry in v1.50 runtime
75
+ - 769a06c: Refactor suggestions to not always run
76
+ - 788292b: Improving langchain dependency resolution
77
+ - eab69a2: Enabling the new inspector
78
+ - 0a7bfe0: Updating dependency versions across all packages
79
+
80
+ ### Patch Changes
81
+
82
+ - b780092: - fix: treeshake and make providers optional
83
+ - b0e3652: - chore: Update to latest of vnext
84
+ - d55a8bd: - feat(runtime): export v2 of the runtime as a subpackage
85
+ - fix(runtime): update method for merging tools in assignToolsToAgent
86
+ - fix: remove redundant agent instantiation code
87
+ - aee1e42: - fix: use hono node directly instead of express for the node http integration
88
+ - 18ba908: - fix: unpack and set agents as promise, to avoid delaying runtime instantiation
89
+ - c70210e: - feat: use copilotnext's single endpoint
90
+ - Updated dependencies [0fc76d7]
91
+ - Updated dependencies [c942f9c]
92
+ - Updated dependencies [b0e3652]
93
+ - Updated dependencies [eed6021]
94
+ - Updated dependencies [3b7367e]
95
+ - Updated dependencies [7ff9ca7]
96
+ - Updated dependencies [974875e]
97
+ - Updated dependencies [4942f62]
98
+ - Updated dependencies [3bd484f]
99
+ - Updated dependencies [5a534bf]
100
+ - Updated dependencies [769a06c]
101
+ - Updated dependencies [788292b]
102
+ - Updated dependencies [eab69a2]
103
+ - Updated dependencies [0a7bfe0]
104
+ - @copilotkit/shared@1.50.0
105
+
106
+ ## 1.50.0-beta.19
107
+
108
+ ### Minor Changes
109
+
110
+ - Improving langchain dependency resolution
111
+
112
+ ### Patch Changes
113
+
114
+ - Updated dependencies
115
+ - @copilotkit/shared@1.50.0-beta.19
116
+
117
+ ## 1.50.0-beta.18
118
+
119
+ ### Minor Changes
120
+
121
+ - Improving general stability around LangChain
122
+
123
+ ### Patch Changes
124
+
125
+ - Updated dependencies
126
+ - @copilotkit/shared@1.50.0-beta.18
127
+
128
+ ## 1.50.0-beta.17
129
+
130
+ ### Minor Changes
131
+
132
+ - Minor fixes and improvements
133
+
134
+ ### Patch Changes
135
+
136
+ - Updated dependencies
137
+ - @copilotkit/shared@1.50.0-beta.17
138
+
139
+ ## 1.50.0-beta.16
140
+
141
+ ### Minor Changes
142
+
143
+ - Minor fixes and stability improvements
144
+
145
+ ### Patch Changes
146
+
147
+ - Updated dependencies
148
+ - @copilotkit/shared@1.50.0-beta.16
149
+
150
+ ## 1.50.0-beta.15
151
+
152
+ ### Minor Changes
153
+
154
+ - Lint and format code to resolve Prettier errors
155
+
156
+ ### Patch Changes
157
+
158
+ - Updated dependencies
159
+ - @copilotkit/shared@1.50.0-beta.15
160
+
161
+ ## 1.50.0-beta.14
162
+
163
+ ### Minor Changes
164
+
165
+ - Minor fixes and stability improvements
166
+
167
+ ### Patch Changes
168
+
169
+ - Updated dependencies
170
+ - @copilotkit/shared@1.50.0-beta.14
171
+
172
+ ## 1.50.0-beta.13
173
+
174
+ ### Minor Changes
175
+
176
+ - Updating to the latest version of vnext
177
+
178
+ ### Patch Changes
179
+
180
+ - Updated dependencies
181
+ - @copilotkit/shared@1.50.0-beta.13
182
+
183
+ ## 1.50.0-beta.12
184
+
185
+ ### Minor Changes
186
+
187
+ - eab69a2: Enabling the new inspector
188
+
189
+ ### Patch Changes
190
+
191
+ - Updated dependencies [eab69a2]
192
+ - @copilotkit/shared@1.50.0-beta.12
193
+
194
+ ## 1.50.0-beta.11
195
+
196
+ ### Minor Changes
197
+
198
+ - fix telemetry in v1.50 runtime
199
+
200
+ ### Patch Changes
201
+
202
+ - Updated dependencies
203
+ - @copilotkit/shared@1.50.0-beta.11
204
+
205
+ ## 1.50.0-beta.10
206
+
207
+ ### Minor Changes
208
+
209
+ - add new runner with telemetry baked in
210
+
211
+ ### Patch Changes
212
+
213
+ - Updated dependencies
214
+ - @copilotkit/shared@1.50.0-beta.10
215
+
216
+ ## 1.50.0-beta.9
217
+
218
+ ### Minor Changes
219
+
220
+ - Refactor suggestions to not always run
221
+
222
+ ### Patch Changes
223
+
224
+ - Updated dependencies
225
+ - @copilotkit/shared@1.50.0-beta.9
226
+
227
+ ## 1.50.0-beta.8
228
+
229
+ ### Patch Changes
230
+
231
+ - @copilotkit/shared@1.50.0-beta.8
232
+
233
+ ## 1.50.0-beta.7
234
+
235
+ ### Patch Changes
236
+
237
+ - @copilotkit/shared@1.50.0-beta.7
238
+
239
+ ## 1.50.0-beta.6
240
+
241
+ ### Minor Changes
242
+
243
+ - Updating dependency versions across all packages
244
+
245
+ ### Patch Changes
246
+
247
+ - Updated dependencies
248
+ - @copilotkit/shared@1.50.0-beta.6
249
+
250
+ ## 1.50.0-beta.4
251
+
252
+ ### Minor Changes
253
+
254
+ - bad5f06: - feat: port old endpoint creators to 2.0
255
+ - 5a6029e: - fix(runtime): Update method for merging tools in assignToolsToAgent
256
+ - feat(runtime): Export v2 of the runtime as a subpackage
257
+ - 4942f62: - feat: create rerouting CopilotRuntime
258
+
259
+ ### Patch Changes
260
+
261
+ - b780092: - fix: treeshake and make providers optional
262
+ - b0e3652: - chore: Update to latest of vnext
263
+ - d55a8bd: - feat(runtime): export v2 of the runtime as a subpackage
264
+ - fix(runtime): update method for merging tools in assignToolsToAgent
265
+ - fix: remove redundant agent instantiation code
266
+ - aee1e42: - fix: use hono node directly instead of express for the node http integration
267
+ - 18ba908: - fix: unpack and set agents as promise, to avoid delaying runtime instantiation
268
+ - c70210e: - feat: use copilotnext's single endpoint
269
+ - Updated dependencies [b0e3652]
270
+ - Updated dependencies [4942f62]
271
+ - @copilotkit/shared@1.50.0-beta.4
272
+
273
+ ## 1.10.7-next.0
274
+
275
+ ### Patch Changes
276
+
277
+ - @copilotkit/shared@1.10.7-next.0
278
+
279
+ ## 1.10.6
280
+
281
+ ### Patch Changes
282
+
283
+ - 01e0a4b: - fix: use all AGUI as peer dependencies
284
+ - e0dd5d5: - feat: allow additional config in direct to llm actions
285
+ - 7455309: - feat: use latest agui langgraph integration packages
286
+ - Updated dependencies [e0dd5d5]
287
+ - @copilotkit/shared@1.10.6
288
+
289
+ ## 1.10.6-next.6
290
+
291
+ ### Patch Changes
292
+
293
+ - 7455309: - feat: use latest agui langgraph integration packages
294
+ - @copilotkit/shared@1.10.6-next.6
295
+
296
+ ## 1.10.6-next.5
297
+
298
+ ### Patch Changes
299
+
300
+ - e0dd5d5: - feat: allow additional config in direct to llm actions
301
+ - Updated dependencies [e0dd5d5]
302
+ - @copilotkit/shared@1.10.6-next.5
303
+
304
+ ## 1.10.6-next.4
305
+
306
+ ### Patch Changes
307
+
308
+ - @copilotkit/shared@1.10.6-next.4
309
+
310
+ ## 1.10.6-next.3
311
+
312
+ ### Patch Changes
313
+
314
+ - 01e0a4b: - fix: use all AGUI as peer dependencies
315
+ - @copilotkit/shared@1.10.6-next.3
316
+
317
+ ## 1.10.6-next.2
318
+
319
+ ### Patch Changes
320
+
321
+ - @copilotkit/shared@1.10.6-next.2
322
+
323
+ ## 1.10.6-next.1
324
+
325
+ ### Patch Changes
326
+
327
+ - @copilotkit/shared@1.10.6-next.1
328
+
329
+ ## 1.10.6-next.0
330
+
331
+ ### Patch Changes
332
+
333
+ - @copilotkit/shared@1.10.6-next.0
334
+
335
+ ## 1.10.5
336
+
337
+ ### Patch Changes
338
+
339
+ - b7bc3a0: - feat: pass copilot readable context to agui agents
340
+ - f199c94: - feat: update agui packages
341
+ - 7467f97: - feat: add stop generation callback and call abort agui agent
342
+ - e730369: - feat: use latest agui langgraph package
343
+ - feat: use latest agui fastapi langgraph package and dependencies
344
+ - c9e32b0: - fix: upgrade agui langgraph version
345
+ - 23fe6a1: - chore: publish python sdk using latest agui
346
+ - feat: use latest agui packages
347
+ - @copilotkit/shared@1.10.5
348
+
349
+ ## 1.10.5-next.10
350
+
351
+ ### Patch Changes
352
+
353
+ - @copilotkit/shared@1.10.5-next.10
354
+
355
+ ## 1.10.5-next.9
356
+
357
+ ### Patch Changes
358
+
359
+ - f199c94: - feat: update agui packages
360
+ - @copilotkit/shared@1.10.5-next.9
361
+
362
+ ## 1.10.5-next.8
363
+
364
+ ### Patch Changes
365
+
366
+ - @copilotkit/shared@1.10.5-next.8
367
+
368
+ ## 1.10.5-next.7
369
+
370
+ ### Patch Changes
371
+
372
+ - c9e32b0: - fix: upgrade agui langgraph version
373
+ - @copilotkit/shared@1.10.5-next.7
374
+
375
+ ## 1.10.5-next.6
376
+
377
+ ### Patch Changes
378
+
379
+ - @copilotkit/shared@1.10.5-next.6
380
+
381
+ ## 1.10.5-next.5
382
+
383
+ ### Patch Changes
384
+
385
+ - @copilotkit/shared@1.10.5-next.5
386
+
387
+ ## 1.10.5-next.4
388
+
389
+ ### Patch Changes
390
+
391
+ - e730369: - feat: use latest agui langgraph package
392
+ - feat: use latest agui fastapi langgraph package and dependencies
393
+ - @copilotkit/shared@1.10.5-next.4
394
+
395
+ ## 1.10.5-next.3
396
+
397
+ ### Patch Changes
398
+
399
+ - 23fe6a1: - chore: publish python sdk using latest agui
400
+ - feat: use latest agui packages
401
+ - @copilotkit/shared@1.10.5-next.3
402
+
403
+ ## 1.10.5-next.2
404
+
405
+ ### Patch Changes
406
+
407
+ - 7467f97: - feat: add stop generation callback and call abort agui agent
408
+ - @copilotkit/shared@1.10.5-next.2
409
+
410
+ ## 1.10.5-next.1
411
+
412
+ ### Patch Changes
413
+
414
+ - b7bc3a0: - feat: pass copilot readable context to agui agents
415
+ - @copilotkit/shared@1.10.5-next.1
416
+
417
+ ## 1.10.5-next.0
418
+
419
+ ### Patch Changes
420
+
421
+ - @copilotkit/shared@1.10.5-next.0
422
+
423
+ ## 1.10.4
424
+
425
+ ### Patch Changes
426
+
427
+ - a640d8e: - feat: update latest agui langgraph for subgraphs support
428
+ - feat: update latest agui core packages
429
+ - Updated dependencies [a640d8e]
430
+ - @copilotkit/shared@1.10.4
431
+
432
+ ## 1.10.4-next.3
433
+
434
+ ### Patch Changes
435
+
436
+ - @copilotkit/shared@1.10.4-next.3
437
+
438
+ ## 1.10.4-next.2
439
+
440
+ ### Patch Changes
441
+
442
+ - @copilotkit/shared@1.10.4-next.2
443
+
444
+ ## 1.10.4-next.1
445
+
446
+ ### Patch Changes
447
+
448
+ - a640d8e: - feat: update latest agui langgraph for subgraphs support
449
+ - feat: update latest agui core packages
450
+ - Updated dependencies [a640d8e]
451
+ - @copilotkit/shared@1.10.4-next.1
452
+
453
+ ## 1.10.4-next.0
454
+
455
+ ### Patch Changes
456
+
457
+ - @copilotkit/shared@1.10.4-next.0
458
+
459
+ ## 1.10.3
460
+
461
+ ### Patch Changes
462
+
463
+ - ea74047: - fix: surface run errors from agui
464
+ - a7bb2f0: - fix: fix how node names are read to support newer langgraph versions
465
+ - 21e12af: - feat: send streamSubgraphs forwarded prop to AGUI
466
+ - Updated dependencies [ea74047]
467
+ - @copilotkit/shared@1.10.3
468
+
469
+ ## 1.10.3-next.3
470
+
471
+ ### Patch Changes
472
+
473
+ - 21e12af: - feat: send streamSubgraphs forwarded prop to AGUI
474
+ - @copilotkit/shared@1.10.3-next.3
475
+
476
+ ## 1.10.3-next.2
477
+
478
+ ### Patch Changes
479
+
480
+ - a7bb2f0: - fix: fix how node names are read to support newer langgraph versions
481
+ - @copilotkit/shared@1.10.3-next.2
482
+
483
+ ## 1.10.3-next.1
484
+
485
+ ### Patch Changes
486
+
487
+ - @copilotkit/shared@1.10.3-next.1
488
+
489
+ ## 1.10.3-next.0
490
+
491
+ ### Patch Changes
492
+
493
+ - ea74047: - fix: surface run errors from agui
494
+ - Updated dependencies [ea74047]
495
+ - @copilotkit/shared@1.10.3-next.0
496
+
497
+ ## 1.10.2
498
+
499
+ ### Patch Changes
500
+
501
+ - @copilotkit/shared@1.10.2
502
+
503
+ ## 1.10.2-next.0
504
+
505
+ ### Patch Changes
506
+
507
+ - @copilotkit/shared@1.10.2-next.0
508
+
509
+ ## 1.10.1
510
+
511
+ ### Patch Changes
512
+
513
+ - @copilotkit/shared@1.10.1
514
+
515
+ ## 1.10.1-next.2
516
+
517
+ ### Patch Changes
518
+
519
+ - @copilotkit/shared@1.10.1-next.2
520
+
521
+ ## 1.10.1-next.1
522
+
523
+ ### Patch Changes
524
+
525
+ - @copilotkit/shared@1.10.1-next.1
526
+
527
+ ## 1.10.1-next.0
528
+
529
+ ### Patch Changes
530
+
531
+ - @copilotkit/shared@1.10.1-next.0
532
+
533
+ ## 1.10.0
534
+
535
+ ### Patch Changes
536
+
537
+ - 1abcecf: - fix: add graphqlContext to constructAGUIRemoteAction for enhanced agent properties
538
+ - Updated constructAGUIRemoteAction to accept graphqlContext, allowing forwarding of properties like Authorization token to the agent.
539
+ - Modified setupRemoteActions to include graphqlContext in the parameters.
540
+
541
+ - 6f2f54b: - fix(openai): update maxTokens parameter to max_completion_tokens in OpenAIAdapter
542
+ - b5b94b9: - fix: throw errors when they happen with agui streams
543
+ - 824fb69: - fix: pass config to the forwarded props of an agui agent
544
+ - 59b0e16: - feat: add native prompt caching support to AnthropicAdapter
545
+ - a31443c: removed unused dependency on ip module
546
+ - dc6df18: - feat: use latest agui langgraph package
547
+ - chore: release python sdk 0.1.58
548
+ - Updated dependencies [a8c0263]
549
+ - Updated dependencies [8674da1]
550
+ - Updated dependencies [6d1de58]
551
+ - @copilotkit/shared@1.10.0
552
+
553
+ ## 1.10.0-next.13
554
+
555
+ ### Patch Changes
556
+
557
+ - b5b94b9: - fix: throw errors when they happen with agui streams
558
+ - @copilotkit/shared@1.10.0-next.13
559
+
560
+ ## 1.10.0-next.12
561
+
562
+ ### Patch Changes
563
+
564
+ - @copilotkit/shared@1.10.0-next.12
565
+
566
+ ## 1.10.0-next.11
567
+
568
+ ### Patch Changes
569
+
570
+ - dc6df18: - feat: use latest agui langgraph package
571
+ - chore: release python sdk 0.1.58
572
+ - @copilotkit/shared@1.10.0-next.11
573
+
574
+ ## 1.10.0-next.10
575
+
576
+ ### Patch Changes
577
+
578
+ - Updated dependencies [6d1de58]
579
+ - @copilotkit/shared@1.10.0-next.10
580
+
581
+ ## 1.10.0-next.9
582
+
583
+ ### Patch Changes
584
+
585
+ - @copilotkit/shared@1.10.0-next.9
586
+
587
+ ## 1.10.0-next.8
588
+
589
+ ### Patch Changes
590
+
591
+ - @copilotkit/shared@1.10.0-next.8
592
+
593
+ ## 1.10.0-next.7
594
+
595
+ ### Patch Changes
596
+
597
+ - 59b0e16: - feat: add native prompt caching support to AnthropicAdapter
598
+ - @copilotkit/shared@1.10.0-next.7
599
+
600
+ ## 1.10.0-next.6
601
+
602
+ ### Patch Changes
603
+
604
+ - 6f2f54b: - fix(openai): update maxTokens parameter to max_completion_tokens in OpenAIAdapter
605
+ - @copilotkit/shared@1.10.0-next.6
606
+
607
+ ## 1.10.0-next.5
608
+
609
+ ### Patch Changes
610
+
611
+ - Updated dependencies [a8c0263]
612
+ - @copilotkit/shared@1.10.0-next.5
613
+
614
+ ## 1.10.0-next.4
615
+
616
+ ### Patch Changes
617
+
618
+ - @copilotkit/shared@1.10.0-next.4
619
+
620
+ ## 1.10.0-next.3
621
+
622
+ ### Patch Changes
623
+
624
+ - 824fb69: - fix: pass config to the forwarded props of an agui agent
625
+ - @copilotkit/shared@1.10.0-next.3
626
+
627
+ ## 1.10.0-next.2
628
+
629
+ ### Patch Changes
630
+
631
+ - a31443c: removed unused dependency on ip module
632
+ - @copilotkit/shared@1.10.0-next.2
633
+
634
+ ## 1.10.0-next.1
635
+
636
+ ### Patch Changes
637
+
638
+ - 1abcecf: - fix: add graphqlContext to constructAGUIRemoteAction for enhanced agent properties
639
+ - Updated constructAGUIRemoteAction to accept graphqlContext, allowing forwarding of properties like Authorization token to the agent.
640
+ - Modified setupRemoteActions to include graphqlContext in the parameters.
641
+ - @copilotkit/shared@1.10.0-next.1
642
+
643
+ ## 1.10.0-next.0
644
+
645
+ ### Patch Changes
646
+
647
+ - Updated dependencies [8674da1]
648
+ - @copilotkit/shared@1.10.0-next.0
649
+
650
+ ## 1.9.3
651
+
652
+ ### Patch Changes
653
+
654
+ - 1bda332: - chore(telemetry): integrate Scarf for usage analytics
655
+ - df25f34: - feat: add agui fastAPI compatible langgraph agent
656
+ - chore: release 0.1.55 with agui langgraph fastapi support
657
+ - 589ae52: - adds scarf deps to runtime
658
+ - 88ceae2: - upgrade AG-UI packages
659
+ - Updated dependencies [1bda332]
660
+ - @copilotkit/shared@1.9.3
661
+
662
+ ## 1.9.3-next.4
663
+
664
+ ### Patch Changes
665
+
666
+ - @copilotkit/shared@1.9.3-next.4
667
+
668
+ ## 1.9.3-next.3
669
+
670
+ ### Patch Changes
671
+
672
+ - 1bda332: - chore(telemetry): integrate Scarf for usage analytics
673
+ - Updated dependencies [1bda332]
674
+ - @copilotkit/shared@1.9.3-next.3
675
+
676
+ ## 1.9.3-next.2
677
+
678
+ ### Patch Changes
679
+
680
+ - df25f34: - feat: add agui fastAPI compatible langgraph agent
681
+ - chore: release 0.1.55 with agui langgraph fastapi support
682
+ - @copilotkit/shared@1.9.3-next.2
683
+
684
+ ## 1.9.3-next.1
685
+
686
+ ### Patch Changes
687
+
688
+ - 589ae52: - adds scarf deps to runtime
689
+ - @copilotkit/shared@1.9.3-next.1
690
+
691
+ ## 1.9.3-next.0
692
+
693
+ ### Patch Changes
694
+
695
+ - 88ceae2: - upgrade AG-UI packages
696
+ - @copilotkit/shared@1.9.3-next.0
697
+
698
+ ## 1.9.2
699
+
700
+ ### Patch Changes
701
+
702
+ - f3f0181: - fix: connect streaming errors to runtime onError handler
703
+ - remove request logging
704
+ - 3a7f45f: - fix: resolve agui agents only after all other endpoints
705
+ - fac89c2: - refactor: rename onTrace to onError throughout codebase
706
+ - Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
707
+
708
+ - 7ca7023: - feat: send node name to agui agent
709
+ - 54b62f0: - fix: add default schema keys for input and output of agui langgraph
710
+ - 4fd92d1: - fix: enable resolving of langgraph agents when cpk starts
711
+ - 1f4949a: - fix: remove agent discovery for agui agents
712
+ - 9169ad7: - feat: add onTrace handler for runtime and UI error/event tracking
713
+ - f3f0181: - fix: connect streaming errors to runtime onError handler
714
+ - 8e67158: - fixes gemini adapter
715
+ - 83822d2: - fix: do not show error on state loading if thread does not exist
716
+ - fe9009c: - feat(langgraph): new thread metadata
717
+ - f295375: - fix: remove all agents as tools when there is an active agent session
718
+ - fix formatting
719
+ - 9b986ba: - fix: use active interrupt from thread instead of saving to global state
720
+ - 1d1c51d: - feat: surface all errors in structured format
721
+ - dec5527: - fix: only fetch agent state for langgraph agents
722
+ - 9b81464: - fix: use latest langgraph agui
723
+ - 10345a5: - feat: structured error visibility system for streaming errors
724
+ - 8ef8199: - fix: use latest agui dependencies to include required fixes
725
+ - 20e8c3c: - fix(anthropic-adapter): resolve infinite loop caused by duplicate result messages
726
+ - 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
727
+ - fix: extract publicApiKey for all requests + trace GraphQL errors
728
+ - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
729
+ - Ensures consistency in how parameters are passed to the execute function across the codebase.
730
+ - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
731
+ - Fixed generateMcpToolInstructions to properly extract parameters from schema.parameters.properties
732
+ - fix: enhance MCP schema support for complex types and remove duplicate headers
733
+ - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
734
+ - Updated dependencies [fac89c2]
735
+ - Updated dependencies [9169ad7]
736
+ - Updated dependencies [1d1c51d]
737
+ - Updated dependencies [10345a5]
738
+ - Updated dependencies [9169ad7]
739
+ - @copilotkit/shared@1.9.2
740
+
741
+ ## 1.9.2-next.26
742
+
743
+ ### Patch Changes
744
+
745
+ - 83822d2: - fix: do not show error on state loading if thread does not exist
746
+ - @copilotkit/shared@1.9.2-next.26
747
+
748
+ ## 1.9.2-next.25
749
+
750
+ ### Patch Changes
751
+
752
+ - f3f0181: - fix: connect streaming errors to runtime onError handler
753
+ - remove request logging
754
+ - f3f0181: - fix: connect streaming errors to runtime onError handler
755
+ - @copilotkit/shared@1.9.2-next.25
756
+
757
+ ## 1.9.2-next.24
758
+
759
+ ### Patch Changes
760
+
761
+ - 8ef8199: - fix: use latest agui dependencies to include required fixes
762
+ - @copilotkit/shared@1.9.2-next.24
763
+
764
+ ## 1.9.2-next.23
765
+
766
+ ### Patch Changes
767
+
768
+ - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
769
+ - Ensures consistency in how parameters are passed to the execute function across the codebase.
770
+ - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
771
+ - Fixed generateMcpToolInstructions to properly extract parameters from schema.parameters.properties
772
+ - fix: enhance MCP schema support for complex types and remove duplicate headers
773
+ - fc6b653: - Fix extract toolParameters in extractParametersFromSchema
774
+ - @copilotkit/shared@1.9.2-next.23
775
+
776
+ ## 1.9.2-next.22
777
+
778
+ ### Patch Changes
779
+
780
+ - @copilotkit/shared@1.9.2-next.22
781
+
782
+ ## 1.9.2-next.21
783
+
784
+ ### Patch Changes
785
+
786
+ - @copilotkit/shared@1.9.2-next.21
787
+
788
+ ## 1.9.2-next.20
789
+
790
+ ### Patch Changes
791
+
792
+ - @copilotkit/shared@1.9.2-next.20
793
+
794
+ ## 1.9.2-next.19
795
+
796
+ ### Patch Changes
797
+
798
+ - 8e67158: - fixes gemini adapter
799
+ - @copilotkit/shared@1.9.2-next.19
800
+
801
+ ## 1.9.2-next.18
802
+
803
+ ### Patch Changes
804
+
805
+ - fac89c2: - refactor: rename onTrace to onError throughout codebase
806
+ - Rename CopilotTraceEvent to CopilotErrorEvent and CopilotTraceHandler to CopilotErrorHandler
807
+
808
+ - Updated dependencies [fac89c2]
809
+ - @copilotkit/shared@1.9.2-next.18
810
+
811
+ ## 1.9.2-next.17
812
+
813
+ ### Patch Changes
814
+
815
+ - 7ca7023: - feat: send node name to agui agent
816
+ - @copilotkit/shared@1.9.2-next.17
817
+
818
+ ## 1.9.2-next.16
819
+
820
+ ### Patch Changes
821
+
822
+ - fe9009c: - feat(langgraph): new thread metadata
823
+ - @copilotkit/shared@1.9.2-next.16
824
+
825
+ ## 1.9.2-next.15
826
+
827
+ ### Patch Changes
828
+
829
+ - @copilotkit/shared@1.9.2-next.15
830
+
831
+ ## 1.9.2-next.14
832
+
833
+ ### Patch Changes
834
+
835
+ - 3a7f45f: - fix: resolve agui agents only after all other endpoints
836
+ - @copilotkit/shared@1.9.2-next.14
837
+
838
+ ## 1.9.2-next.13
839
+
840
+ ### Patch Changes
841
+
842
+ - dec5527: - fix: only fetch agent state for langgraph agents
843
+ - @copilotkit/shared@1.9.2-next.13
844
+
845
+ ## 1.9.2-next.12
846
+
847
+ ### Patch Changes
848
+
849
+ - @copilotkit/shared@1.9.2-next.12
850
+
851
+ ## 1.9.2-next.11
852
+
853
+ ### Patch Changes
854
+
855
+ - 1f4949a: - fix: remove agent discovery for agui agents
856
+ - @copilotkit/shared@1.9.2-next.11
857
+
858
+ ## 1.9.2-next.10
859
+
860
+ ### Patch Changes
861
+
862
+ - 20e8c3c: - fix(anthropic-adapter): resolve infinite loop caused by duplicate result messages
863
+ - @copilotkit/shared@1.9.2-next.10
864
+
865
+ ## 1.9.2-next.9
866
+
867
+ ### Patch Changes
868
+
869
+ - 1d1c51d: - feat: surface all errors in structured format
870
+ - Updated dependencies [1d1c51d]
871
+ - @copilotkit/shared@1.9.2-next.9
872
+
873
+ ## 1.9.2-next.8
874
+
875
+ ### Patch Changes
876
+
877
+ - 9b986ba: - fix: use active interrupt from thread instead of saving to global state
878
+ - @copilotkit/shared@1.9.2-next.8
879
+
880
+ ## 1.9.2-next.7
881
+
882
+ ### Patch Changes
883
+
884
+ - 54b62f0: - fix: add default schema keys for input and output of agui langgraph
885
+ - @copilotkit/shared@1.9.2-next.7
886
+
887
+ ## 1.9.2-next.6
888
+
889
+ ### Patch Changes
890
+
891
+ - 4fd92d1: - fix: enable resolving of langgraph agents when cpk starts
892
+ - @copilotkit/shared@1.9.2-next.6
893
+
894
+ ## 1.9.2-next.5
895
+
896
+ ### Patch Changes
897
+
898
+ - @copilotkit/shared@1.9.2-next.5
899
+
900
+ ## 1.9.2-next.4
901
+
902
+ ### Patch Changes
903
+
904
+ - 9169ad7: - feat: add onTrace handler for runtime and UI error/event tracking
905
+ - 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
906
+ - fix: extract publicApiKey for all requests + trace GraphQL errors
907
+ - Updated dependencies [9169ad7]
908
+ - Updated dependencies [9169ad7]
909
+ - @copilotkit/shared@1.9.2-next.4
910
+
911
+ ## 1.9.2-next.3
912
+
913
+ ### Patch Changes
914
+
915
+ - @copilotkit/shared@1.9.2-next.3
916
+
917
+ ## 1.9.2-next.2
918
+
919
+ ### Patch Changes
920
+
921
+ - 9b81464: - fix: use latest langgraph agui
922
+ - @copilotkit/shared@1.9.2-next.2
923
+
924
+ ## 1.9.2-next.1
925
+
926
+ ### Patch Changes
927
+
928
+ - f295375: - fix: remove all agents as tools when there is an active agent session
929
+ - fix formatting
930
+ - @copilotkit/shared@1.9.2-next.1
931
+
932
+ ## 1.9.2-next.0
933
+
934
+ ### Patch Changes
935
+
936
+ - 10345a5: - feat: structured error visibility system for streaming errors
937
+ - Updated dependencies [10345a5]
938
+ - @copilotkit/shared@1.9.2-next.0
939
+
940
+ ## 1.9.1
941
+
942
+ ### Patch Changes
943
+
944
+ - deaeca0: - feat: Add public key
945
+
946
+ Signed-off-by: Luis Valdes <luis@copilotkit.ai>
947
+
948
+ - Updated dependencies [deaeca0]
949
+ - @copilotkit/shared@1.9.1
950
+
951
+ ## 1.9.1-next.0
952
+
953
+ ### Patch Changes
954
+
955
+ - deaeca0: - feat: Add public key
956
+
957
+ Signed-off-by: Luis Valdes <luis@copilotkit.ai>
958
+
959
+ - Updated dependencies [deaeca0]
960
+ - @copilotkit/shared@1.9.1-next.0
961
+
962
+ ## 1.9.0
963
+
964
+ ### Minor Changes
965
+
966
+ - 8408d58: - feat: create copilotkit agui langgraph agent
967
+ - docs: replace remote endpoint with AGUI agent
968
+
969
+ ### Patch Changes
970
+
971
+ - c120e07: - refactor(react-ui): pass full message to onThumbsUp and onThumbsDown handlers
972
+ - 54cae30: - fix(react-core): allow custom toolChoice in forwardedParameters to override default
973
+ - fix: move react-dom to peerDependencies in @copilotkit/react-textarea
974
+ - feat: add amazon bedrock adapter support
975
+ - @copilotkit/shared@1.9.0
976
+
977
+ ## 1.9.0-next.2
978
+
979
+ ### Minor Changes
980
+
981
+ - 8408d58: - feat: create copilotkit agui langgraph agent
982
+ - docs: replace remote endpoint with AGUI agent
983
+
984
+ ### Patch Changes
985
+
986
+ - @copilotkit/shared@1.9.0-next.2
987
+
988
+ ## 1.8.15-next.1
989
+
990
+ ### Patch Changes
991
+
992
+ - 54cae30: - fix(react-core): allow custom toolChoice in forwardedParameters to override default
993
+ - fix: move react-dom to peerDependencies in @copilotkit/react-textarea
994
+ - feat: add amazon bedrock adapter support
995
+ - @copilotkit/shared@1.8.15-next.1
996
+
997
+ ## 1.8.15-next.0
998
+
999
+ ### Patch Changes
1000
+
1001
+ - c120e07: - refactor(react-ui): pass full message to onThumbsUp and onThumbsDown handlers
1002
+ - @copilotkit/shared@1.8.15-next.0
1003
+
1004
+ ## 1.8.14
1005
+
1006
+ ### Patch Changes
1007
+
1008
+ - ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
1009
+ - fix(runtime): filter empty text messages in AnthropicAdapter
1010
+ - 9d33836: - fix: prepare cpk agui wiring for ag-ui langgraph support
1011
+ - 12b8ca8: - fix: fix cpk agui wiring for langgraph
1012
+ - ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
1013
+ - 1af7333: - docs: updates ag-ui agent interface
1014
+ - Updated dependencies [34a78d8]
1015
+ - @copilotkit/shared@1.8.14
1016
+
1017
+ ## 1.8.14-next.5
1018
+
1019
+ ### Patch Changes
1020
+
1021
+ - ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
1022
+ - fix(runtime): filter empty text messages in AnthropicAdapter
1023
+ - ddd4165: - fix(runtime): filter empty AIMessages in GoogleGenerativeAIAdapter
1024
+ - @copilotkit/shared@1.8.14-next.5
1025
+
1026
+ ## 1.8.14-next.4
1027
+
1028
+ ### Patch Changes
1029
+
1030
+ - 12b8ca8: - fix: fix cpk agui wiring for langgraph
1031
+ - @copilotkit/shared@1.8.14-next.4
1032
+
1033
+ ## 1.8.14-next.3
1034
+
1035
+ ### Patch Changes
1036
+
1037
+ - 9d33836: - fix: prepare cpk agui wiring for ag-ui langgraph support
1038
+ - @copilotkit/shared@1.8.14-next.3
1039
+
1040
+ ## 1.8.14-next.2
1041
+
1042
+ ### Patch Changes
1043
+
1044
+ - 1af7333: - docs: updates ag-ui agent interface
1045
+ - @copilotkit/shared@1.8.14-next.2
1046
+
1047
+ ## 1.8.14-next.1
1048
+
1049
+ ### Patch Changes
1050
+
1051
+ - Updated dependencies [34a78d8]
1052
+ - @copilotkit/shared@1.8.14-next.1
1053
+
1054
+ ## 1.8.14-next.0
1055
+
1056
+ ### Patch Changes
1057
+
1058
+ - @copilotkit/shared@1.8.14-next.0
1059
+
1060
+ ## 1.8.13
1061
+
1062
+ ### Patch Changes
1063
+
1064
+ - 6ed54f4: - AG-UI 0.0.28
1065
+ - @copilotkit/shared@1.8.13
1066
+
1067
+ ## 1.8.13-next.3
1068
+
1069
+ ### Patch Changes
1070
+
1071
+ - @copilotkit/shared@1.8.13-next.3
1072
+
1073
+ ## 1.8.13-next.2
1074
+
1075
+ ### Patch Changes
1076
+
1077
+ - @copilotkit/shared@1.8.13-next.2
1078
+
1079
+ ## 1.8.13-next.1
1080
+
1081
+ ### Patch Changes
1082
+
1083
+ - @copilotkit/shared@1.8.13-next.1
1084
+
1085
+ ## 1.8.13-next.0
1086
+
1087
+ ### Patch Changes
1088
+
1089
+ - 6ed54f4: - AG-UI 0.0.28
1090
+ - @copilotkit/shared@1.8.13-next.0
1091
+
1092
+ ## 1.8.12
1093
+
1094
+ ### Patch Changes
1095
+
1096
+ - 54838cb: - feat: allow keeping system role for openai adapters
1097
+ - 2b89ad7: - fix: use latest claude 3.5 as default model instead of specific
1098
+ - chore: add missing variable assignment in llm provider docs
1099
+ - chore: add missing call to fetch azure api key in docs
1100
+ - f419d99: - fix: Implement allowlist approach to prevent duplicate tool_result blocks in API calls to OpenAI and Anthropic
1101
+ - @copilotkit/shared@1.8.12
1102
+
1103
+ ## 1.8.12-next.6
1104
+
1105
+ ### Patch Changes
1106
+
1107
+ - @copilotkit/shared@1.8.12-next.6
1108
+
1109
+ ## 1.8.12-next.5
1110
+
1111
+ ### Patch Changes
1112
+
1113
+ - @copilotkit/shared@1.8.12-next.5
1114
+
1115
+ ## 1.8.12-next.4
1116
+
1117
+ ### Patch Changes
1118
+
1119
+ - f419d99: - fix: Implement allowlist approach to prevent duplicate tool_result blocks in API calls to OpenAI and Anthropic
1120
+ - @copilotkit/shared@1.8.12-next.4
1121
+
1122
+ ## 1.8.12-next.3
1123
+
1124
+ ### Patch Changes
1125
+
1126
+ - @copilotkit/shared@1.8.12-next.3
1127
+
1128
+ ## 1.8.12-next.2
1129
+
1130
+ ### Patch Changes
1131
+
1132
+ - @copilotkit/shared@1.8.12-next.2
1133
+
1134
+ ## 1.8.12-next.1
1135
+
1136
+ ### Patch Changes
1137
+
1138
+ - 54838cb: - feat: allow keeping system role for openai adapters
1139
+ - @copilotkit/shared@1.8.12-next.1
1140
+
1141
+ ## 1.8.12-next.0
1142
+
1143
+ ### Patch Changes
1144
+
1145
+ - 2b89ad7: - fix: use latest claude 3.5 as default model instead of specific
1146
+ - chore: add missing variable assignment in llm provider docs
1147
+ - chore: add missing call to fetch azure api key in docs
1148
+ - @copilotkit/shared@1.8.12-next.0
1149
+
1150
+ ## 1.8.11
1151
+
1152
+ ### Patch Changes
1153
+
1154
+ - 52d0bb5: - fix: do not attempt to hash lgc key if it doesnt exist
1155
+ - fix: accept null on langsmith api key
1156
+ - @copilotkit/shared@1.8.11
1157
+
1158
+ ## 1.8.11-next.1
1159
+
1160
+ ### Patch Changes
1161
+
1162
+ - 52d0bb5: - fix: do not attempt to hash lgc key if it doesnt exist
1163
+ - fix: accept null on langsmith api key
1164
+ - @copilotkit/shared@1.8.11-next.1
1165
+
1166
+ ## 1.8.11-next.0
1167
+
1168
+ ### Patch Changes
1169
+
1170
+ - @copilotkit/shared@1.8.11-next.0
1171
+
1172
+ ## 1.8.10
1173
+
1174
+ ### Patch Changes
1175
+
1176
+ - f3a0a33: - updates ag-ui deps
1177
+ - 742efbb: - feat: enable setting langgraph config from ui
1178
+ - chore: document usage of new config
1179
+ - @copilotkit/shared@1.8.10
1180
+
1181
+ ## 1.8.10-next.3
1182
+
1183
+ ### Patch Changes
1184
+
1185
+ - @copilotkit/shared@1.8.10-next.3
1186
+
1187
+ ## 1.8.10-next.2
1188
+
1189
+ ### Patch Changes
1190
+
1191
+ - f3a0a33: - updates ag-ui deps
1192
+ - @copilotkit/shared@1.8.10-next.2
1193
+
1194
+ ## 1.8.10-next.1
1195
+
1196
+ ### Patch Changes
1197
+
1198
+ - @copilotkit/shared@1.8.10-next.1
1199
+
1200
+ ## 1.8.10-next.0
1201
+
1202
+ ### Patch Changes
1203
+
1204
+ - 742efbb: - feat: enable setting langgraph config from ui
1205
+ - chore: document usage of new config
1206
+ - @copilotkit/shared@1.8.10-next.0
1207
+
1208
+ ## 1.8.9
1209
+
1210
+ ### Patch Changes
1211
+
1212
+ - f81a526: - Fix MCP tool schema structure to match interface requirements
1213
+ - add utils
1214
+ - @copilotkit/shared@1.8.9
1215
+
1216
+ ## 1.8.9-next.0
1217
+
1218
+ ### Patch Changes
1219
+
1220
+ - f81a526: - Fix MCP tool schema structure to match interface requirements
1221
+ - add utils
1222
+ - @copilotkit/shared@1.8.9-next.0
1223
+
1224
+ ## 1.8.8
1225
+
1226
+ ### Patch Changes
1227
+
1228
+ - 8c26335: - fix: update MCP tool parameter extraction to handle full tool objects
1229
+ - dfb67c3: - refactor: rename mcpEndpoints to mcpServers for naming consistency
1230
+ - doc changes
1231
+ - @copilotkit/shared@1.8.8
1232
+
1233
+ ## 1.8.8-next.1
1234
+
1235
+ ### Patch Changes
1236
+
1237
+ - 8c26335: - fix: update MCP tool parameter extraction to handle full tool objects
1238
+ - @copilotkit/shared@1.8.8-next.1
1239
+
1240
+ ## 1.8.8-next.0
1241
+
1242
+ ### Patch Changes
1243
+
1244
+ - dfb67c3: - refactor: rename mcpEndpoints to mcpServers for naming consistency
1245
+ - doc changes
1246
+ - @copilotkit/shared@1.8.8-next.0
1247
+
1248
+ ## 1.8.7
1249
+
1250
+ ### Patch Changes
1251
+
1252
+ - 8b8474f: - feat: add image input support with multi-model compatibility, pasting, and UX improvements
1253
+ - @copilotkit/shared@1.8.7
1254
+
1255
+ ## 1.8.7-next.0
1256
+
1257
+ ### Patch Changes
1258
+
1259
+ - 8b8474f: - feat: add image input support with multi-model compatibility, pasting, and UX improvements
1260
+ - @copilotkit/shared@1.8.7-next.0
1261
+
1262
+ ## 1.8.6
1263
+
1264
+ ### Patch Changes
1265
+
1266
+ - 7a04bd1: - fix: fix how results are communicated back on interrupt
1267
+ - fix: do not allow followup for interrupt actions
1268
+ - chore: improve TS docs for interrupt
1269
+ - @copilotkit/shared@1.8.6
1270
+
1271
+ ## 1.8.6-next.0
1272
+
1273
+ ### Patch Changes
1274
+
1275
+ - 7a04bd1: - fix: fix how results are communicated back on interrupt
1276
+ - fix: do not allow followup for interrupt actions
1277
+ - chore: improve TS docs for interrupt
1278
+ - @copilotkit/shared@1.8.6-next.0
1279
+
1280
+ ## 1.8.5
1281
+
1282
+ ### Patch Changes
1283
+
1284
+ - c0d3261: - full AWP support
1285
+
1286
+ Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1287
+ - refactor: address linter issues with the new pages
1288
+
1289
+ Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1290
+ - Merge branch 'mme/acp' into mme/mastra
1291
+ - add sse example
1292
+ - Create small-turkeys-agree.md
1293
+ - upgrade AWP
1294
+ - Merge branch 'mme/mastra' of github.com:CopilotKit/CopilotKit into mme/mastra
1295
+ - make agents a dict
1296
+ - update docs
1297
+ - send tools
1298
+ - update to latest packages
1299
+ - fix problem where state sync are preventing tool calls
1300
+ - set possibly undefined toolCalls to an empty array
1301
+ - fix missing tool call ids
1302
+
1303
+ - 77a7457: - feat: Add Model Context Protocol (MCP) support
1304
+ - 76d9ef9: - fix: handle langgraph client specific errors when running lgc stream
1305
+ - c0d3261: - add AWP support
1306
+ - make it work
1307
+ - update docs
1308
+ - refactor: move UI files to be normal NextJS pages and update generation
1309
+
1310
+ Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1311
+ - refactor: address linter issues with the new pages
1312
+
1313
+ Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1314
+ - Merge branch 'mme/acp' into mme/mastra
1315
+ - add sse example
1316
+
1317
+ - d0e8a1e: - fix: fix duplicate messages on regenerate
1318
+ - @copilotkit/shared@1.8.5
1319
+
1320
+ ## 1.8.5-next.5
1321
+
1322
+ ### Patch Changes
1323
+
1324
+ - c0d3261: - full AWP support
1325
+
1326
+ Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1327
+ - refactor: address linter issues with the new pages
1328
+
1329
+ Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1330
+ - Merge branch 'mme/acp' into mme/mastra
1331
+ - add sse example
1332
+ - Create small-turkeys-agree.md
1333
+ - upgrade AWP
1334
+ - Merge branch 'mme/mastra' of github.com:CopilotKit/CopilotKit into mme/mastra
1335
+ - make agents a dict
1336
+ - update docs
1337
+ - send tools
1338
+ - update to latest packages
1339
+ - fix problem where state sync are preventing tool calls
1340
+ - set possibly undefined toolCalls to an empty array
1341
+ - fix missing tool call ids
1342
+
1343
+ - c0d3261: - add AWP support
1344
+ - make it work
1345
+ - update docs
1346
+ - refactor: move UI files to be normal NextJS pages and update generation
1347
+
1348
+ Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1349
+ - refactor: address linter issues with the new pages
1350
+
1351
+ Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
1352
+ - Merge branch 'mme/acp' into mme/mastra
1353
+ - add sse example
1354
+ - @copilotkit/shared@1.8.5-next.5
1355
+
1356
+ ## 1.8.5-next.4
1357
+
1358
+ ### Patch Changes
1359
+
1360
+ - 76d9ef9: - fix: handle langgraph client specific errors when running lgc stream
1361
+ - @copilotkit/shared@1.8.5-next.4
1362
+
1363
+ ## 1.8.5-next.3
1364
+
1365
+ ### Patch Changes
1366
+
1367
+ - 77a7457: - feat: Add Model Context Protocol (MCP) support
1368
+ - @copilotkit/shared@1.8.5-next.3
1369
+
1370
+ ## 1.8.5-next.2
1371
+
1372
+ ### Patch Changes
1373
+
1374
+ - @copilotkit/shared@1.8.5-next.2
1375
+
1376
+ ## 1.8.5-next.1
1377
+
1378
+ ### Patch Changes
1379
+
1380
+ - d0e8a1e: - fix: fix duplicate messages on regenerate
1381
+ - @copilotkit/shared@1.8.5-next.1
1382
+
1383
+ ## 1.8.5-next.0
1384
+
1385
+ ### Patch Changes
1386
+
1387
+ - @copilotkit/shared@1.8.5-next.0
1388
+
1389
+ ## 1.8.4
1390
+
1391
+ ### Patch Changes
1392
+
1393
+ - e652aac: - feat: add support for langgraph config schema
1394
+ - f363760: - fix: when unable to find specified agent, show what's available
1395
+ - Updated dependencies [f363760]
1396
+ - @copilotkit/shared@1.8.4
1397
+
1398
+ ## 1.8.4-next.4
1399
+
1400
+ ### Patch Changes
1401
+
1402
+ - @copilotkit/shared@1.8.4-next.4
1403
+
1404
+ ## 1.8.4-next.3
1405
+
1406
+ ### Patch Changes
1407
+
1408
+ - e652aac: - feat: add support for langgraph config schema
1409
+ - @copilotkit/shared@1.8.4-next.3
1410
+
1411
+ ## 1.8.4-next.2
1412
+
1413
+ ### Patch Changes
1414
+
1415
+ - @copilotkit/shared@1.8.4-next.2
1416
+
1417
+ ## 1.8.4-next.1
1418
+
1419
+ ### Patch Changes
1420
+
1421
+ - f363760: - fix: when unable to find specified agent, show what's available
1422
+ - Updated dependencies [f363760]
1423
+ - @copilotkit/shared@1.8.4-next.1
1424
+
1425
+ ## 1.8.4-next.0
1426
+
1427
+ ### Patch Changes
1428
+
1429
+ - @copilotkit/shared@1.8.4-next.0
1430
+
1431
+ ## 1.8.3
1432
+
1433
+ ### Patch Changes
1434
+
1435
+ - @copilotkit/shared@1.8.3
1436
+
1437
+ ## 1.8.3-next.0
1438
+
1439
+ ### Patch Changes
1440
+
1441
+ - @copilotkit/shared@1.8.3-next.0
1442
+
1443
+ ## 1.8.2-next.3
1444
+
1445
+ ### Patch Changes
1446
+
1447
+ - @copilotkit/shared@1.8.2-next.3
1448
+
1449
+ ## 1.8.2-next.2
1450
+
1451
+ ### Patch Changes
1452
+
1453
+ - 4eedf97: - fix: handle failure to fetch langgraph schema
1454
+ - @copilotkit/shared@1.8.2-next.2
1455
+
1456
+ ## 1.8.2-next.1
1457
+
1458
+ ### Patch Changes
1459
+
1460
+ - e95bb0e: - fix: clarify difference between lgp endpoints to fastapi endpoints
1461
+ - @copilotkit/shared@1.8.2-next.1
1462
+
1463
+ ## 1.8.2-next.0
1464
+
1465
+ ### Patch Changes
1466
+
1467
+ - @copilotkit/shared@1.8.2-next.0
1468
+
1469
+ ## 1.8.1
1470
+
1471
+ ### Patch Changes
1472
+
1473
+ - @copilotkit/shared@1.8.1
1474
+
1475
+ ## 1.8.1-next.1
1476
+
1477
+ ### Patch Changes
1478
+
1479
+ - @copilotkit/shared@1.8.1-next.1
1480
+
1481
+ ## 1.8.1-next.0
1482
+
1483
+ ### Patch Changes
1484
+
1485
+ - @copilotkit/shared@1.8.1-next.0
1486
+
1487
+ ## 1.8.0
1488
+
1489
+ ### Patch Changes
1490
+
1491
+ - a16757a: - fix: re-enable runtime actions when remote endpoint is set
1492
+ - @copilotkit/shared@1.8.0
1493
+
1494
+ ## 1.8.0-next.8
1495
+
1496
+ ### Patch Changes
1497
+
1498
+ - @copilotkit/shared@1.8.0-next.8
1499
+
1500
+ ## 1.8.0-next.7
1501
+
1502
+ ### Patch Changes
1503
+
1504
+ - @copilotkit/shared@1.8.0-next.7
1505
+
1506
+ ## 1.8.0-next.6
1507
+
1508
+ ### Patch Changes
1509
+
1510
+ - @copilotkit/shared@1.8.0-next.6
1511
+
1512
+ ## 1.8.0-next.5
1513
+
1514
+ ### Patch Changes
1515
+
1516
+ - @copilotkit/shared@1.8.0-next.5
1517
+
1518
+ ## 1.8.0-next.4
1519
+
1520
+ ### Patch Changes
1521
+
1522
+ - @copilotkit/shared@1.8.0-next.4
1523
+
1524
+ ## 1.8.0-next.3
1525
+
1526
+ ### Patch Changes
1527
+
1528
+ - @copilotkit/shared@1.8.0-next.3
1529
+
1530
+ ## 1.7.2-next.2
1531
+
1532
+ ### Patch Changes
1533
+
1534
+ - @copilotkit/shared@1.7.2-next.2
1535
+
1536
+ ## 1.7.2-next.1
1537
+
1538
+ ### Patch Changes
1539
+
1540
+ - @copilotkit/shared@1.7.2-next.1
1541
+
1542
+ ## 1.7.2-next.0
1543
+
1544
+ ### Patch Changes
1545
+
1546
+ - a16757a: - fix: re-enable runtime actions when remote endpoint is set
1547
+ - @copilotkit/shared@1.7.2-next.0
1548
+
1549
+ ## 1.7.1
1550
+
1551
+ ### Patch Changes
1552
+
1553
+ - 261b2be: - simplifies interface + adds o11y in agents
1554
+ - @copilotkit/shared@1.7.1
1555
+
1556
+ ## 1.7.1-next.0
1557
+
1558
+ ### Patch Changes
1559
+
1560
+ - 261b2be: - simplifies interface + adds o11y in agents
1561
+ - @copilotkit/shared@1.7.1-next.0
1562
+
1563
+ ## 1.7.0
1564
+
1565
+ ### Minor Changes
1566
+
1567
+ - 082db7a: - CrewAI support
1568
+
1569
+ ### Patch Changes
1570
+
1571
+ - 082db7a: - Added RemoteAgentAdapter and implemented CopilotKit (protocol & events).
1572
+ - Integrated CrewAI (with a prototype, HITL, event system, and chat/demo tweaks).
1573
+ - Updated docs and cleaned up code (fixing stdout issues, restricting Python version, and streamlining demos).
1574
+ - 1e934e4: - feat(runtime): Add LangFuse logging integration
1575
+ - @copilotkit/shared@1.7.0
1576
+
1577
+ ## 1.7.0-next.1
1578
+
1579
+ ### Patch Changes
1580
+
1581
+ - 1e934e4: - feat(runtime): Add LangFuse logging integration
1582
+ - @copilotkit/shared@1.7.0-next.1
1583
+
1584
+ ## 1.7.0-next.0
1585
+
1586
+ ### Minor Changes
1587
+
1588
+ - 082db7a: - CrewAI support
1589
+
1590
+ ### Patch Changes
1591
+
1592
+ - 082db7a: - Added RemoteAgentAdapter and implemented CopilotKit (protocol & events).
1593
+ - Integrated CrewAI (with a prototype, HITL, event system, and chat/demo tweaks).
1594
+ - Updated docs and cleaned up code (fixing stdout issues, restricting Python version, and streamlining demos).
1595
+ - @copilotkit/shared@1.7.0-next.0
1596
+
1597
+ ## 1.6.0
1598
+
1599
+ ### Minor Changes
1600
+
1601
+ - fea916f: - feat: support input and output schema of langgraph
1602
+ - docs: add input output schema docs
1603
+ - 7d061d9: - feat(configurable): execute langgraph with user config
1604
+
1605
+ ### Patch Changes
1606
+
1607
+ - 543f703: - fix: refrain from processing same tool end several times
1608
+ - fix: do not register runtime set action when there are remote endpoints
1609
+ - 090203d: - fix: use tryMap method to filter out possibly invalid items
1610
+ - 1bb9ca2: - fix(coagents): don't fail when LangSmith API key is missing
1611
+ - fix(coagents): don't check for langsmithApiKey in resolveEndpointType
1612
+ - 4ddb6d2: - fix: add class validator to dependencies
1613
+ - d07f49c: - fix(runtime): fix execution of runtime set backend action handlers
1614
+ - 45a3e10: - feat: support latest openai api
1615
+ - chore: update all openai dependencies to use latest
1616
+ - feat: update adapters using openai API
1617
+ - 68f7b65: - handle parsing in fail-safe fashion
1618
+ - Updated dependencies [090203d]
1619
+ - @copilotkit/shared@1.6.0
1620
+
1621
+ ## 1.6.0-next.12
1622
+
1623
+ ### Patch Changes
1624
+
1625
+ - 1bb9ca2: - fix(coagents): don't fail when LangSmith API key is missing
1626
+ - fix(coagents): don't check for langsmithApiKey in resolveEndpointType
1627
+ - @copilotkit/shared@1.6.0-next.12
1628
+
1629
+ ## 1.6.0-next.11
1630
+
1631
+ ### Patch Changes
1632
+
1633
+ - @copilotkit/shared@1.6.0-next.11
1634
+
1635
+ ## 1.6.0-next.10
1636
+
1637
+ ### Patch Changes
1638
+
1639
+ - 543f703: - fix: refrain from processing same tool end several times
1640
+ - fix: do not register runtime set action when there are remote endpoints
1641
+ - @copilotkit/shared@1.6.0-next.10
1642
+
1643
+ ## 1.6.0-next.9
1644
+
1645
+ ### Patch Changes
1646
+
1647
+ - d07f49c: - fix(runtime): fix execution of runtime set backend action handlers
1648
+ - @copilotkit/shared@1.6.0-next.9
1649
+
1650
+ ## 1.6.0-next.8
1651
+
1652
+ ### Minor Changes
1653
+
1654
+ - fea916f: - feat: support input and output schema of langgraph
1655
+ - docs: add input output schema docs
1656
+
1657
+ ### Patch Changes
1658
+
1659
+ - @copilotkit/shared@1.6.0-next.8
1660
+
1661
+ ## 1.6.0-next.7
1662
+
1663
+ ### Patch Changes
1664
+
1665
+ - @copilotkit/shared@1.6.0-next.7
1666
+
1667
+ ## 1.6.0-next.6
1668
+
1669
+ ### Patch Changes
1670
+
1671
+ - 45a3e10: - feat: support latest openai api
1672
+ - chore: update all openai dependencies to use latest
1673
+ - feat: update adapters using openai API
1674
+ - @copilotkit/shared@1.6.0-next.6
1675
+
1676
+ ## 1.6.0-next.5
1677
+
1678
+ ### Patch Changes
1679
+
1680
+ - 090203d: - fix: use tryMap method to filter out possibly invalid items
1681
+ - Updated dependencies [090203d]
1682
+ - @copilotkit/shared@1.6.0-next.5
1683
+
1684
+ ## 1.6.0-next.4
1685
+
1686
+ ### Patch Changes
1687
+
1688
+ - 68f7b65: - handle parsing in fail-safe fashion
1689
+ - @copilotkit/shared@1.6.0-next.4
1690
+
1691
+ ## 1.6.0-next.3
1692
+
1693
+ ### Patch Changes
1694
+
1695
+ - 4ddb6d2: - fix: add class validator to dependencies
1696
+ - @copilotkit/shared@1.6.0-next.3
1697
+
1698
+ ## 1.6.0-next.2
1699
+
1700
+ ### Patch Changes
1701
+
1702
+ - @copilotkit/shared@1.6.0-next.2
1703
+
1704
+ ## 1.6.0-next.1
1705
+
1706
+ ### Patch Changes
1707
+
1708
+ - @copilotkit/shared@1.6.0-next.1
1709
+
1710
+ ## 1.6.0-next.0
1711
+
1712
+ ### Minor Changes
1713
+
1714
+ - 7d061d9: - feat(configurable): execute langgraph with user config
1715
+
1716
+ ### Patch Changes
1717
+
1718
+ - @copilotkit/shared@1.6.0-next.0
1719
+
1720
+ ## 1.5.20
1721
+
1722
+ ### Patch Changes
1723
+
1724
+ - Updated dependencies [51f0d66]
1725
+ - @copilotkit/shared@1.5.20
1726
+
1727
+ ## 1.5.20-next.0
1728
+
1729
+ ### Patch Changes
1730
+
1731
+ - Updated dependencies [51f0d66]
1732
+ - @copilotkit/shared@1.5.20-next.0
1733
+
1734
+ ## 1.5.19
1735
+
1736
+ ### Patch Changes
1737
+
1738
+ - Updated dependencies [0dd1ab9]
1739
+ - @copilotkit/shared@1.5.19
1740
+
1741
+ ## 1.5.19-next.1
1742
+
1743
+ ### Patch Changes
1744
+
1745
+ - Updated dependencies [0dd1ab9]
1746
+ - @copilotkit/shared@1.5.19-next.1
1747
+
1748
+ ## 1.5.19-next.0
1749
+
1750
+ ### Patch Changes
1751
+
1752
+ - @copilotkit/shared@1.5.19-next.0
1753
+
1754
+ ## 1.5.18
1755
+
1756
+ ### Patch Changes
1757
+
1758
+ - d47cd26: - fix: detect and alert on version mismatch
1759
+ - a6e46a9: - fix: use langgraph metadata to get node name
1760
+ - 38d3ac2: - fix: add additional info the our error messages
1761
+ - Updated dependencies [d47cd26]
1762
+ - Updated dependencies [f77a7b9]
1763
+ - Updated dependencies [38d3ac2]
1764
+ - @copilotkit/shared@1.5.18
1765
+
1766
+ ## 1.5.18-next.3
1767
+
1768
+ ### Patch Changes
1769
+
1770
+ - Updated dependencies [f77a7b9]
1771
+ - @copilotkit/shared@1.5.18-next.3
1772
+
1773
+ ## 1.5.18-next.2
1774
+
1775
+ ### Patch Changes
1776
+
1777
+ - 38d3ac2: - fix: add additional info the our error messages
1778
+ - Updated dependencies [38d3ac2]
1779
+ - @copilotkit/shared@1.5.18-next.2
1780
+
1781
+ ## 1.5.18-next.1
1782
+
1783
+ ### Patch Changes
1784
+
1785
+ - a6e46a9: - fix: use langgraph metadata to get node name
1786
+ - @copilotkit/shared@1.5.18-next.1
1787
+
1788
+ ## 1.5.18-next.0
1789
+
1790
+ ### Patch Changes
1791
+
1792
+ - d47cd26: - fix: detect and alert on version mismatch
1793
+ - Updated dependencies [d47cd26]
1794
+ - @copilotkit/shared@1.5.18-next.0
1795
+
1796
+ ## 1.5.17
1797
+
1798
+ ### Patch Changes
1799
+
1800
+ - 1fc3902: - Revert "fix: detect and alert on version mismatch (#1333)"
1801
+
1802
+ This reverts commit 48b7c7b1bd48ced82ffb9a00d6eddc1f7581e0c1.
1803
+
1804
+ - Updated dependencies [1fc3902]
1805
+ - @copilotkit/shared@1.5.17
1806
+
1807
+ ## 1.5.17-next.0
1808
+
1809
+ ### Patch Changes
1810
+
1811
+ - 1fc3902: - Revert "fix: detect and alert on version mismatch (#1333)"
1812
+
1813
+ This reverts commit 48b7c7b1bd48ced82ffb9a00d6eddc1f7581e0c1.
1814
+
1815
+ - Updated dependencies [1fc3902]
1816
+ - @copilotkit/shared@1.5.17-next.0
1817
+
1818
+ ## 1.5.16
1819
+
1820
+ ### Patch Changes
1821
+
1822
+ - 9be85f1: - fix: use latest langchain packages
1823
+ - 48b7c7b: - fix: detect and alert on version mismatch
1824
+ - Updated dependencies [48b7c7b]
1825
+ - @copilotkit/shared@1.5.16
1826
+
1827
+ ## 1.5.16-next.2
1828
+
1829
+ ### Patch Changes
1830
+
1831
+ - 9be85f1: - fix: use latest langchain packages
1832
+ - @copilotkit/shared@1.5.16-next.2
1833
+
1834
+ ## 1.5.16-next.1
1835
+
1836
+ ### Patch Changes
1837
+
1838
+ - 48b7c7b: - fix: detect and alert on version mismatch
1839
+ - Updated dependencies [48b7c7b]
1840
+ - @copilotkit/shared@1.5.16-next.1
1841
+
1842
+ ## 1.5.16-next.0
1843
+
1844
+ ### Patch Changes
1845
+
1846
+ - @copilotkit/shared@1.5.16-next.0
1847
+
1848
+ ## 1.5.15
1849
+
1850
+ ### Patch Changes
1851
+
1852
+ - 06f9f35: - feat(interrupt): add copilotkit interrupt as messages with copilotkit interrupt convenience fn
1853
+ - chore(deps): update dependencies for demos
1854
+ - chore(interrupt-as-message): add e2e test for interrupt as message
1855
+ - 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
1856
+ - chore(interrupt): add e2e test to interrupt functionality
1857
+ - feat(interrupt): add support for multiple interrupts and conditions
1858
+ - 68bdbcd: - fix(runtime): enable multi-agent flows while preventing recursive self-calls
1859
+ - c14f9db: - add headers handling to other LangGraphClients
1860
+ - eb315bd: - fix: allow empty langsmith api key
1861
+ - Updated dependencies [7b3141d]
1862
+ - @copilotkit/shared@1.5.15
1863
+
1864
+ ## 1.5.15-next.8
1865
+
1866
+ ### Patch Changes
1867
+
1868
+ - 06f9f35: - feat(interrupt): add copilotkit interrupt as messages with copilotkit interrupt convenience fn
1869
+ - chore(deps): update dependencies for demos
1870
+ - chore(interrupt-as-message): add e2e test for interrupt as message
1871
+ - @copilotkit/shared@1.5.15-next.8
1872
+
1873
+ ## 1.5.15-next.7
1874
+
1875
+ ### Patch Changes
1876
+
1877
+ - 68bdbcd: - fix(runtime): enable multi-agent flows while preventing recursive self-calls
1878
+ - @copilotkit/shared@1.5.15-next.7
1879
+
1880
+ ## 1.5.15-next.6
1881
+
1882
+ ### Patch Changes
1883
+
1884
+ - @copilotkit/shared@1.5.15-next.6
1885
+
1886
+ ## 1.5.15-next.5
1887
+
1888
+ ### Patch Changes
1889
+
1890
+ - @copilotkit/shared@1.5.15-next.5
1891
+
1892
+ ## 1.5.15-next.4
1893
+
1894
+ ### Patch Changes
1895
+
1896
+ - 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
1897
+ - chore(interrupt): add e2e test to interrupt functionality
1898
+ - feat(interrupt): add support for multiple interrupts and conditions
1899
+ - Updated dependencies [7b3141d]
1900
+ - @copilotkit/shared@1.5.15-next.4
1901
+
1902
+ ## 1.5.15-next.3
1903
+
1904
+ ### Patch Changes
1905
+
1906
+ - c14f9db: - add headers handling to other LangGraphClients
1907
+ - @copilotkit/shared@1.5.15-next.3
1908
+
1909
+ ## 1.5.15-next.2
1910
+
1911
+ ### Patch Changes
1912
+
1913
+ - eb315bd: - fix: allow empty langsmith api key
1914
+ - @copilotkit/shared@1.5.15-next.2
1915
+
1916
+ ## 1.5.15-next.1
1917
+
1918
+ ### Patch Changes
1919
+
1920
+ - @copilotkit/shared@1.5.15-next.1
1921
+
1922
+ ## 1.5.15-next.0
1923
+
1924
+ ### Patch Changes
1925
+
1926
+ - @copilotkit/shared@1.5.15-next.0
1927
+
1928
+ ## 1.5.14
1929
+
1930
+ ### Patch Changes
1931
+
1932
+ - Updated dependencies [0061f65]
1933
+ - @copilotkit/shared@1.5.14
1934
+
1935
+ ## 1.5.14-next.0
1936
+
1937
+ ### Patch Changes
1938
+
1939
+ - Updated dependencies [0061f65]
1940
+ - @copilotkit/shared@1.5.14-next.0
1941
+
1942
+ ## 1.5.13
1943
+
1944
+ ### Patch Changes
1945
+
1946
+ - 8271438: silence langgraph platform error
1947
+ - @copilotkit/shared@1.5.13
1948
+
1949
+ ## 1.5.13-next.0
1950
+
1951
+ ### Patch Changes
1952
+
1953
+ - 8271438: silence langgraph platform error
1954
+ - @copilotkit/shared@1.5.13-next.0
1955
+
1956
+ ## 1.5.12
1957
+
1958
+ ### Patch Changes
1959
+
1960
+ - 768b3a5: - chore: add documentation for empty llm adapter
1961
+ - fix: throw error when empty adapter is misused
1962
+ - a2129f4: - fix(streaming): end streaming on error to enable continuity of chat after failed tool call
1963
+ - 926499b: - Load the previous state of an agent if `threadId` is provided to CopilotKit, including all messages
1964
+ - 59de133: - fix: rename ExperimentalEmptyAdapter to EmptyAdapter
1965
+ - 6136a57: - fix(errors): add custom error classes to better describe library errors
1966
+ - fix(errors): use new errors in error handling
1967
+ - chore: add documentation and links to respective errors
1968
+ - Updated dependencies [6136a57]
1969
+ - @copilotkit/shared@1.5.12
1970
+
1971
+ ## 1.5.12-next.7
1972
+
1973
+ ### Patch Changes
1974
+
1975
+ - 926499b: - Load the previous state of an agent if `threadId` is provided to CopilotKit, including all messages
1976
+ - @copilotkit/shared@1.5.12-next.7
1977
+
1978
+ ## 1.5.12-next.6
1979
+
1980
+ ### Patch Changes
1981
+
1982
+ - 6136a57: - fix(errors): add custom error classes to better describe library errors
1983
+ - fix(errors): use new errors in error handling
1984
+ - chore: add documentation and links to respective errors
1985
+ - Updated dependencies [6136a57]
1986
+ - @copilotkit/shared@1.5.12-next.6
1987
+
1988
+ ## 1.5.12-next.5
1989
+
1990
+ ### Patch Changes
1991
+
1992
+ - 59de133: - fix: rename ExperimentalEmptyAdapter to EmptyAdapter
1993
+ - @copilotkit/shared@1.5.12-next.5
1994
+
1995
+ ## 1.5.12-next.4
1996
+
1997
+ ### Patch Changes
1998
+
1999
+ - 768b3a5: - chore: add documentation for empty llm adapter
2000
+ - fix: throw error when empty adapter is misused
2001
+ - @copilotkit/shared@1.5.12-next.4
2002
+
2003
+ ## 1.5.12-next.3
2004
+
2005
+ ### Patch Changes
2006
+
2007
+ - @copilotkit/shared@1.5.12-next.3
2008
+
2009
+ ## 1.5.12-next.2
2010
+
2011
+ ### Patch Changes
2012
+
2013
+ - @copilotkit/shared@1.5.12-next.2
2014
+
2015
+ ## 1.5.12-next.1
2016
+
2017
+ ### Patch Changes
2018
+
2019
+ - a2129f4: - fix(streaming): end streaming on error to enable continuity of chat after failed tool call
2020
+ - @copilotkit/shared@1.5.12-next.1
2021
+
2022
+ ## 1.5.12-next.0
2023
+
2024
+ ### Patch Changes
2025
+
2026
+ - @copilotkit/shared@1.5.12-next.0
2027
+
2028
+ ## 1.5.11
2029
+
2030
+ ### Patch Changes
2031
+
2032
+ - 72f9e58: test release notes
2033
+ - 716bd5c: test changelog
2034
+ - aecb6f4: Fix build script
2035
+ - a35d447: test changelog
2036
+ - 0a2e07e: Test changelog
2037
+ - 8166ac6: Test release notes
2038
+ - @copilotkit/shared@1.5.11
2039
+
2040
+ ## 1.5.11-next.0
2041
+
2042
+ ### Patch Changes
2043
+
2044
+ - 72f9e58: test release notes
2045
+ - 716bd5c: test changelog
2046
+ - aecb6f4: Fix build script
2047
+ - a35d447: test changelog
2048
+ - 0a2e07e: Test changelog
2049
+ - 8166ac6: Test release notes
2050
+ - @copilotkit/shared@1.5.11-next.0
2051
+
2052
+ ## 1.5.10
2053
+
2054
+ ### Patch Changes
2055
+
2056
+ - 72f9e58: test release notes
2057
+ - 716bd5c: test changelog
2058
+ - aecb6f4: Fix build script
2059
+ - a35d447: test changelog
2060
+ - 8166ac6: Test release notes
2061
+ - @copilotkit/shared@1.5.10
2062
+
2063
+ ## 1.5.10-next.0
2064
+
2065
+ ### Patch Changes
2066
+
2067
+ - 72f9e58: test release notes
2068
+ - 716bd5c: test changelog
2069
+ - aecb6f4: Fix build script
2070
+ - a35d447: test changelog
2071
+ - 8166ac6: Test release notes
2072
+ - @copilotkit/shared@1.5.10-next.0
2073
+
2074
+ ## 1.5.9
2075
+
2076
+ ### Patch Changes
2077
+
2078
+ - 72f9e58: test release notes
2079
+ - 716bd5c: test changelog
2080
+ - a35d447: test changelog
2081
+ - 8166ac6: Test release notes
2082
+ - @copilotkit/shared@1.5.9
2083
+
2084
+ ## 1.5.8
2085
+
2086
+ ### Patch Changes
2087
+
2088
+ - 72f9e58: test release notes
2089
+ - a35d447: test changelog
2090
+ - 8166ac6: Test release notes
2091
+ - @copilotkit/shared@1.5.8
2092
+
2093
+ ## 1.5.6-next.0
2094
+
2095
+ ### Patch Changes
2096
+
2097
+ - a35d447: test changelog
2098
+ - @copilotkit/shared@1.5.6-next.0
2099
+
2100
+ ## 1.5.5-next.5
2101
+
2102
+ ### Patch Changes
2103
+
2104
+ - @copilotkit/shared@1.5.5-next.5
2105
+
2106
+ ## 1.5.5-next.3
2107
+
2108
+ ### Patch Changes
2109
+
2110
+ - @copilotkit/shared@1.5.5-next.3
2111
+
2112
+ ## 1.5.5-next.2
2113
+
2114
+ ### Patch Changes
2115
+
2116
+ - 72f9e58: test release notes
2117
+ - 8166ac6: Test release notes
2118
+ - @copilotkit/shared@1.5.5-next.2
2119
+
2120
+ ## 1.5.4
2121
+
2122
+ ### Patch Changes
2123
+
2124
+ - Test changelog
2125
+ - @copilotkit/shared@1.5.4
2126
+
2127
+ ## 1.5.3
2128
+
2129
+ ### Patch Changes
2130
+
2131
+ - 4511149: Test release notes
2132
+ - @copilotkit/shared@1.5.3
2133
+
2134
+ ## 1.5.2
2135
+
2136
+ ### Patch Changes
2137
+
2138
+ - b0192c1: This is a test release
2139
+ - @copilotkit/shared@1.5.2
2140
+
2141
+ ## 1.5.1
2142
+
2143
+ ### Patch Changes
2144
+
2145
+ - 5c01e9e: test prerelease #4
2146
+ - da280ed: Test prerelease script
2147
+ - 27e42d7: testing a prerelease
2148
+ - 05240a9: test pre #2
2149
+ - 33218fe: test prerelease #3
2150
+ - 03f3d6f: Test next prerelease
2151
+ - 649ebcc: - fix: add warning when using agents that are not available on agent related hooks
2152
+ - 6dfa0d2: - feat: add temperature parameter support for LLM completions
2153
+ - Updated dependencies [5c01e9e]
2154
+ - Updated dependencies [da280ed]
2155
+ - Updated dependencies [27e42d7]
2156
+ - Updated dependencies [05240a9]
2157
+ - Updated dependencies [33218fe]
2158
+ - Updated dependencies [03f3d6f]
2159
+ - @copilotkit/shared@1.5.1
2160
+
2161
+ ## 1.5.1-next.3
2162
+
2163
+ ### Patch Changes
2164
+
2165
+ - 33218fe: test prerelease #3
2166
+ - Updated dependencies [33218fe]
2167
+ - @copilotkit/shared@1.5.1-next.3
2168
+
2169
+ ## 1.5.1-next.2
2170
+
2171
+ ### Patch Changes
2172
+
2173
+ - da280ed: Test prerelease script
2174
+ - 649ebcc: - fix: add warning when using agents that are not available on agent related hooks
2175
+ - Updated dependencies [da280ed]
2176
+ - @copilotkit/shared@1.5.1-next.2
2177
+
2178
+ ## 1.5.1-next.1
2179
+
2180
+ ### Patch Changes
2181
+
2182
+ - 03f3d6f: Test next prerelease
2183
+ - Updated dependencies [03f3d6f]
2184
+ - @copilotkit/shared@1.5.1-next.1
2185
+
2186
+ ## 1.5.1-next.0
2187
+
2188
+ ### Patch Changes
2189
+
2190
+ - 27e42d7: testing a prerelease
2191
+ - 6dfa0d2: - feat: add temperature parameter support for LLM completions
2192
+ - Updated dependencies [27e42d7]
2193
+ - @copilotkit/shared@1.5.1-next.0
2194
+
2195
+ ## 1.5.0
2196
+
2197
+ ### Minor Changes
2198
+
2199
+ - 1b47092: Synchronize LangGraph messages with CopilotKit
2200
+
2201
+ ### Patch Changes
2202
+
2203
+ - 1b47092: CoAgents v0.3 prerelease
2204
+ - Updated dependencies [1b47092]
2205
+ - Updated dependencies [1b47092]
2206
+ - @copilotkit/shared@1.5.0
2207
+
2208
+ ## 1.5.0-coagents-v0-3.0
2209
+
2210
+ ### Minor Changes
2211
+
2212
+ - Synchronize LangGraph messages with CopilotKit
2213
+
2214
+ ### Patch Changes
2215
+
2216
+ - e66bce4: CoAgents v0.3 prerelease
2217
+ - Updated dependencies
2218
+ - Updated dependencies [e66bce4]
2219
+ - @copilotkit/shared@1.5.0-coagents-v0-3.0
2220
+
2221
+ ## 1.4.8
2222
+
2223
+ ### Patch Changes
2224
+
2225
+ - - Better error handling
2226
+ - Introduce new "EmptyLLMAdapter" for when using CoAgents
2227
+ - Improve dev console help options
2228
+ - Allow CopilotKit remote endpoint without agents
2229
+ - 989f159: - fix: allow CopilotKit Remote Endpoint without agents
2230
+ - Apply suggestions from code review
2231
+ - Updated dependencies
2232
+ - @copilotkit/shared@1.4.8
2233
+
2234
+ ## 1.4.8-next.0
2235
+
2236
+ ### Patch Changes
2237
+
2238
+ - @copilotkit/shared@1.4.8-next.0
2239
+
2240
+ ## 1.4.7
2241
+
2242
+ ### Patch Changes
2243
+
2244
+ - Fix broken build script before release
2245
+ - Updated dependencies
2246
+ - @copilotkit/shared@1.4.7
2247
+
2248
+ ## 1.4.6
2249
+
2250
+ ### Patch Changes
2251
+
2252
+ - .
2253
+
2254
+ ## 1.4.5
2255
+
2256
+ ### Patch Changes
2257
+
2258
+ - testing release workflow
2259
+ - Updated dependencies
2260
+ - @copilotkit/shared@1.4.5
2261
+
2262
+ ## 1.4.5-next.0
2263
+
2264
+ ### Patch Changes
2265
+
2266
+ - testing release workflow
2267
+ - Updated dependencies
2268
+ - @copilotkit/shared@1.4.5-next.0
2269
+
2270
+ ## 1.4.4
2271
+
2272
+ ### Patch Changes
2273
+
2274
+ - 665deab: test prerelease
2275
+ - 57a6012: test next prerelease automation
2276
+ - 7cfc2e7: test prerelease stuff
2277
+ - af36f1a: - feat(runtime): readme update
2278
+ - @copilotkit/shared@1.4.4
2279
+
2280
+ ## 1.4.4-next.4
2281
+
2282
+ ### Patch Changes
2283
+
2284
+ - 57a6012: test next prerelease automation
2285
+ - @copilotkit/shared@1.4.4-next.4
2286
+
2287
+ ## 1.4.4-next.3
2288
+
2289
+ ### Patch Changes
2290
+
2291
+ - 7cfc2e7: test prerelease stuff
2292
+ - @copilotkit/shared@1.4.4-next.3
2293
+
2294
+ ## 1.4.4-next.2
2295
+
2296
+ ### Patch Changes
2297
+
2298
+ - 665deab: test prerelease
2299
+ - @copilotkit/shared@1.4.4-next.2
2300
+
2301
+ ## 1.4.4-next.1
2302
+
2303
+ ### Patch Changes
2304
+
2305
+ - af36f1a: - feat(runtime): readme update
2306
+ - @copilotkit/shared@1.4.4-next.1
2307
+
2308
+ ## 1.4.4-next.0
2309
+
2310
+ ### Patch Changes
2311
+
2312
+ - @copilotkit/shared@1.4.4-next.0
2313
+
2314
+ ## 1.4.3
2315
+
2316
+ ### Patch Changes
2317
+
2318
+ - c296282: - Better error surfacing when using LangGraph Platform streaming
2319
+ - Ensure state is immediately set without using flushSync
2320
+ - - Better error surfacing when using LangGraph Platform streaming
2321
+ - Ensure state is immediately set without using flushSync
2322
+ - Updated dependencies [c296282]
2323
+ - Updated dependencies
2324
+ - @copilotkit/shared@1.4.3
2325
+
2326
+ ## 1.4.3-pre.0
2327
+
2328
+ ### Patch Changes
2329
+
2330
+ - - Better error surfacing when using LangGraph Platform streaming
2331
+ - Ensure state is immediately set without using flushSync
2332
+ - Updated dependencies
2333
+ - @copilotkit/shared@1.4.3-pre.0
2334
+
2335
+ ## 1.4.2
2336
+
2337
+ ### Patch Changes
2338
+
2339
+ - - Make sure agent state is set immediately (#1077)
2340
+ - Support running an agent without messages (#1075)
2341
+ - Updated dependencies
2342
+ - @copilotkit/shared@1.4.2
2343
+
2344
+ ## 1.4.1
2345
+
2346
+ ### Patch Changes
2347
+
2348
+ - 1721cbd: lower case copilotkit property
2349
+ - 1721cbd: add zod conversion
2350
+ - 8d0144f: bump
2351
+ - 8d0144f: bump
2352
+ - 8d0144f: bump
2353
+ - e16d95e: New prerelease
2354
+ - 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
2355
+ - CopilotKit Core:
2356
+ - Improved error messages and overall logs
2357
+ - `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
2358
+ - Improved scrolling behavior. It is now possible to scroll up during LLM response generation
2359
+ - Added Azure OpenAI integration
2360
+ - Updated interfaces for better developer ergonomics
2361
+
2362
+ CoAgents:
2363
+ - Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
2364
+ - Support for LangGraph Platform in Remote Endpoints
2365
+ - LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
2366
+ - Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
2367
+ - Enhanced state management and message handling
2368
+
2369
+ CopilotKid Back-end SDK:
2370
+ - Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
2371
+
2372
+ - 8d0144f: bump
2373
+ - 8d0144f: bump
2374
+ - fef1b74: fix assistant message CSS and propagate actions to LG JS
2375
+ - Updated dependencies [1721cbd]
2376
+ - Updated dependencies [1721cbd]
2377
+ - Updated dependencies [8d0144f]
2378
+ - Updated dependencies [8d0144f]
2379
+ - Updated dependencies [8d0144f]
2380
+ - Updated dependencies [e16d95e]
2381
+ - Updated dependencies [1721cbd]
2382
+ - Updated dependencies
2383
+ - Updated dependencies [8d0144f]
2384
+ - Updated dependencies [8d0144f]
2385
+ - Updated dependencies [fef1b74]
2386
+ - @copilotkit/shared@1.4.1
2387
+
2388
+ ## 1.4.1-pre.6
2389
+
2390
+ ### Patch Changes
2391
+
2392
+ - 1721cbd: lower case copilotkit property
2393
+ - 1721cbd: add zod conversion
2394
+ - 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
2395
+ - fix assistant message CSS and propagate actions to LG JS
2396
+ - Updated dependencies [1721cbd]
2397
+ - Updated dependencies [1721cbd]
2398
+ - Updated dependencies [1721cbd]
2399
+ - Updated dependencies
2400
+ - @copilotkit/shared@1.4.1-pre.6
2401
+
2402
+ ## 1.4.1-pre.5
2403
+
2404
+ ### Patch Changes
2405
+
2406
+ - bump
2407
+ - Updated dependencies
2408
+ - @copilotkit/shared@1.4.1-pre.5
2409
+
2410
+ ## 1.4.1-pre.4
2411
+
2412
+ ### Patch Changes
2413
+
2414
+ - bump
2415
+ - Updated dependencies
2416
+ - @copilotkit/shared@1.4.1-pre.4
2417
+
2418
+ ## 1.4.1-pre.3
2419
+
2420
+ ### Patch Changes
2421
+
2422
+ - bump
2423
+ - Updated dependencies
2424
+ - @copilotkit/shared@1.4.1-pre.3
2425
+
2426
+ ## 1.4.1-pre.2
2427
+
2428
+ ### Patch Changes
2429
+
2430
+ - bump
2431
+ - Updated dependencies
2432
+ - @copilotkit/shared@1.4.1-pre.2
2433
+
2434
+ ## 1.4.1-pre.1
2435
+
2436
+ ### Patch Changes
2437
+
2438
+ - bump
2439
+ - Updated dependencies
2440
+ - @copilotkit/shared@1.4.1-pre.1
2441
+
2442
+ ## 1.4.1-pre.0
2443
+
2444
+ ### Patch Changes
2445
+
2446
+ - New prerelease
2447
+ - Updated dependencies
2448
+ - @copilotkit/shared@1.4.1-pre.0
2449
+
2450
+ ## 1.4.0
2451
+
2452
+ ### Minor Changes
2453
+
2454
+ CopilotKit Core:
2455
+
2456
+ - Improved error messages and overall logs
2457
+ - `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
2458
+ - Improved scrolling behavior. It is now possible to scroll up during LLM response generation
2459
+ - Added Azure OpenAI integration
2460
+ - Updated interfaces for better developer ergonomics
2461
+
2462
+ CoAgents:
2463
+
2464
+ - Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
2465
+ - Support for LangGraph Platform in Remote Endpoints
2466
+ - LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
2467
+ - Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
2468
+ - Enhanced state management and message handling
2469
+
2470
+ CopilotKid Back-end SDK:
2471
+
2472
+ - Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
2473
+
2474
+ ### Patch Changes
2475
+
2476
+ - f6fab28: update tsup config
2477
+ - f6fab28: update entry
2478
+ - f6fab28: export langchain module
2479
+ - 8a77944: Improve LangSmith support
2480
+ - f6fab28: Ensure intermediate state config is sent as snake case
2481
+ - f6fab28: update entry in tsup config
2482
+ - 8a77944: Ensure the last message is sent to LangSmith
2483
+ - a5efccd: Revert rxjs changes
2484
+ - f6fab28: update entry
2485
+ - f6fab28: Update exports
2486
+ - f6fab28: Update exports
2487
+ - 332d744: Add support for Azure OpenAI
2488
+ - f6fab28: Export LangGraph functions
2489
+ - f6fab28: Update lockfile
2490
+ - Updated dependencies [f6fab28]
2491
+ - Updated dependencies [f6fab28]
2492
+ - Updated dependencies
2493
+ - Updated dependencies [f6fab28]
2494
+ - Updated dependencies [8a77944]
2495
+ - Updated dependencies [f6fab28]
2496
+ - Updated dependencies [f6fab28]
2497
+ - Updated dependencies [8a77944]
2498
+ - Updated dependencies [a5efccd]
2499
+ - Updated dependencies [f6fab28]
2500
+ - Updated dependencies [f6fab28]
2501
+ - Updated dependencies [f6fab28]
2502
+ - Updated dependencies [332d744]
2503
+ - Updated dependencies [f6fab28]
2504
+ - Updated dependencies [f6fab28]
2505
+ - @copilotkit/shared@1.4.0
2506
+
2507
+ ## 1.3.16-mme-revert-rxjs-changes.10
2508
+
2509
+ ### Patch Changes
2510
+
2511
+ - f6fab28: update tsup config
2512
+ - f6fab28: update entry
2513
+ - f6fab28: export langchain module
2514
+ - 8a77944: Improve LangSmith support
2515
+ - f6fab28: Ensure intermediate state config is sent as snake case
2516
+ - f6fab28: update entry in tsup config
2517
+ - 8a77944: Ensure the last message is sent to LangSmith
2518
+ - Revert rxjs changes
2519
+ - f6fab28: update entry
2520
+ - f6fab28: Update exports
2521
+ - f6fab28: Update exports
2522
+ - 332d744: Add support for Azure OpenAI
2523
+ - f6fab28: Export LangGraph functions
2524
+ - f6fab28: Update lockfile
2525
+ - Updated dependencies [f6fab28]
2526
+ - Updated dependencies [f6fab28]
2527
+ - Updated dependencies [f6fab28]
2528
+ - Updated dependencies [8a77944]
2529
+ - Updated dependencies [f6fab28]
2530
+ - Updated dependencies [f6fab28]
2531
+ - Updated dependencies [8a77944]
2532
+ - Updated dependencies
2533
+ - Updated dependencies [f6fab28]
2534
+ - Updated dependencies [f6fab28]
2535
+ - Updated dependencies [f6fab28]
2536
+ - Updated dependencies [332d744]
2537
+ - Updated dependencies [f6fab28]
2538
+ - Updated dependencies [f6fab28]
2539
+ - @copilotkit/shared@1.3.16-mme-revert-rxjs-changes.10
2540
+
2541
+ ## 1.3.15
2542
+
2543
+ ### Patch Changes
2544
+
2545
+ - pass description for array and object action parameters in langchain adapter
2546
+ - Updated dependencies
2547
+ - @copilotkit/shared@1.3.15
2548
+
2549
+ ## 1.3.14
2550
+
2551
+ ### Patch Changes
2552
+
2553
+ - Add data-test-id to some elements for testing
2554
+ - Updated dependencies
2555
+ - @copilotkit/shared@1.3.14
2556
+
2557
+ ## 1.3.13
2558
+
2559
+ ### Patch Changes
2560
+
2561
+ - fix usage of one-at-a-time tool when called multiple times
2562
+ - Updated dependencies
2563
+ - @copilotkit/shared@1.3.13
2564
+
2565
+ ## 1.3.12
2566
+
2567
+ ### Patch Changes
2568
+
2569
+ - - enable dynamic parameters in langchain adapter tool call
2570
+ - fix unparsable action arguments causing tool call crashes
2571
+ - Updated dependencies
2572
+ - @copilotkit/shared@1.3.12
2573
+
2574
+ ## 1.3.11
2575
+
2576
+ ### Patch Changes
2577
+
2578
+ - 08e8956: Fix duplicate messages
2579
+ - Fix duplicate messages
2580
+ - Updated dependencies [08e8956]
2581
+ - Updated dependencies
2582
+ - @copilotkit/shared@1.3.11
2583
+
2584
+ ## 1.3.11-mme-fix-duplicate-messages.0
2585
+
2586
+ ### Patch Changes
2587
+
2588
+ - Fix duplicate messages
2589
+ - Updated dependencies
2590
+ - @copilotkit/shared@1.3.11-mme-fix-duplicate-messages.0
2591
+
2592
+ ## 1.3.10
2593
+
2594
+ ### Patch Changes
2595
+
2596
+ - change how message chunk type is resolved (fixed langchain adapters)
2597
+ - Updated dependencies
2598
+ - @copilotkit/shared@1.3.10
2599
+
2600
+ ## 1.3.9
2601
+
2602
+ ### Patch Changes
2603
+
2604
+ - Fix message id issues
2605
+ - Updated dependencies
2606
+ - @copilotkit/shared@1.3.9
2607
+
2608
+ ## 1.3.8
2609
+
2610
+ ### Patch Changes
2611
+
2612
+ - fix textarea on multiple llm providers and memoize react ui context
2613
+ - Updated dependencies
2614
+ - @copilotkit/shared@1.3.8
2615
+
2616
+ ## 1.3.7
2617
+
2618
+ ### Patch Changes
2619
+
2620
+ - Fix libraries for React 19 and Next.js 15 support
2621
+ - Updated dependencies
2622
+ - @copilotkit/shared@1.3.7
2623
+
2624
+ ## 1.3.6
2625
+
2626
+ ### Patch Changes
2627
+
2628
+ - 1. Removes the usage of the `crypto` Node pacakge, instaed uses `uuid`. This ensures that non-Next.js React apps can use CopilotKit.
2629
+ 2. Fixes Nest.js runtime docs
2630
+
2631
+ - Updated dependencies
2632
+ - @copilotkit/shared@1.3.6
2633
+
2634
+ ## 1.3.5
2635
+
2636
+ ### Patch Changes
2637
+
2638
+ - Improve CoAgent state render
2639
+ - Updated dependencies
2640
+ - @copilotkit/shared@1.3.5
2641
+
2642
+ ## 1.3.4
2643
+
2644
+ ### Patch Changes
2645
+
2646
+ - Add followUp property to useCopilotAction
2647
+ - Updated dependencies
2648
+ - @copilotkit/shared@1.3.4
2649
+
2650
+ ## 1.3.3
2651
+
2652
+ ### Patch Changes
2653
+
2654
+ - Impvovements to error handling and CoAgent protocol
2655
+ - Updated dependencies
2656
+ - @copilotkit/shared@1.3.3
2657
+
2658
+ ## 1.3.2
2659
+
2660
+ ### Patch Changes
2661
+
2662
+ - Features and bug fixes
2663
+ - 30232c0: Ensure actions can be discovered on state change
2664
+ - Updated dependencies
2665
+ - Updated dependencies [30232c0]
2666
+ - @copilotkit/shared@1.3.2
2667
+
2668
+ ## 1.3.2-mme-discover-actions.0
2669
+
2670
+ ### Patch Changes
2671
+
2672
+ - Ensure actions can be discovered on state change
2673
+ - Updated dependencies
2674
+ - @copilotkit/shared@1.3.2-mme-discover-actions.0
2675
+
2676
+ ## 1.3.1
2677
+
2678
+ ### Patch Changes
2679
+
2680
+ - Revert CSS injection
2681
+ - Updated dependencies
2682
+ - @copilotkit/shared@1.3.1
2683
+
2684
+ ## 1.3.0
2685
+
2686
+ ### Minor Changes
2687
+
2688
+ - CoAgents and remote actions
2689
+
2690
+ ### Patch Changes
2691
+
2692
+ - 5b63f55: stream intermediate state
2693
+ - b6fd3d8: Better message grouping
2694
+ - 89420c6: Rename hooks and bugfixes
2695
+ - b6e8824: useCoAgent/useCoAgentAction
2696
+ - 91c35b9: useAgentState
2697
+ - 00be203: Remote actions preview
2698
+ - fb15f72: Reduce request size by skipping intermediate state
2699
+ - 8ecc3e4: Fix useCoAgent start/stop bug
2700
+ - Updated dependencies
2701
+ - Updated dependencies [5b63f55]
2702
+ - Updated dependencies [b6fd3d8]
2703
+ - Updated dependencies [89420c6]
2704
+ - Updated dependencies [b6e8824]
2705
+ - Updated dependencies [91c35b9]
2706
+ - Updated dependencies [00be203]
2707
+ - Updated dependencies [fb15f72]
2708
+ - Updated dependencies [8ecc3e4]
2709
+ - @copilotkit/shared@1.3.0
2710
+
2711
+ ## 1.2.1
2712
+
2713
+ ### Patch Changes
2714
+
2715
+ - inject minified css in bundle
2716
+ - removes the need to import `styles.css` manually
2717
+ - empty `styles.css` included in the build for backwards compatibility
2718
+ - uses tsup's `injectStyles` with `postcss` to bundle and minify the CSS, then inject it as a style tag
2719
+ - currently uses my fork of `tsup` where I added support for async function in `injectStyles` (must-have for postcss), a PR from my fork to the main library will follow shortly
2720
+ - remove material-ui, and use `react-icons` for icons (same icons as before)
2721
+ - remove unused `IncludedFilesPreview` component
2722
+ - updated docs
2723
+
2724
+ - Updated dependencies
2725
+ - @copilotkit/shared@1.2.1
2726
+
2727
+ ## 1.2.0
2728
+
2729
+ ### Minor Changes
2730
+
2731
+ - Fix errors related to crypto not being found, and other bug fixes
2732
+
2733
+ ### Patch Changes
2734
+
2735
+ - 638d51d: appendMessage fix 1
2736
+ - faccbe1: state-abuse resistance for useCopilotChat
2737
+ - b0cf700: remove unnecessary logging
2738
+ - Updated dependencies
2739
+ - Updated dependencies [638d51d]
2740
+ - Updated dependencies [faccbe1]
2741
+ - Updated dependencies [b0cf700]
2742
+ - @copilotkit/shared@1.2.0
2743
+
2744
+ ## 1.1.2
2745
+
2746
+ ### Patch Changes
2747
+
2748
+ - Pin headless-ui/react version to v2.1.1
2749
+ - Updated dependencies
2750
+ - @copilotkit/shared@1.1.2
2751
+
2752
+ ## 1.1.1
2753
+
2754
+ ### Patch Changes
2755
+
2756
+ - - improved documentation
2757
+ - center textarea popup
2758
+ - show/hide dev console
2759
+ - forward maxTokens, stop and force function calling
2760
+ - Updated dependencies
2761
+ - @copilotkit/shared@1.1.1
2762
+
2763
+ ## 1.1.0
2764
+
2765
+ ### Minor Changes
2766
+
2767
+ - Official support for Groq (`GroqAdapter`)
2768
+
2769
+ ### Patch Changes
2770
+
2771
+ - Updated dependencies
2772
+ - @copilotkit/shared@1.1.0
2773
+
2774
+ ## 1.0.9
2775
+
2776
+ ### Patch Changes
2777
+
2778
+ - Dev console, bugfixes
2779
+ - Updated dependencies
2780
+ - @copilotkit/shared@1.0.9
2781
+
2782
+ ## 1.0.8
2783
+
2784
+ ### Patch Changes
2785
+
2786
+ - Remove redundant console logs
2787
+ - Updated dependencies
2788
+ - @copilotkit/shared@1.0.8
2789
+
2790
+ ## 1.0.7
2791
+
2792
+ ### Patch Changes
2793
+
2794
+ - Add \_copilotkit internal properties to runtime
2795
+ - Updated dependencies
2796
+ - @copilotkit/shared@1.0.7
2797
+
2798
+ ## 1.0.6
2799
+
2800
+ ### Patch Changes
2801
+
2802
+ - - Proactively prevent race conditions
2803
+ - Improve token counting performance
2804
+ - Updated dependencies
2805
+ - @copilotkit/shared@1.0.6
2806
+
2807
+ ## 1.0.5
2808
+
2809
+ ### Patch Changes
2810
+
2811
+ - Include @copilotkit/runtime-client-gql NPM package version in request to Runtime
2812
+ - Updated dependencies
2813
+ - @copilotkit/shared@1.0.5
2814
+
2815
+ ## 1.0.4
2816
+
2817
+ ### Patch Changes
2818
+
2819
+ - Remove nanoid
2820
+ - Updated dependencies
2821
+ - @copilotkit/shared@1.0.4
2822
+
2823
+ ## 1.0.3
2824
+
2825
+ ### Patch Changes
2826
+
2827
+ - Add README.md to published packages and add keywords to package.json
2828
+ - Updated dependencies
2829
+ - @copilotkit/shared@1.0.3
2830
+
2831
+ ## 1.0.2
2832
+
2833
+ ### Patch Changes
2834
+
2835
+ - Add README.md and homepage/url to published packages
2836
+ - Updated dependencies
2837
+ - @copilotkit/shared@1.0.2
2838
+
2839
+ ## 1.0.1
2840
+
2841
+ ### Patch Changes
2842
+
2843
+ - Remove PostHog, use Segment Anonymous Telemetry instead
2844
+ - Updated dependencies
2845
+ - @copilotkit/shared@1.0.1
2846
+
2847
+ ## 1.0.0
2848
+
2849
+ ### Major Changes
2850
+
2851
+ - b6a4b6eb: V1.0 Release Candidate
2852
+ - A robust new protocol between the frontend and the Copilot Runtime
2853
+ - Support for Copilot Cloud
2854
+ - Generative UI
2855
+ - Support for LangChain universal tool calling
2856
+ - OpenAI assistant API streaming
2857
+
2858
+ - V1.0 Release
2859
+ - A robust new protocol between the frontend and the Copilot Runtime
2860
+ - Support for Copilot Cloud
2861
+ - Generative UI
2862
+ - Support for LangChain universal tool calling
2863
+ - OpenAI assistant API streaming
2864
+
2865
+ ### Patch Changes
2866
+
2867
+ - b6a4b6eb: Introduce anonymous telemetry
2868
+ - b6a4b6eb: Set default Copilot Cloud runtime URL to versioned URL (v1)
2869
+ - Updated dependencies [b6a4b6eb]
2870
+ - Updated dependencies [b6a4b6eb]
2871
+ - Updated dependencies [b6a4b6eb]
2872
+ - Updated dependencies
2873
+ - @copilotkit/shared@1.0.0
2874
+
2875
+ ## 1.0.0-beta.2
2876
+
2877
+ ### Patch Changes
2878
+
2879
+ - Set default Copilot Cloud runtime URL to versioned URL (v1)
2880
+ - Updated dependencies
2881
+ - @copilotkit/shared@1.0.0-beta.2
2882
+
2883
+ ## 1.0.0-beta.1
2884
+
2885
+ ### Patch Changes
2886
+
2887
+ - Introduce anonymous telemetry
2888
+ - Updated dependencies
2889
+ - @copilotkit/shared@1.0.0-beta.1
2890
+
2891
+ ## 1.0.0-beta.0
2892
+
2893
+ ### Major Changes
2894
+
2895
+ - V1.0 Release Candidate
2896
+ - A robust new protocol between the frontend and the Copilot Runtime
2897
+ - Support for Copilot Cloud
2898
+ - Generative UI
2899
+ - Support for LangChain universal tool calling
2900
+ - OpenAI assistant API streaming
2901
+
2902
+ ### Patch Changes
2903
+
2904
+ - Updated dependencies
2905
+ - @copilotkit/shared@1.0.0-beta.0