@copilotkit/runtime-client-gql 0.0.0-mme-load-agent-state-20250117154700

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 (92) hide show
  1. package/CHANGELOG.md +937 -0
  2. package/README.md +46 -0
  3. package/codegen.ts +22 -0
  4. package/dist/chunk-7ECCT6PK.mjs +1 -0
  5. package/dist/chunk-7ECCT6PK.mjs.map +1 -0
  6. package/dist/chunk-BBNGLVX5.mjs +38 -0
  7. package/dist/chunk-BBNGLVX5.mjs.map +1 -0
  8. package/dist/chunk-GQ2BQR46.mjs +119 -0
  9. package/dist/chunk-GQ2BQR46.mjs.map +1 -0
  10. package/dist/chunk-JGGSE6H3.mjs +20 -0
  11. package/dist/chunk-JGGSE6H3.mjs.map +1 -0
  12. package/dist/chunk-LBECNDL5.mjs +56 -0
  13. package/dist/chunk-LBECNDL5.mjs.map +1 -0
  14. package/dist/chunk-MLWD2EGY.mjs +200 -0
  15. package/dist/chunk-MLWD2EGY.mjs.map +1 -0
  16. package/dist/chunk-RHAQH56F.mjs +84 -0
  17. package/dist/chunk-RHAQH56F.mjs.map +1 -0
  18. package/dist/chunk-RIPDMDI6.mjs +77 -0
  19. package/dist/chunk-RIPDMDI6.mjs.map +1 -0
  20. package/dist/chunk-XZPL6QVK.mjs +24 -0
  21. package/dist/chunk-XZPL6QVK.mjs.map +1 -0
  22. package/dist/client/CopilotRuntimeClient.d.ts +37 -0
  23. package/dist/client/CopilotRuntimeClient.js +251 -0
  24. package/dist/client/CopilotRuntimeClient.js.map +1 -0
  25. package/dist/client/CopilotRuntimeClient.mjs +11 -0
  26. package/dist/client/CopilotRuntimeClient.mjs.map +1 -0
  27. package/dist/client/conversion.d.ts +11 -0
  28. package/dist/client/conversion.js +296 -0
  29. package/dist/client/conversion.js.map +1 -0
  30. package/dist/client/conversion.mjs +17 -0
  31. package/dist/client/conversion.mjs.map +1 -0
  32. package/dist/client/index.d.ts +8 -0
  33. package/dist/client/index.js +541 -0
  34. package/dist/client/index.js.map +1 -0
  35. package/dist/client/index.mjs +38 -0
  36. package/dist/client/index.mjs.map +1 -0
  37. package/dist/client/types.d.ts +55 -0
  38. package/dist/client/types.js +113 -0
  39. package/dist/client/types.js.map +1 -0
  40. package/dist/client/types.mjs +18 -0
  41. package/dist/client/types.mjs.map +1 -0
  42. package/dist/graphql/@generated/fragment-masking.d.ts +22 -0
  43. package/dist/graphql/@generated/fragment-masking.js +50 -0
  44. package/dist/graphql/@generated/fragment-masking.js.map +1 -0
  45. package/dist/graphql/@generated/fragment-masking.mjs +11 -0
  46. package/dist/graphql/@generated/fragment-masking.mjs.map +1 -0
  47. package/dist/graphql/@generated/gql.d.ts +53 -0
  48. package/dist/graphql/@generated/gql.js +45 -0
  49. package/dist/graphql/@generated/gql.js.map +1 -0
  50. package/dist/graphql/@generated/gql.mjs +8 -0
  51. package/dist/graphql/@generated/gql.mjs.map +1 -0
  52. package/dist/graphql/@generated/graphql.d.ts +477 -0
  53. package/dist/graphql/@generated/graphql.js +88 -0
  54. package/dist/graphql/@generated/graphql.js.map +1 -0
  55. package/dist/graphql/@generated/graphql.mjs +23 -0
  56. package/dist/graphql/@generated/graphql.mjs.map +1 -0
  57. package/dist/graphql/@generated/index.d.ts +4 -0
  58. package/dist/graphql/@generated/index.js +69 -0
  59. package/dist/graphql/@generated/index.js.map +1 -0
  60. package/dist/graphql/@generated/index.mjs +16 -0
  61. package/dist/graphql/@generated/index.mjs.map +1 -0
  62. package/dist/graphql/definitions/mutations.d.ts +9 -0
  63. package/dist/graphql/definitions/mutations.js +121 -0
  64. package/dist/graphql/definitions/mutations.js.map +1 -0
  65. package/dist/graphql/definitions/mutations.mjs +9 -0
  66. package/dist/graphql/definitions/mutations.mjs.map +1 -0
  67. package/dist/graphql/definitions/queries.d.ts +11 -0
  68. package/dist/graphql/definitions/queries.js +76 -0
  69. package/dist/graphql/definitions/queries.js.map +1 -0
  70. package/dist/graphql/definitions/queries.mjs +11 -0
  71. package/dist/graphql/definitions/queries.mjs.map +1 -0
  72. package/dist/index.d.ts +8 -0
  73. package/dist/index.js +591 -0
  74. package/dist/index.js.map +1 -0
  75. package/dist/index.mjs +57 -0
  76. package/dist/index.mjs.map +1 -0
  77. package/jest.config.js +5 -0
  78. package/package.json +77 -0
  79. package/src/client/CopilotRuntimeClient.ts +150 -0
  80. package/src/client/conversion.ts +211 -0
  81. package/src/client/index.ts +10 -0
  82. package/src/client/types.ts +127 -0
  83. package/src/graphql/@generated/fragment-masking.ts +87 -0
  84. package/src/graphql/@generated/gql.ts +52 -0
  85. package/src/graphql/@generated/graphql.ts +366 -0
  86. package/src/graphql/@generated/index.ts +2 -0
  87. package/src/graphql/definitions/mutations.ts +73 -0
  88. package/src/graphql/definitions/queries.ts +24 -0
  89. package/src/index.ts +2 -0
  90. package/tsconfig.json +16 -0
  91. package/tsup.config.ts +33 -0
  92. package/typedoc.json +4 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,937 @@
