@copilotkit/runtime-client-gql 0.0.0-test-custom-tag-prerelease-1-20250108200215

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