1
+ # @copilotkit/runtime-client-gql
2
+
3
+ ## 0.0.0-mme-load-agent-state-20250117154700
4
+
5
+ ### Patch Changes
6
+
7
+ - fb87bcf: - fix: silence abort controller cancellation throwing an error
8
+ - @copilotkit/shared@0.0.0-mme-load-agent-state-20250117154700
9
+
10
+ ## 1.5.12-next.4
11
+
12
+ ### Patch Changes
13
+
14
+ - @copilotkit/shared@1.5.12-next.4
15
+
16
+ ## 1.5.12-next.3
17
+
18
+ ### Patch Changes
19
+
20
+ - @copilotkit/shared@1.5.12-next.3
21
+
22
+ ## 1.5.12-next.2
23
+
24
+ ### Patch Changes
25
+
26
+ - fb87bcf: - fix: silence abort controller cancellation throwing an error
27
+ - @copilotkit/shared@1.5.12-next.2
28
+
29
+ ## 1.5.12-next.1
30
+
31
+ ### Patch Changes
32
+
33
+ - @copilotkit/shared@1.5.12-next.1
34
+
35
+ ## 1.5.12-next.0
36
+
37
+ ### Patch Changes
38
+
39
+ - @copilotkit/shared@1.5.12-next.0
40
+
41
+ ## 1.5.11
42
+
43
+ ### Patch Changes
44
+
45
+ - 72f9e58: test release notes
46
+ - aecb6f4: Fix build script
47
+ - 0a2e07e: Test changelog
48
+ - 9b3bdc2: test release notes
49
+ - @copilotkit/shared@1.5.11
50
+
51
+ ## 1.5.11-next.0
52
+
53
+ ### Patch Changes
54
+
55
+ - 72f9e58: test release notes
56
+ - aecb6f4: Fix build script
57
+ - 0a2e07e: Test changelog
58
+ - 9b3bdc2: test release notes
59
+ - @copilotkit/shared@1.5.11-next.0
60
+
61
+ ## 1.5.10
62
+
63
+ ### Patch Changes
64
+
65
+ - 72f9e58: test release notes
66
+ - aecb6f4: Fix build script
67
+ - 9b3bdc2: test release notes
68
+ - @copilotkit/shared@1.5.10
69
+
70
+ ## 1.5.10-next.0
71
+
72
+ ### Patch Changes
73
+
74
+ - 72f9e58: test release notes
75
+ - aecb6f4: Fix build script
76
+ - 9b3bdc2: test release notes
77
+ - @copilotkit/shared@1.5.10-next.0
78
+
79
+ ## 1.5.9
80
+
81
+ ### Patch Changes
82
+
83
+ - 72f9e58: test release notes
84
+ - 9b3bdc2: test release notes
85
+ - @copilotkit/shared@1.5.9
86
+
87
+ ## 1.5.8
88
+
89
+ ### Patch Changes
90
+
91
+ - 72f9e58: test release notes
92
+ - 9b3bdc2: test release notes
93
+ - @copilotkit/shared@1.5.8
94
+
95
+ ## 1.5.6-next.0
96
+
97
+ ### Patch Changes
98
+
99
+ - @copilotkit/shared@1.5.6-next.0
100
+
101
+ ## 1.5.5-next.5
102
+
103
+ ### Patch Changes
104
+
105
+ - @copilotkit/shared@1.5.5-next.5
106
+
107
+ ## 1.5.5-next.3
108
+
109
+ ### Patch Changes
110
+
111
+ - @copilotkit/shared@1.5.5-next.3
112
+
113
+ ## 1.5.5-next.2
114
+
115
+ ### Patch Changes
116
+
117
+ - 72f9e58: test release notes
118
+ - 9b3bdc2: test release notes
119
+ - @copilotkit/shared@1.5.5-next.2
120
+
121
+ ## 1.5.4
122
+
123
+ ### Patch Changes
124
+
125
+ - @copilotkit/shared@1.5.4
126
+
127
+ ## 1.5.3
128
+
129
+ ### Patch Changes
130
+
131
+ - @copilotkit/shared@1.5.3
132
+
133
+ ## 1.5.2
134
+
135
+ ### Patch Changes
136
+
137
+ - b0192c1: This is a test release
138
+ - @copilotkit/shared@1.5.2
139
+
140
+ ## 1.5.1
141
+
142
+ ### Patch Changes
143
+
144
+ - 5c01e9e: test prerelease #4
145
+ - da280ed: Test prerelease script
146
+ - 27e42d7: testing a prerelease
147
+ - 05240a9: test pre #2
148
+ - 33218fe: test prerelease #3
149
+ - 03f3d6f: Test next prerelease
150
+ - 649ebcc: - fix: add warning when using agents that are not available on agent related hooks
151
+ - Updated dependencies [5c01e9e]
152
+ - Updated dependencies [da280ed]
153
+ - Updated dependencies [27e42d7]
154
+ - Updated dependencies [05240a9]
155
+ - Updated dependencies [33218fe]
156
+ - Updated dependencies [03f3d6f]
157
+ - @copilotkit/shared@1.5.1
158
+
159
+ ## 1.5.1-next.3
160
+
161
+ ### Patch Changes
162
+
163
+ - 33218fe: test prerelease #3
164
+ - Updated dependencies [33218fe]
165
+ - @copilotkit/shared@1.5.1-next.3
166
+
167
+ ## 1.5.1-next.2
168
+
169
+ ### Patch Changes
170
+
171
+ - da280ed: Test prerelease script
172
+ - 649ebcc: - fix: add warning when using agents that are not available on agent related hooks
173
+ - Updated dependencies [da280ed]
174
+ - @copilotkit/shared@1.5.1-next.2
175
+
176
+ ## 1.5.1-next.1
177
+
178
+ ### Patch Changes
179
+
180
+ - 03f3d6f: Test next prerelease
181
+ - Updated dependencies [03f3d6f]
182
+ - @copilotkit/shared@1.5.1-next.1
183
+
184
+ ## 1.5.1-next.0
185
+
186
+ ### Patch Changes
187
+
188
+ - 27e42d7: testing a prerelease
189
+ - Updated dependencies [27e42d7]
190
+ - @copilotkit/shared@1.5.1-next.0
191
+
192
+ ## 1.5.0
193
+
194
+ ### Minor Changes
195
+
196
+ - 1b47092: Synchronize LangGraph messages with CopilotKit
197
+
198
+ ### Patch Changes
199
+
200
+ - 1b47092: CoAgents v0.3 prerelease
201
+ - Updated dependencies [1b47092]
202
+ - Updated dependencies [1b47092]
203
+ - @copilotkit/shared@1.5.0
204
+
205
+ ## 1.5.0-coagents-v0-3.0
206
+
207
+ ### Minor Changes
208
+
209
+ - Synchronize LangGraph messages with CopilotKit
210
+
211
+ ### Patch Changes
212
+
213
+ - e66bce4: CoAgents v0.3 prerelease
214
+ - Updated dependencies
215
+ - Updated dependencies [e66bce4]
216
+ - @copilotkit/shared@1.5.0-coagents-v0-3.0
217
+
218
+ ## 1.4.8
219
+
220
+ ### Patch Changes
221
+
222
+ - - Better error handling
223
+ - Introduce new "EmptyLLMAdapter" for when using CoAgents
224
+ - Improve dev console help options
225
+ - Allow CopilotKit remote endpoint without agents
226
+ - Updated dependencies
227
+ - @copilotkit/shared@1.4.8
228
+
229
+ ## 1.4.8-next.0
230
+
231
+ ### Patch Changes
232
+
233
+ - @copilotkit/shared@1.4.8-next.0
234
+
235
+ ## 1.4.7
236
+
237
+ ### Patch Changes
238
+
239
+ - Fix broken build script before release
240
+ - Updated dependencies
241
+ - @copilotkit/shared@1.4.7
242
+
243
+ ## 1.4.6
244
+
245
+ ### Patch Changes
246
+
247
+ - .
248
+
249
+ ## 1.4.5
250
+
251
+ ### Patch Changes
252
+
253
+ - testing release workflow
254
+ - Updated dependencies
255
+ - @copilotkit/shared@1.4.5
256
+
257
+ ## 1.4.5-next.0
258
+
259
+ ### Patch Changes
260
+
261
+ - testing release workflow
262
+ - Updated dependencies
263
+ - @copilotkit/shared@1.4.5-next.0
264
+
265
+ ## 1.4.4
266
+
267
+ ### Patch Changes
268
+
269
+ - @copilotkit/shared@1.4.4
270
+
271
+ ## 1.4.4-next.4
272
+
273
+ ### Patch Changes
274
+
275
+ - @copilotkit/shared@1.4.4-next.4
276
+
277
+ ## 1.4.4-next.3
278
+
279
+ ### Patch Changes
280
+
281
+ - @copilotkit/shared@1.4.4-next.3
282
+
283
+ ## 1.4.4-next.2
284
+
285
+ ### Patch Changes
286
+
287
+ - @copilotkit/shared@1.4.4-next.2
288
+
289
+ ## 1.4.4-next.1
290
+
291
+ ### Patch Changes
292
+
293
+ - @copilotkit/shared@1.4.4-next.1
294
+
295
+ ## 1.4.4-next.0
296
+
297
+ ### Patch Changes
298
+
299
+ - @copilotkit/shared@1.4.4-next.0
300
+
301
+ ## 1.4.3
302
+
303
+ ### Patch Changes
304
+
305
+ - c296282: - Better error surfacing when using LangGraph Platform streaming
306
+ - Ensure state is immediately set without using flushSync
307
+ - - Better error surfacing when using LangGraph Platform streaming
308
+ - Ensure state is immediately set without using flushSync
309
+ - Updated dependencies [c296282]
310
+ - Updated dependencies
311
+ - @copilotkit/shared@1.4.3
312
+
313
+ ## 1.4.3-pre.0
314
+
315
+ ### Patch Changes
316
+
317
+ - - Better error surfacing when using LangGraph Platform streaming
318
+ - Ensure state is immediately set without using flushSync
319
+ - Updated dependencies
320
+ - @copilotkit/shared@1.4.3-pre.0
321
+
322
+ ## 1.4.2
323
+
324
+ ### Patch Changes
325
+
326
+ - - Make sure agent state is set immediately (#1077)
327
+ - Support running an agent without messages (#1075)
328
+ - Updated dependencies
329
+ - @copilotkit/shared@1.4.2
330
+
331
+ ## 1.4.1
332
+
333
+ ### Patch Changes
334
+
335
+ - 1721cbd: lower case copilotkit property
336
+ - 1721cbd: add zod conversion
337
+ - 8d0144f: bump
338
+ - 8d0144f: bump
339
+ - 8d0144f: bump
340
+ - e16d95e: New prerelease
341
+ - 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
342
+ - CopilotKit Core:
343
+
344
+ - Improved error messages and overall logs
345
+ - `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
346
+ - Improved scrolling behavior. It is now possible to scroll up during LLM response generation
347
+ - Added Azure OpenAI integration
348
+ - Updated interfaces for better developer ergonomics
349
+
350
+ CoAgents:
351
+
352
+ - Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
353
+ - Support for LangGraph Platform in Remote Endpoints
354
+ - LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
355
+ - Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
356
+ - Enhanced state management and message handling
357
+
358
+ CopilotKid Back-end SDK:
359
+
360
+ - Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
361
+
362
+ - 8d0144f: bump
363
+ - 8d0144f: bump
364
+ - fef1b74: fix assistant message CSS and propagate actions to LG JS
365
+ - Updated dependencies [1721cbd]
366
+ - Updated dependencies [1721cbd]
367
+ - Updated dependencies [8d0144f]
368
+ - Updated dependencies [8d0144f]
369
+ - Updated dependencies [8d0144f]
370
+ - Updated dependencies [e16d95e]
371
+ - Updated dependencies [1721cbd]
372
+ - Updated dependencies
373
+ - Updated dependencies [8d0144f]
374
+ - Updated dependencies [8d0144f]
375
+ - Updated dependencies [fef1b74]
376
+ - @copilotkit/shared@1.4.1
377
+
378
+ ## 1.4.1-pre.6
379
+
380
+ ### Patch Changes
381
+
382
+ - 1721cbd: lower case copilotkit property
383
+ - 1721cbd: add zod conversion
384
+ - 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
385
+ - fix assistant message CSS and propagate actions to LG JS
386
+ - Updated dependencies [1721cbd]
387
+ - Updated dependencies [1721cbd]
388
+ - Updated dependencies [1721cbd]
389
+ - Updated dependencies
390
+ - @copilotkit/shared@1.4.1-pre.6
391
+
392
+ ## 1.4.1-pre.5
393
+
394
+ ### Patch Changes
395
+
396
+ - bump
397
+ - Updated dependencies
398
+ - @copilotkit/shared@1.4.1-pre.5
399
+
400
+ ## 1.4.1-pre.4
401
+
402
+ ### Patch Changes
403
+
404
+ - bump
405
+ - Updated dependencies
406
+ - @copilotkit/shared@1.4.1-pre.4
407
+
408
+ ## 1.4.1-pre.3
409
+
410
+ ### Patch Changes
411
+
412
+ - bump
413
+ - Updated dependencies
414
+ - @copilotkit/shared@1.4.1-pre.3
415
+
416
+ ## 1.4.1-pre.2
417
+
418
+ ### Patch Changes
419
+
420
+ - bump
421
+ - Updated dependencies
422
+ - @copilotkit/shared@1.4.1-pre.2
423
+
424
+ ## 1.4.1-pre.1
425
+
426
+ ### Patch Changes
427
+
428
+ - bump
429
+ - Updated dependencies
430
+ - @copilotkit/shared@1.4.1-pre.1
431
+
432
+ ## 1.4.1-pre.0
433
+
434
+ ### Patch Changes
435
+
436
+ - New prerelease
437
+ - Updated dependencies
438
+ - @copilotkit/shared@1.4.1-pre.0
439
+
440
+ ## 1.4.0
441
+
442
+ ### Minor Changes
443
+
444
+ CopilotKit Core:
445
+
446
+ - Improved error messages and overall logs
447
+ - `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
448
+ - Improved scrolling behavior. It is now possible to scroll up during LLM response generation
449
+ - Added Azure OpenAI integration
450
+ - Updated interfaces for better developer ergonomics
451
+
452
+ CoAgents:
453
+
454
+ - Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
455
+ - Support for LangGraph Platform in Remote Endpoints
456
+ - LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
457
+ - Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
458
+ - Enhanced state management and message handling
459
+
460
+ CopilotKid Back-end SDK:
461
+
462
+ - Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
463
+
464
+ ### Patch Changes
465
+
466
+ - f6fab28: update tsup config
467
+ - f6fab28: update entry
468
+ - f6fab28: export langchain module
469
+ - 8a77944: Improve LangSmith support
470
+ - f6fab28: Ensure intermediate state config is sent as snake case
471
+ - f6fab28: update entry in tsup config
472
+ - 8a77944: Ensure the last message is sent to LangSmith
473
+ - a5efccd: Revert rxjs changes
474
+ - f6fab28: update entry
475
+ - f6fab28: Update exports
476
+ - f6fab28: Update exports
477
+ - 332d744: Add support for Azure OpenAI
478
+ - f6fab28: Export LangGraph functions
479
+ - f6fab28: Update lockfile
480
+ - Updated dependencies [f6fab28]
481
+ - Updated dependencies [f6fab28]
482
+ - Updated dependencies
483
+ - Updated dependencies [f6fab28]
484
+ - Updated dependencies [8a77944]
485
+ - Updated dependencies [f6fab28]
486
+ - Updated dependencies [f6fab28]
487
+ - Updated dependencies [8a77944]
488
+ - Updated dependencies [a5efccd]
489
+ - Updated dependencies [f6fab28]
490
+ - Updated dependencies [f6fab28]
491
+ - Updated dependencies [f6fab28]
492
+ - Updated dependencies [332d744]
493
+ - Updated dependencies [f6fab28]
494
+ - Updated dependencies [f6fab28]
495
+ - @copilotkit/runtime@1.4.0
496
+ - @copilotkit/shared@1.4.0
497
+
498
+ ## 1.3.16-mme-revert-rxjs-changes.10
499
+
500
+ ### Patch Changes
501
+
502
+ - f6fab28: update tsup config
503
+ - f6fab28: update entry
504
+ - f6fab28: export langchain module
505
+ - 8a77944: Improve LangSmith support
506
+ - f6fab28: Ensure intermediate state config is sent as snake case
507
+ - f6fab28: update entry in tsup config
508
+ - 8a77944: Ensure the last message is sent to LangSmith
509
+ - Revert rxjs changes
510
+ - f6fab28: update entry
511
+ - f6fab28: Update exports
512
+ - f6fab28: Update exports
513
+ - 332d744: Add support for Azure OpenAI
514
+ - f6fab28: Export LangGraph functions
515
+ - f6fab28: Update lockfile
516
+ - Updated dependencies [f6fab28]
517
+ - Updated dependencies [f6fab28]
518
+ - Updated dependencies [f6fab28]
519
+ - Updated dependencies [8a77944]
520
+ - Updated dependencies [f6fab28]
521
+ - Updated dependencies [f6fab28]
522
+ - Updated dependencies [8a77944]
523
+ - Updated dependencies
524
+ - Updated dependencies [f6fab28]
525
+ - Updated dependencies [f6fab28]
526
+ - Updated dependencies [f6fab28]
527
+ - Updated dependencies [332d744]
528
+ - Updated dependencies [f6fab28]
529
+ - Updated dependencies [f6fab28]
530
+ - @copilotkit/runtime@1.3.16-mme-revert-rxjs-changes.10
531
+ - @copilotkit/shared@1.3.16-mme-revert-rxjs-changes.10
532
+
533
+ ## 1.3.15
534
+
535
+ ### Patch Changes
536
+
537
+ - pass description for array and object action parameters in langchain adapter
538
+ - Updated dependencies
539
+ - @copilotkit/runtime@1.3.15
540
+ - @copilotkit/shared@1.3.15
541
+
542
+ ## 1.3.14
543
+
544
+ ### Patch Changes
545
+
546
+ - Add data-test-id to some elements for testing
547
+ - Updated dependencies
548
+ - @copilotkit/runtime@1.3.14
549
+ - @copilotkit/shared@1.3.14
550
+
551
+ ## 1.3.13
552
+
553
+ ### Patch Changes
554
+
555
+ - fix usage of one-at-a-time tool when called multiple times
556
+ - Updated dependencies
557
+ - @copilotkit/runtime@1.3.13
558
+ - @copilotkit/shared@1.3.13
559
+
560
+ ## 1.3.12
561
+
562
+ ### Patch Changes
563
+
564
+ - - enable dynamic parameters in langchain adapter tool call
565
+ - fix unparsable action arguments causing tool call crashes
566
+ - Updated dependencies
567
+ - @copilotkit/runtime@1.3.12
568
+ - @copilotkit/shared@1.3.12
569
+
570
+ ## 1.3.11
571
+
572
+ ### Patch Changes
573
+
574
+ - 08e8956: Fix duplicate messages
575
+ - Fix duplicate messages
576
+ - Updated dependencies [08e8956]
577
+ - Updated dependencies
578
+ - @copilotkit/runtime@1.3.11
579
+ - @copilotkit/shared@1.3.11
580
+
581
+ ## 1.3.11-mme-fix-duplicate-messages.0
582
+
583
+ ### Patch Changes
584
+
585
+ - Fix duplicate messages
586
+ - Updated dependencies
587
+ - @copilotkit/runtime@1.3.11-mme-fix-duplicate-messages.0
588
+ - @copilotkit/shared@1.3.11-mme-fix-duplicate-messages.0
589
+
590
+ ## 1.3.10
591
+
592
+ ### Patch Changes
593
+
594
+ - change how message chunk type is resolved (fixed langchain adapters)
595
+ - Updated dependencies
596
+ - @copilotkit/runtime@1.3.10
597
+ - @copilotkit/shared@1.3.10
598
+
599
+ ## 1.3.9
600
+
601
+ ### Patch Changes
602
+
603
+ - Fix message id issues
604
+ - Updated dependencies
605
+ - @copilotkit/runtime@1.3.9
606
+ - @copilotkit/shared@1.3.9
607
+
608
+ ## 1.3.8
609
+
610
+ ### Patch Changes
611
+
612
+ - fix textarea on multiple llm providers and memoize react ui context
613
+ - Updated dependencies
614
+ - @copilotkit/runtime@1.3.8
615
+ - @copilotkit/shared@1.3.8
616
+
617
+ ## 1.3.7
618
+
619
+ ### Patch Changes
620
+
621
+ - Fix libraries for React 19 and Next.js 15 support
622
+ - Updated dependencies
623
+ - @copilotkit/runtime@1.3.7
624
+ - @copilotkit/shared@1.3.7
625
+
626
+ ## 1.3.6
627
+
628
+ ### Patch Changes
629
+
630
+ - 1. Removes the usage of the `crypto` Node pacakge, instaed uses `uuid`. This ensures that non-Next.js React apps can use CopilotKit.
631
+ 2. Fixes Nest.js runtime docs
632
+
633
+ - Updated dependencies
634
+ - @copilotkit/runtime@1.3.6
635
+ - @copilotkit/shared@1.3.6
636
+
637
+ ## 1.3.5
638
+
639
+ ### Patch Changes
640
+
641
+ - Improve CoAgent state render
642
+ - Updated dependencies
643
+ - @copilotkit/runtime@1.3.5
644
+ - @copilotkit/shared@1.3.5
645
+
646
+ ## 1.3.4
647
+
648
+ ### Patch Changes
649
+
650
+ - Add followUp property to useCopilotAction
651
+ - Updated dependencies
652
+ - @copilotkit/runtime@1.3.4
653
+ - @copilotkit/shared@1.3.4
654
+
655
+ ## 1.3.3
656
+
657
+ ### Patch Changes
658
+
659
+ - Impvovements to error handling and CoAgent protocol
660
+ - Updated dependencies
661
+ - @copilotkit/runtime@1.3.3
662
+ - @copilotkit/shared@1.3.3
663
+
664
+ ## 1.3.2
665
+
666
+ ### Patch Changes
667
+
668
+ - Features and bug fixes
669
+ - 30232c0: Ensure actions can be discovered on state change
670
+ - Updated dependencies
671
+ - Updated dependencies [30232c0]
672
+ - @copilotkit/runtime@1.3.2
673
+ - @copilotkit/shared@1.3.2
674
+
675
+ ## 1.3.2-mme-discover-actions.0
676
+
677
+ ### Patch Changes
678
+
679
+ - Ensure actions can be discovered on state change
680
+ - Updated dependencies
681
+ - @copilotkit/runtime@1.3.2-mme-discover-actions.0
682
+ - @copilotkit/shared@1.3.2-mme-discover-actions.0
683
+
684
+ ## 1.3.1
685
+
686
+ ### Patch Changes
687
+
688
+ - Revert CSS injection
689
+ - Updated dependencies
690
+ - @copilotkit/runtime@1.3.1
691
+ - @copilotkit/shared@1.3.1
692
+
693
+ ## 1.3.0
694
+
695
+ ### Minor Changes
696
+
697
+ - CoAgents and remote actions
698
+
699
+ ### Patch Changes
700
+
701
+ - 5b63f55: stream intermediate state
702
+ - b6fd3d8: Better message grouping
703
+ - 89420c6: Rename hooks and bugfixes
704
+ - b6e8824: useCoAgent/useCoAgentAction
705
+ - 91c35b9: useAgentState
706
+ - 00be203: Remote actions preview
707
+ - fb15f72: Reduce request size by skipping intermediate state
708
+ - 8ecc3e4: Fix useCoAgent start/stop bug
709
+ - Updated dependencies
710
+ - Updated dependencies [5b63f55]
711
+ - Updated dependencies [b6fd3d8]
712
+ - Updated dependencies [89420c6]
713
+ - Updated dependencies [b6e8824]
714
+ - Updated dependencies [91c35b9]
715
+ - Updated dependencies [00be203]
716
+ - Updated dependencies [fb15f72]
717
+ - Updated dependencies [8ecc3e4]
718
+ - @copilotkit/runtime@1.3.0
719
+ - @copilotkit/shared@1.3.0
720
+
721
+ ## 1.2.1
722
+
723
+ ### Patch Changes
724
+
725
+ - inject minified css in bundle
726
+
727
+ - removes the need to import `styles.css` manually
728
+ - empty `styles.css` included in the build for backwards compatibility
729
+ - uses tsup's `injectStyles` with `postcss` to bundle and minify the CSS, then inject it as a style tag
730
+ - 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
731
+ - remove material-ui, and use `react-icons` for icons (same icons as before)
732
+ - remove unused `IncludedFilesPreview` component
733
+ - updated docs
734
+
735
+ - Updated dependencies
736
+ - @copilotkit/runtime@1.2.1
737
+ - @copilotkit/shared@1.2.1
738
+
739
+ ## 1.2.0
740
+
741
+ ### Minor Changes
742
+
743
+ - Fix errors related to crypto not being found, and other bug fixes
744
+
745
+ ### Patch Changes
746
+
747
+ - 638d51d: appendMessage fix 1
748
+ - faccbe1: state-abuse resistance for useCopilotChat
749
+ - b0cf700: remove unnecessary logging
750
+ - Updated dependencies
751
+ - Updated dependencies [638d51d]
752
+ - Updated dependencies [faccbe1]
753
+ - Updated dependencies [b0cf700]
754
+ - @copilotkit/runtime@1.2.0
755
+ - @copilotkit/shared@1.2.0
756
+
757
+ ## 1.1.2
758
+
759
+ ### Patch Changes
760
+
761
+ - Pin headless-ui/react version to v2.1.1
762
+ - Updated dependencies
763
+ - @copilotkit/runtime@1.1.2
764
+ - @copilotkit/shared@1.1.2
765
+
766
+ ## 1.1.1
767
+
768
+ ### Patch Changes
769
+
770
+ - - improved documentation
771
+ - center textarea popup
772
+ - show/hide dev console
773
+ - forward maxTokens, stop and force function calling
774
+ - Updated dependencies
775
+ - @copilotkit/runtime@1.1.1
776
+ - @copilotkit/shared@1.1.1
777
+
778
+ ## 1.1.0
779
+
780
+ ### Minor Changes
781
+
782
+ - Official support for Groq (`GroqAdapter`)
783
+
784
+ ### Patch Changes
785
+
786
+ - Updated dependencies
787
+ - @copilotkit/runtime@1.1.0
788
+ - @copilotkit/shared@1.1.0
789
+
790
+ ## 1.0.9
791
+
792
+ ### Patch Changes
793
+
794
+ - Dev console, bugfixes
795
+ - Updated dependencies
796
+ - @copilotkit/runtime@1.0.9
797
+ - @copilotkit/shared@1.0.9
798
+
799
+ ## 1.0.8
800
+
801
+ ### Patch Changes
802
+
803
+ - Remove redundant console logs
804
+ - Updated dependencies
805
+ - @copilotkit/runtime@1.0.8
806
+ - @copilotkit/shared@1.0.8
807
+
808
+ ## 1.0.7
809
+
810
+ ### Patch Changes
811
+
812
+ - Add \_copilotkit internal properties to runtime
813
+ - Updated dependencies
814
+ - @copilotkit/runtime@1.0.7
815
+ - @copilotkit/shared@1.0.7
816
+
817
+ ## 1.0.6
818
+
819
+ ### Patch Changes
820
+
821
+ - - Proactively prevent race conditions
822
+ - Improve token counting performance
823
+ - Updated dependencies
824
+ - @copilotkit/runtime@1.0.6
825
+ - @copilotkit/shared@1.0.6
826
+
827
+ ## 1.0.5
828
+
829
+ ### Patch Changes
830
+
831
+ - Include @copilotkit/runtime-client-gql NPM package version in request to Runtime
832
+ - Updated dependencies
833
+ - @copilotkit/runtime@1.0.5
834
+ - @copilotkit/shared@1.0.5
835
+
836
+ ## 1.0.4
837
+
838
+ ### Patch Changes
839
+
840
+ - Remove nanoid
841
+ - Updated dependencies
842
+ - @copilotkit/runtime@1.0.4
843
+ - @copilotkit/shared@1.0.4
844
+
845
+ ## 1.0.3
846
+
847
+ ### Patch Changes
848
+
849
+ - Add README.md to published packages and add keywords to package.json
850
+ - Updated dependencies
851
+ - @copilotkit/runtime@1.0.3
852
+ - @copilotkit/shared@1.0.3
853
+
854
+ ## 1.0.2
855
+
856
+ ### Patch Changes
857
+
858
+ - Add README.md and homepage/url to published packages
859
+ - Updated dependencies
860
+ - @copilotkit/runtime@1.0.2
861
+ - @copilotkit/shared@1.0.2
862
+
863
+ ## 1.0.1
864
+
865
+ ### Patch Changes
866
+
867
+ - Remove PostHog, use Segment Anonymous Telemetry instead
868
+ - Updated dependencies
869
+ - @copilotkit/runtime@1.0.1
870
+ - @copilotkit/shared@1.0.1
871
+
872
+ ## 1.0.0
873
+
874
+ ### Major Changes
875
+
876
+ - b6a4b6eb: V1.0 Release Candidate
877
+
878
+ - A robust new protocol between the frontend and the Copilot Runtime
879
+ - Support for Copilot Cloud
880
+ - Generative UI
881
+ - Support for LangChain universal tool calling
882
+ - OpenAI assistant API streaming
883
+
884
+ - V1.0 Release
885
+
886
+ - A robust new protocol between the frontend and the Copilot Runtime
887
+ - Support for Copilot Cloud
888
+ - Generative UI
889
+ - Support for LangChain universal tool calling
890
+ - OpenAI assistant API streaming
891
+
892
+ ### Patch Changes
893
+
894
+ - b6a4b6eb: Introduce anonymous telemetry
895
+ - b6a4b6eb: Set default Copilot Cloud runtime URL to versioned URL (v1)
896
+ - Updated dependencies [b6a4b6eb]
897
+ - Updated dependencies [b6a4b6eb]
898
+ - Updated dependencies [b6a4b6eb]
899
+ - Updated dependencies
900
+ - @copilotkit/runtime@1.0.0
901
+ - @copilotkit/shared@1.0.0
902
+
903
+ ## 1.0.0-beta.2
904
+
905
+ ### Patch Changes
906
+
907
+ - Set default Copilot Cloud runtime URL to versioned URL (v1)
908
+ - Updated dependencies
909
+ - @copilotkit/runtime@1.0.0-beta.2
910
+ - @copilotkit/shared@1.0.0-beta.2
911
+
912
+ ## 1.0.0-beta.1
913
+
914
+ ### Patch Changes
915
+
916
+ - Introduce anonymous telemetry
917
+ - Updated dependencies
918
+ - @copilotkit/runtime@1.0.0-beta.1
919
+ - @copilotkit/shared@1.0.0-beta.1
920
+
921
+ ## 1.0.0-beta.0
922
+
923
+ ### Major Changes
924
+
925
+ - V1.0 Release Candidate
926
+
927
+ - A robust new protocol between the frontend and the Copilot Runtime
928
+ - Support for Copilot Cloud
929
+ - Generative UI
930
+ - Support for LangChain universal tool calling
931
+ - OpenAI assistant API streaming
932
+
933
+ ### Patch Changes
934
+
935
+ - Updated dependencies
936
+ - @copilotkit/runtime@1.0.0-beta.0
937
+ - @copilotkit/shared@1.0.0-beta.0