@copilotkit/runtime 0.0.0-feat-langgraph-interrupt-hook-20250203094147 → 0.0.0-feat-enable-setting-recursion-limit-20250424165940
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +664 -4
- package/README.md +75 -0
- package/__snapshots__/schema/schema.graphql +34 -1
- package/dist/{chunk-D2WLFQS6.mjs → chunk-2OZAGFV3.mjs} +2 -2
- package/dist/{chunk-U3V2BCGI.mjs → chunk-5BIEM2UU.mjs} +2 -2
- package/dist/{chunk-SRG3KESO.mjs → chunk-E5I25B3L.mjs} +3 -3
- package/dist/{chunk-S3KKBII4.mjs → chunk-EY6RUVB7.mjs} +90 -14
- package/dist/chunk-EY6RUVB7.mjs.map +1 -0
- package/dist/chunk-FHD4JECV.mjs +33 -0
- package/dist/{chunk-PQYCXGUK.mjs → chunk-JMLO6ZET.mjs} +3 -3
- package/dist/{chunk-FAHDO554.mjs → chunk-NOBEZQXE.mjs} +1556 -618
- package/dist/chunk-NOBEZQXE.mjs.map +1 -0
- package/dist/{chunk-37TMELJE.mjs → chunk-P4G7CDGG.mjs} +3 -3
- package/dist/chunk-Q6JA6YY3.mjs +1 -0
- package/dist/{chunk-HNUNXFTW.mjs → chunk-SHBDMA63.mjs} +16 -4
- package/dist/chunk-SHBDMA63.mjs.map +1 -0
- package/dist/graphql/types/base/index.mjs +2 -2
- package/dist/graphql/types/converted/index.d.ts +1 -1
- package/dist/graphql/types/converted/index.js +13 -0
- package/dist/graphql/types/converted/index.js.map +1 -1
- package/dist/graphql/types/converted/index.mjs +5 -3
- package/dist/{groq-adapter-248058e8.d.ts → groq-adapter-4848f8e8.d.ts} +1 -1
- package/dist/{index-a7f37670.d.ts → index-d4614f9b.d.ts} +19 -3
- package/dist/index.d.ts +11 -10
- package/dist/index.js +4694 -3661
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -14
- package/dist/index.mjs.map +1 -1
- package/dist/{langserve-9580bd66.d.ts → langserve-4a5c9217.d.ts} +12 -3
- package/dist/lib/index.d.ts +11 -10
- package/dist/lib/index.js +4272 -3270
- package/dist/lib/index.js.map +1 -1
- package/dist/lib/index.mjs +18 -10
- package/dist/lib/integrations/index.d.ts +7 -6
- package/dist/lib/integrations/index.js +692 -498
- package/dist/lib/integrations/index.js.map +1 -1
- package/dist/lib/integrations/index.mjs +11 -9
- package/dist/lib/integrations/nest/index.d.ts +6 -5
- package/dist/lib/integrations/nest/index.js +690 -498
- package/dist/lib/integrations/nest/index.js.map +1 -1
- package/dist/lib/integrations/nest/index.mjs +7 -7
- package/dist/lib/integrations/node-express/index.d.ts +6 -5
- package/dist/lib/integrations/node-express/index.js +690 -498
- package/dist/lib/integrations/node-express/index.js.map +1 -1
- package/dist/lib/integrations/node-express/index.mjs +7 -7
- package/dist/lib/integrations/node-http/index.d.ts +6 -5
- package/dist/lib/integrations/node-http/index.js +690 -498
- package/dist/lib/integrations/node-http/index.js.map +1 -1
- package/dist/lib/integrations/node-http/index.mjs +6 -6
- package/dist/service-adapters/index.d.ts +4 -4
- package/dist/service-adapters/index.js +113 -37
- package/dist/service-adapters/index.js.map +1 -1
- package/dist/service-adapters/index.mjs +2 -2
- package/dist/shared-e7c09fa4.d.ts +404 -0
- package/dist/utils/index.mjs +2 -2
- package/package.json +14 -9
- package/src/agents/langgraph/event-source.ts +28 -5
- package/src/agents/langgraph/events.ts +11 -1
- package/src/graphql/inputs/agent-state.input.ts +3 -0
- package/src/graphql/inputs/message.input.ts +18 -0
- package/src/graphql/inputs/meta-event.input.ts +4 -3
- package/src/graphql/resolvers/copilot.resolver.ts +46 -2
- package/src/graphql/resolvers/state.resolver.ts +6 -1
- package/src/graphql/types/converted/index.ts +15 -1
- package/src/graphql/types/copilot-response.type.ts +18 -3
- package/src/graphql/types/enums.ts +1 -0
- package/src/graphql/types/meta-events.type.ts +41 -1
- package/src/lib/index.ts +3 -1
- package/src/lib/integrations/shared.ts +9 -1
- package/src/lib/observability.ts +73 -0
- package/src/lib/runtime/__tests__/remote-action-constructors.test.ts +246 -0
- package/src/lib/runtime/agentwire-action.ts +123 -0
- package/src/lib/runtime/copilot-runtime.ts +643 -57
- package/src/lib/runtime/mcp-tools-utils.ts +117 -0
- package/src/lib/runtime/remote-action-constructors.ts +57 -79
- package/src/lib/runtime/remote-actions.ts +35 -7
- package/src/lib/runtime/remote-lg-action.ts +166 -23
- package/src/lib/streaming.ts +59 -0
- package/src/lib/telemetry-client.ts +3 -1
- package/src/service-adapters/anthropic/utils.ts +32 -0
- package/src/service-adapters/conversion.ts +49 -46
- package/src/service-adapters/events.ts +11 -5
- package/src/service-adapters/groq/groq-adapter.ts +6 -3
- package/src/service-adapters/openai/openai-adapter.ts +1 -1
- package/src/service-adapters/openai/openai-assistant-adapter.ts +1 -1
- package/src/service-adapters/openai/utils.ts +51 -13
- package/src/service-adapters/unify/unify-adapter.ts +1 -1
- package/tsconfig.json +4 -2
- package/dist/chunk-44O2JGUY.mjs +0 -12
- package/dist/chunk-DFOKBSIS.mjs +0 -1
- package/dist/chunk-FAHDO554.mjs.map +0 -1
- package/dist/chunk-HNUNXFTW.mjs.map +0 -1
- package/dist/chunk-S3KKBII4.mjs.map +0 -1
- package/dist/copilot-runtime-a113045f.d.ts +0 -212
- /package/dist/{chunk-D2WLFQS6.mjs.map → chunk-2OZAGFV3.mjs.map} +0 -0
- /package/dist/{chunk-U3V2BCGI.mjs.map → chunk-5BIEM2UU.mjs.map} +0 -0
- /package/dist/{chunk-SRG3KESO.mjs.map → chunk-E5I25B3L.mjs.map} +0 -0
- /package/dist/{chunk-44O2JGUY.mjs.map → chunk-FHD4JECV.mjs.map} +0 -0
- /package/dist/{chunk-PQYCXGUK.mjs.map → chunk-JMLO6ZET.mjs.map} +0 -0
- /package/dist/{chunk-37TMELJE.mjs.map → chunk-P4G7CDGG.mjs.map} +0 -0
- /package/dist/{chunk-DFOKBSIS.mjs.map → chunk-Q6JA6YY3.mjs.map} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,676 @@
|
|
|
1
1
|
# @copilotkit/runtime
|
|
2
2
|
|
|
3
|
-
## 0.0.0-feat-
|
|
3
|
+
## 0.0.0-feat-enable-setting-recursion-limit-20250424165940
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
-
-
|
|
7
|
+
- 1d2ae5a: - feat: enable setting langgraph config from ui
|
|
8
|
+
- chore: document usage of new config
|
|
9
|
+
- @copilotkit/shared@0.0.0-feat-enable-setting-recursion-limit-20250424165940
|
|
10
|
+
|
|
11
|
+
## 1.8.7
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 8b8474f: - feat: add image input support with multi-model compatibility, pasting, and UX improvements
|
|
16
|
+
- @copilotkit/shared@1.8.7
|
|
17
|
+
|
|
18
|
+
## 1.8.7-next.0
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 8b8474f: - feat: add image input support with multi-model compatibility, pasting, and UX improvements
|
|
23
|
+
- @copilotkit/shared@1.8.7-next.0
|
|
24
|
+
|
|
25
|
+
## 1.8.6
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 7a04bd1: - fix: fix how results are communicated back on interrupt
|
|
30
|
+
- fix: do not allow followup for interrupt actions
|
|
31
|
+
- chore: improve TS docs for interrupt
|
|
32
|
+
- @copilotkit/shared@1.8.6
|
|
33
|
+
|
|
34
|
+
## 1.8.6-next.0
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- 7a04bd1: - fix: fix how results are communicated back on interrupt
|
|
39
|
+
- fix: do not allow followup for interrupt actions
|
|
40
|
+
- chore: improve TS docs for interrupt
|
|
41
|
+
- @copilotkit/shared@1.8.6-next.0
|
|
42
|
+
|
|
43
|
+
## 1.8.5
|
|
44
|
+
|
|
45
|
+
### Patch Changes
|
|
46
|
+
|
|
47
|
+
- c0d3261: - full AWP support
|
|
48
|
+
|
|
49
|
+
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
50
|
+
|
|
51
|
+
- refactor: address linter issues with the new pages
|
|
52
|
+
|
|
53
|
+
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
54
|
+
|
|
55
|
+
- Merge branch 'mme/acp' into mme/mastra
|
|
56
|
+
- add sse example
|
|
57
|
+
- Create small-turkeys-agree.md
|
|
58
|
+
- upgrade AWP
|
|
59
|
+
- Merge branch 'mme/mastra' of github.com:CopilotKit/CopilotKit into mme/mastra
|
|
60
|
+
- make agents a dict
|
|
61
|
+
- update docs
|
|
62
|
+
- send tools
|
|
63
|
+
- update to latest packages
|
|
64
|
+
- fix problem where state sync are preventing tool calls
|
|
65
|
+
- set possibly undefined toolCalls to an empty array
|
|
66
|
+
- fix missing tool call ids
|
|
67
|
+
|
|
68
|
+
- 77a7457: - feat: Add Model Context Protocol (MCP) support
|
|
69
|
+
- 76d9ef9: - fix: handle langgraph client specific errors when running lgc stream
|
|
70
|
+
- c0d3261: - add AWP support
|
|
71
|
+
|
|
72
|
+
- make it work
|
|
73
|
+
- update docs
|
|
74
|
+
- refactor: move UI files to be normal NextJS pages and update generation
|
|
75
|
+
|
|
76
|
+
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
77
|
+
|
|
78
|
+
- refactor: address linter issues with the new pages
|
|
79
|
+
|
|
80
|
+
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
81
|
+
|
|
82
|
+
- Merge branch 'mme/acp' into mme/mastra
|
|
83
|
+
- add sse example
|
|
84
|
+
|
|
85
|
+
- d0e8a1e: - fix: fix duplicate messages on regenerate
|
|
86
|
+
- @copilotkit/shared@1.8.5
|
|
87
|
+
|
|
88
|
+
## 1.8.5-next.5
|
|
89
|
+
|
|
90
|
+
### Patch Changes
|
|
91
|
+
|
|
92
|
+
- c0d3261: - full AWP support
|
|
93
|
+
|
|
94
|
+
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
95
|
+
|
|
96
|
+
- refactor: address linter issues with the new pages
|
|
97
|
+
|
|
98
|
+
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
99
|
+
|
|
100
|
+
- Merge branch 'mme/acp' into mme/mastra
|
|
101
|
+
- add sse example
|
|
102
|
+
- Create small-turkeys-agree.md
|
|
103
|
+
- upgrade AWP
|
|
104
|
+
- Merge branch 'mme/mastra' of github.com:CopilotKit/CopilotKit into mme/mastra
|
|
105
|
+
- make agents a dict
|
|
106
|
+
- update docs
|
|
107
|
+
- send tools
|
|
108
|
+
- update to latest packages
|
|
109
|
+
- fix problem where state sync are preventing tool calls
|
|
110
|
+
- set possibly undefined toolCalls to an empty array
|
|
111
|
+
- fix missing tool call ids
|
|
112
|
+
|
|
113
|
+
- c0d3261: - add AWP support
|
|
114
|
+
|
|
115
|
+
- make it work
|
|
116
|
+
- update docs
|
|
117
|
+
- refactor: move UI files to be normal NextJS pages and update generation
|
|
118
|
+
|
|
119
|
+
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
120
|
+
|
|
121
|
+
- refactor: address linter issues with the new pages
|
|
122
|
+
|
|
123
|
+
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai>
|
|
124
|
+
|
|
125
|
+
- Merge branch 'mme/acp' into mme/mastra
|
|
126
|
+
- add sse example
|
|
127
|
+
- @copilotkit/shared@1.8.5-next.5
|
|
128
|
+
|
|
129
|
+
## 1.8.5-next.4
|
|
130
|
+
|
|
131
|
+
### Patch Changes
|
|
132
|
+
|
|
133
|
+
- 76d9ef9: - fix: handle langgraph client specific errors when running lgc stream
|
|
134
|
+
- @copilotkit/shared@1.8.5-next.4
|
|
135
|
+
|
|
136
|
+
## 1.8.5-next.3
|
|
137
|
+
|
|
138
|
+
### Patch Changes
|
|
139
|
+
|
|
140
|
+
- 77a7457: - feat: Add Model Context Protocol (MCP) support
|
|
141
|
+
- @copilotkit/shared@1.8.5-next.3
|
|
142
|
+
|
|
143
|
+
## 1.8.5-next.2
|
|
144
|
+
|
|
145
|
+
### Patch Changes
|
|
146
|
+
|
|
147
|
+
- @copilotkit/shared@1.8.5-next.2
|
|
148
|
+
|
|
149
|
+
## 1.8.5-next.1
|
|
150
|
+
|
|
151
|
+
### Patch Changes
|
|
152
|
+
|
|
153
|
+
- d0e8a1e: - fix: fix duplicate messages on regenerate
|
|
154
|
+
- @copilotkit/shared@1.8.5-next.1
|
|
155
|
+
|
|
156
|
+
## 1.8.5-next.0
|
|
157
|
+
|
|
158
|
+
### Patch Changes
|
|
159
|
+
|
|
160
|
+
- @copilotkit/shared@1.8.5-next.0
|
|
161
|
+
|
|
162
|
+
## 1.8.4
|
|
163
|
+
|
|
164
|
+
### Patch Changes
|
|
165
|
+
|
|
166
|
+
- e652aac: - feat: add support for langgraph config schema
|
|
167
|
+
- f363760: - fix: when unable to find specified agent, show what's available
|
|
168
|
+
- Updated dependencies [f363760]
|
|
169
|
+
- @copilotkit/shared@1.8.4
|
|
170
|
+
|
|
171
|
+
## 1.8.4-next.4
|
|
172
|
+
|
|
173
|
+
### Patch Changes
|
|
174
|
+
|
|
175
|
+
- @copilotkit/shared@1.8.4-next.4
|
|
176
|
+
|
|
177
|
+
## 1.8.4-next.3
|
|
178
|
+
|
|
179
|
+
### Patch Changes
|
|
180
|
+
|
|
181
|
+
- e652aac: - feat: add support for langgraph config schema
|
|
182
|
+
- @copilotkit/shared@1.8.4-next.3
|
|
183
|
+
|
|
184
|
+
## 1.8.4-next.2
|
|
185
|
+
|
|
186
|
+
### Patch Changes
|
|
187
|
+
|
|
188
|
+
- @copilotkit/shared@1.8.4-next.2
|
|
189
|
+
|
|
190
|
+
## 1.8.4-next.1
|
|
191
|
+
|
|
192
|
+
### Patch Changes
|
|
193
|
+
|
|
194
|
+
- f363760: - fix: when unable to find specified agent, show what's available
|
|
195
|
+
- Updated dependencies [f363760]
|
|
196
|
+
- @copilotkit/shared@1.8.4-next.1
|
|
197
|
+
|
|
198
|
+
## 1.8.4-next.0
|
|
199
|
+
|
|
200
|
+
### Patch Changes
|
|
201
|
+
|
|
202
|
+
- @copilotkit/shared@1.8.4-next.0
|
|
203
|
+
|
|
204
|
+
## 1.8.3
|
|
205
|
+
|
|
206
|
+
### Patch Changes
|
|
207
|
+
|
|
208
|
+
- @copilotkit/shared@1.8.3
|
|
209
|
+
|
|
210
|
+
## 1.8.3-next.0
|
|
211
|
+
|
|
212
|
+
### Patch Changes
|
|
213
|
+
|
|
214
|
+
- @copilotkit/shared@1.8.3-next.0
|
|
215
|
+
|
|
216
|
+
## 1.8.2-next.3
|
|
217
|
+
|
|
218
|
+
### Patch Changes
|
|
219
|
+
|
|
220
|
+
- @copilotkit/shared@1.8.2-next.3
|
|
221
|
+
|
|
222
|
+
## 1.8.2-next.2
|
|
223
|
+
|
|
224
|
+
### Patch Changes
|
|
225
|
+
|
|
226
|
+
- 4eedf97: - fix: handle failure to fetch langgraph schema
|
|
227
|
+
- @copilotkit/shared@1.8.2-next.2
|
|
228
|
+
|
|
229
|
+
## 1.8.2-next.1
|
|
230
|
+
|
|
231
|
+
### Patch Changes
|
|
232
|
+
|
|
233
|
+
- e95bb0e: - fix: clarify difference between lgp endpoints to fastapi endpoints
|
|
234
|
+
- @copilotkit/shared@1.8.2-next.1
|
|
235
|
+
|
|
236
|
+
## 1.8.2-next.0
|
|
237
|
+
|
|
238
|
+
### Patch Changes
|
|
239
|
+
|
|
240
|
+
- @copilotkit/shared@1.8.2-next.0
|
|
241
|
+
|
|
242
|
+
## 1.8.1
|
|
243
|
+
|
|
244
|
+
### Patch Changes
|
|
245
|
+
|
|
246
|
+
- @copilotkit/shared@1.8.1
|
|
247
|
+
|
|
248
|
+
## 1.8.1-next.1
|
|
249
|
+
|
|
250
|
+
### Patch Changes
|
|
251
|
+
|
|
252
|
+
- @copilotkit/shared@1.8.1-next.1
|
|
253
|
+
|
|
254
|
+
## 1.8.1-next.0
|
|
255
|
+
|
|
256
|
+
### Patch Changes
|
|
257
|
+
|
|
258
|
+
- @copilotkit/shared@1.8.1-next.0
|
|
259
|
+
|
|
260
|
+
## 1.8.0
|
|
261
|
+
|
|
262
|
+
### Patch Changes
|
|
263
|
+
|
|
264
|
+
- a16757a: - fix: re-enable runtime actions when remote endpoint is set
|
|
265
|
+
- @copilotkit/shared@1.8.0
|
|
266
|
+
|
|
267
|
+
## 1.8.0-next.8
|
|
268
|
+
|
|
269
|
+
### Patch Changes
|
|
270
|
+
|
|
271
|
+
- @copilotkit/shared@1.8.0-next.8
|
|
272
|
+
|
|
273
|
+
## 1.8.0-next.7
|
|
274
|
+
|
|
275
|
+
### Patch Changes
|
|
276
|
+
|
|
277
|
+
- @copilotkit/shared@1.8.0-next.7
|
|
278
|
+
|
|
279
|
+
## 1.8.0-next.6
|
|
280
|
+
|
|
281
|
+
### Patch Changes
|
|
282
|
+
|
|
283
|
+
- @copilotkit/shared@1.8.0-next.6
|
|
284
|
+
|
|
285
|
+
## 1.8.0-next.5
|
|
286
|
+
|
|
287
|
+
### Patch Changes
|
|
288
|
+
|
|
289
|
+
- @copilotkit/shared@1.8.0-next.5
|
|
290
|
+
|
|
291
|
+
## 1.8.0-next.4
|
|
292
|
+
|
|
293
|
+
### Patch Changes
|
|
294
|
+
|
|
295
|
+
- @copilotkit/shared@1.8.0-next.4
|
|
296
|
+
|
|
297
|
+
## 1.8.0-next.3
|
|
298
|
+
|
|
299
|
+
### Patch Changes
|
|
300
|
+
|
|
301
|
+
- @copilotkit/shared@1.8.0-next.3
|
|
302
|
+
|
|
303
|
+
## 1.7.2-next.2
|
|
304
|
+
|
|
305
|
+
### Patch Changes
|
|
306
|
+
|
|
307
|
+
- @copilotkit/shared@1.7.2-next.2
|
|
308
|
+
|
|
309
|
+
## 1.7.2-next.1
|
|
310
|
+
|
|
311
|
+
### Patch Changes
|
|
312
|
+
|
|
313
|
+
- @copilotkit/shared@1.7.2-next.1
|
|
314
|
+
|
|
315
|
+
## 1.7.2-next.0
|
|
316
|
+
|
|
317
|
+
### Patch Changes
|
|
318
|
+
|
|
319
|
+
- a16757a: - fix: re-enable runtime actions when remote endpoint is set
|
|
320
|
+
- @copilotkit/shared@1.7.2-next.0
|
|
321
|
+
|
|
322
|
+
## 1.7.1
|
|
323
|
+
|
|
324
|
+
### Patch Changes
|
|
325
|
+
|
|
326
|
+
- 261b2be: - simplifies interface + adds o11y in agents
|
|
327
|
+
- @copilotkit/shared@1.7.1
|
|
328
|
+
|
|
329
|
+
## 1.7.1-next.0
|
|
330
|
+
|
|
331
|
+
### Patch Changes
|
|
332
|
+
|
|
333
|
+
- 261b2be: - simplifies interface + adds o11y in agents
|
|
334
|
+
- @copilotkit/shared@1.7.1-next.0
|
|
335
|
+
|
|
336
|
+
## 1.7.0
|
|
337
|
+
|
|
338
|
+
### Minor Changes
|
|
339
|
+
|
|
340
|
+
- 082db7a: - CrewAI support
|
|
341
|
+
|
|
342
|
+
### Patch Changes
|
|
343
|
+
|
|
344
|
+
- 082db7a: - Added RemoteAgentAdapter and implemented CopilotKit (protocol & events).
|
|
345
|
+
- Integrated CrewAI (with a prototype, HITL, event system, and chat/demo tweaks).
|
|
346
|
+
- Updated docs and cleaned up code (fixing stdout issues, restricting Python version, and streamlining demos).
|
|
347
|
+
- 1e934e4: - feat(runtime): Add LangFuse logging integration
|
|
348
|
+
- @copilotkit/shared@1.7.0
|
|
349
|
+
|
|
350
|
+
## 1.7.0-next.1
|
|
351
|
+
|
|
352
|
+
### Patch Changes
|
|
353
|
+
|
|
354
|
+
- 1e934e4: - feat(runtime): Add LangFuse logging integration
|
|
355
|
+
- @copilotkit/shared@1.7.0-next.1
|
|
356
|
+
|
|
357
|
+
## 1.7.0-next.0
|
|
358
|
+
|
|
359
|
+
### Minor Changes
|
|
360
|
+
|
|
361
|
+
- 082db7a: - CrewAI support
|
|
362
|
+
|
|
363
|
+
### Patch Changes
|
|
364
|
+
|
|
365
|
+
- 082db7a: - Added RemoteAgentAdapter and implemented CopilotKit (protocol & events).
|
|
366
|
+
- Integrated CrewAI (with a prototype, HITL, event system, and chat/demo tweaks).
|
|
367
|
+
- Updated docs and cleaned up code (fixing stdout issues, restricting Python version, and streamlining demos).
|
|
368
|
+
- @copilotkit/shared@1.7.0-next.0
|
|
369
|
+
|
|
370
|
+
## 1.6.0
|
|
371
|
+
|
|
372
|
+
### Minor Changes
|
|
373
|
+
|
|
374
|
+
- fea916f: - feat: support input and output schema of langgraph
|
|
375
|
+
- docs: add input output schema docs
|
|
376
|
+
- 7d061d9: - feat(configurable): execute langgraph with user config
|
|
377
|
+
|
|
378
|
+
### Patch Changes
|
|
379
|
+
|
|
380
|
+
- 543f703: - fix: refrain from processing same tool end several times
|
|
381
|
+
- fix: do not register runtime set action when there are remote endpoints
|
|
382
|
+
- 090203d: - fix: use tryMap method to filter out possibly invalid items
|
|
383
|
+
- 1bb9ca2: - fix(coagents): don't fail when LangSmith API key is missing
|
|
384
|
+
- fix(coagents): don't check for langsmithApiKey in resolveEndpointType
|
|
385
|
+
- 4ddb6d2: - fix: add class validator to dependencies
|
|
386
|
+
- d07f49c: - fix(runtime): fix execution of runtime set backend action handlers
|
|
387
|
+
- 45a3e10: - feat: support latest openai api
|
|
388
|
+
- chore: update all openai dependencies to use latest
|
|
389
|
+
- feat: update adapters using openai API
|
|
390
|
+
- 68f7b65: - handle parsing in fail-safe fashion
|
|
391
|
+
- Updated dependencies [090203d]
|
|
392
|
+
- @copilotkit/shared@1.6.0
|
|
393
|
+
|
|
394
|
+
## 1.6.0-next.12
|
|
395
|
+
|
|
396
|
+
### Patch Changes
|
|
397
|
+
|
|
398
|
+
- 1bb9ca2: - fix(coagents): don't fail when LangSmith API key is missing
|
|
399
|
+
- fix(coagents): don't check for langsmithApiKey in resolveEndpointType
|
|
400
|
+
- @copilotkit/shared@1.6.0-next.12
|
|
401
|
+
|
|
402
|
+
## 1.6.0-next.11
|
|
403
|
+
|
|
404
|
+
### Patch Changes
|
|
405
|
+
|
|
406
|
+
- @copilotkit/shared@1.6.0-next.11
|
|
407
|
+
|
|
408
|
+
## 1.6.0-next.10
|
|
409
|
+
|
|
410
|
+
### Patch Changes
|
|
411
|
+
|
|
412
|
+
- 543f703: - fix: refrain from processing same tool end several times
|
|
413
|
+
- fix: do not register runtime set action when there are remote endpoints
|
|
414
|
+
- @copilotkit/shared@1.6.0-next.10
|
|
415
|
+
|
|
416
|
+
## 1.6.0-next.9
|
|
417
|
+
|
|
418
|
+
### Patch Changes
|
|
419
|
+
|
|
420
|
+
- d07f49c: - fix(runtime): fix execution of runtime set backend action handlers
|
|
421
|
+
- @copilotkit/shared@1.6.0-next.9
|
|
422
|
+
|
|
423
|
+
## 1.6.0-next.8
|
|
424
|
+
|
|
425
|
+
### Minor Changes
|
|
426
|
+
|
|
427
|
+
- fea916f: - feat: support input and output schema of langgraph
|
|
428
|
+
- docs: add input output schema docs
|
|
429
|
+
|
|
430
|
+
### Patch Changes
|
|
431
|
+
|
|
432
|
+
- @copilotkit/shared@1.6.0-next.8
|
|
433
|
+
|
|
434
|
+
## 1.6.0-next.7
|
|
435
|
+
|
|
436
|
+
### Patch Changes
|
|
437
|
+
|
|
438
|
+
- @copilotkit/shared@1.6.0-next.7
|
|
439
|
+
|
|
440
|
+
## 1.6.0-next.6
|
|
441
|
+
|
|
442
|
+
### Patch Changes
|
|
443
|
+
|
|
444
|
+
- 45a3e10: - feat: support latest openai api
|
|
445
|
+
- chore: update all openai dependencies to use latest
|
|
446
|
+
- feat: update adapters using openai API
|
|
447
|
+
- @copilotkit/shared@1.6.0-next.6
|
|
448
|
+
|
|
449
|
+
## 1.6.0-next.5
|
|
450
|
+
|
|
451
|
+
### Patch Changes
|
|
452
|
+
|
|
453
|
+
- 090203d: - fix: use tryMap method to filter out possibly invalid items
|
|
454
|
+
- Updated dependencies [090203d]
|
|
455
|
+
- @copilotkit/shared@1.6.0-next.5
|
|
456
|
+
|
|
457
|
+
## 1.6.0-next.4
|
|
458
|
+
|
|
459
|
+
### Patch Changes
|
|
460
|
+
|
|
461
|
+
- 68f7b65: - handle parsing in fail-safe fashion
|
|
462
|
+
- @copilotkit/shared@1.6.0-next.4
|
|
463
|
+
|
|
464
|
+
## 1.6.0-next.3
|
|
465
|
+
|
|
466
|
+
### Patch Changes
|
|
467
|
+
|
|
468
|
+
- 4ddb6d2: - fix: add class validator to dependencies
|
|
469
|
+
- @copilotkit/shared@1.6.0-next.3
|
|
470
|
+
|
|
471
|
+
## 1.6.0-next.2
|
|
472
|
+
|
|
473
|
+
### Patch Changes
|
|
474
|
+
|
|
475
|
+
- @copilotkit/shared@1.6.0-next.2
|
|
476
|
+
|
|
477
|
+
## 1.6.0-next.1
|
|
478
|
+
|
|
479
|
+
### Patch Changes
|
|
480
|
+
|
|
481
|
+
- @copilotkit/shared@1.6.0-next.1
|
|
482
|
+
|
|
483
|
+
## 1.6.0-next.0
|
|
484
|
+
|
|
485
|
+
### Minor Changes
|
|
486
|
+
|
|
487
|
+
- 7d061d9: - feat(configurable): execute langgraph with user config
|
|
488
|
+
|
|
489
|
+
### Patch Changes
|
|
490
|
+
|
|
491
|
+
- @copilotkit/shared@1.6.0-next.0
|
|
492
|
+
|
|
493
|
+
## 1.5.20
|
|
494
|
+
|
|
495
|
+
### Patch Changes
|
|
496
|
+
|
|
497
|
+
- Updated dependencies [51f0d66]
|
|
498
|
+
- @copilotkit/shared@1.5.20
|
|
499
|
+
|
|
500
|
+
## 1.5.20-next.0
|
|
501
|
+
|
|
502
|
+
### Patch Changes
|
|
503
|
+
|
|
504
|
+
- Updated dependencies [51f0d66]
|
|
505
|
+
- @copilotkit/shared@1.5.20-next.0
|
|
506
|
+
|
|
507
|
+
## 1.5.19
|
|
508
|
+
|
|
509
|
+
### Patch Changes
|
|
510
|
+
|
|
511
|
+
- Updated dependencies [0dd1ab9]
|
|
512
|
+
- @copilotkit/shared@1.5.19
|
|
513
|
+
|
|
514
|
+
## 1.5.19-next.1
|
|
515
|
+
|
|
516
|
+
### Patch Changes
|
|
517
|
+
|
|
518
|
+
- Updated dependencies [0dd1ab9]
|
|
519
|
+
- @copilotkit/shared@1.5.19-next.1
|
|
520
|
+
|
|
521
|
+
## 1.5.19-next.0
|
|
522
|
+
|
|
523
|
+
### Patch Changes
|
|
524
|
+
|
|
525
|
+
- @copilotkit/shared@1.5.19-next.0
|
|
526
|
+
|
|
527
|
+
## 1.5.18
|
|
528
|
+
|
|
529
|
+
### Patch Changes
|
|
530
|
+
|
|
531
|
+
- d47cd26: - fix: detect and alert on version mismatch
|
|
532
|
+
- a6e46a9: - fix: use langgraph metadata to get node name
|
|
533
|
+
- 38d3ac2: - fix: add additional info the our error messages
|
|
534
|
+
- Updated dependencies [d47cd26]
|
|
535
|
+
- Updated dependencies [f77a7b9]
|
|
536
|
+
- Updated dependencies [38d3ac2]
|
|
537
|
+
- @copilotkit/shared@1.5.18
|
|
538
|
+
|
|
539
|
+
## 1.5.18-next.3
|
|
540
|
+
|
|
541
|
+
### Patch Changes
|
|
542
|
+
|
|
543
|
+
- Updated dependencies [f77a7b9]
|
|
544
|
+
- @copilotkit/shared@1.5.18-next.3
|
|
545
|
+
|
|
546
|
+
## 1.5.18-next.2
|
|
547
|
+
|
|
548
|
+
### Patch Changes
|
|
549
|
+
|
|
550
|
+
- 38d3ac2: - fix: add additional info the our error messages
|
|
551
|
+
- Updated dependencies [38d3ac2]
|
|
552
|
+
- @copilotkit/shared@1.5.18-next.2
|
|
553
|
+
|
|
554
|
+
## 1.5.18-next.1
|
|
555
|
+
|
|
556
|
+
### Patch Changes
|
|
557
|
+
|
|
558
|
+
- a6e46a9: - fix: use langgraph metadata to get node name
|
|
559
|
+
- @copilotkit/shared@1.5.18-next.1
|
|
560
|
+
|
|
561
|
+
## 1.5.18-next.0
|
|
562
|
+
|
|
563
|
+
### Patch Changes
|
|
564
|
+
|
|
565
|
+
- d47cd26: - fix: detect and alert on version mismatch
|
|
566
|
+
- Updated dependencies [d47cd26]
|
|
567
|
+
- @copilotkit/shared@1.5.18-next.0
|
|
568
|
+
|
|
569
|
+
## 1.5.17
|
|
570
|
+
|
|
571
|
+
### Patch Changes
|
|
572
|
+
|
|
573
|
+
- 1fc3902: - Revert "fix: detect and alert on version mismatch (#1333)"
|
|
574
|
+
|
|
575
|
+
This reverts commit 48b7c7b1bd48ced82ffb9a00d6eddc1f7581e0c1.
|
|
576
|
+
|
|
577
|
+
- Updated dependencies [1fc3902]
|
|
578
|
+
- @copilotkit/shared@1.5.17
|
|
579
|
+
|
|
580
|
+
## 1.5.17-next.0
|
|
581
|
+
|
|
582
|
+
### Patch Changes
|
|
583
|
+
|
|
584
|
+
- 1fc3902: - Revert "fix: detect and alert on version mismatch (#1333)"
|
|
585
|
+
|
|
586
|
+
This reverts commit 48b7c7b1bd48ced82ffb9a00d6eddc1f7581e0c1.
|
|
587
|
+
|
|
588
|
+
- Updated dependencies [1fc3902]
|
|
589
|
+
- @copilotkit/shared@1.5.17-next.0
|
|
590
|
+
|
|
591
|
+
## 1.5.16
|
|
592
|
+
|
|
593
|
+
### Patch Changes
|
|
594
|
+
|
|
595
|
+
- 9be85f1: - fix: use latest langchain packages
|
|
596
|
+
- 48b7c7b: - fix: detect and alert on version mismatch
|
|
597
|
+
- Updated dependencies [48b7c7b]
|
|
598
|
+
- @copilotkit/shared@1.5.16
|
|
599
|
+
|
|
600
|
+
## 1.5.16-next.2
|
|
601
|
+
|
|
602
|
+
### Patch Changes
|
|
603
|
+
|
|
604
|
+
- 9be85f1: - fix: use latest langchain packages
|
|
605
|
+
- @copilotkit/shared@1.5.16-next.2
|
|
606
|
+
|
|
607
|
+
## 1.5.16-next.1
|
|
608
|
+
|
|
609
|
+
### Patch Changes
|
|
610
|
+
|
|
611
|
+
- 48b7c7b: - fix: detect and alert on version mismatch
|
|
612
|
+
- Updated dependencies [48b7c7b]
|
|
613
|
+
- @copilotkit/shared@1.5.16-next.1
|
|
614
|
+
|
|
615
|
+
## 1.5.16-next.0
|
|
616
|
+
|
|
617
|
+
### Patch Changes
|
|
618
|
+
|
|
619
|
+
- @copilotkit/shared@1.5.16-next.0
|
|
620
|
+
|
|
621
|
+
## 1.5.15
|
|
622
|
+
|
|
623
|
+
### Patch Changes
|
|
624
|
+
|
|
625
|
+
- 06f9f35: - feat(interrupt): add copilotkit interrupt as messages with copilotkit interrupt convenience fn
|
|
626
|
+
- chore(deps): update dependencies for demos
|
|
627
|
+
- chore(interrupt-as-message): add e2e test for interrupt as message
|
|
628
|
+
- 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
|
|
8
629
|
- chore(interrupt): add e2e test to interrupt functionality
|
|
9
630
|
- feat(interrupt): add support for multiple interrupts and conditions
|
|
631
|
+
- 68bdbcd: - fix(runtime): enable multi-agent flows while preventing recursive self-calls
|
|
10
632
|
- c14f9db: - add headers handling to other LangGraphClients
|
|
11
633
|
- eb315bd: - fix: allow empty langsmith api key
|
|
12
|
-
- Updated dependencies [
|
|
13
|
-
- @copilotkit/shared@
|
|
634
|
+
- Updated dependencies [7b3141d]
|
|
635
|
+
- @copilotkit/shared@1.5.15
|
|
636
|
+
|
|
637
|
+
## 1.5.15-next.8
|
|
638
|
+
|
|
639
|
+
### Patch Changes
|
|
640
|
+
|
|
641
|
+
- 06f9f35: - feat(interrupt): add copilotkit interrupt as messages with copilotkit interrupt convenience fn
|
|
642
|
+
- chore(deps): update dependencies for demos
|
|
643
|
+
- chore(interrupt-as-message): add e2e test for interrupt as message
|
|
644
|
+
- @copilotkit/shared@1.5.15-next.8
|
|
645
|
+
|
|
646
|
+
## 1.5.15-next.7
|
|
647
|
+
|
|
648
|
+
### Patch Changes
|
|
649
|
+
|
|
650
|
+
- 68bdbcd: - fix(runtime): enable multi-agent flows while preventing recursive self-calls
|
|
651
|
+
- @copilotkit/shared@1.5.15-next.7
|
|
652
|
+
|
|
653
|
+
## 1.5.15-next.6
|
|
654
|
+
|
|
655
|
+
### Patch Changes
|
|
656
|
+
|
|
657
|
+
- @copilotkit/shared@1.5.15-next.6
|
|
658
|
+
|
|
659
|
+
## 1.5.15-next.5
|
|
660
|
+
|
|
661
|
+
### Patch Changes
|
|
662
|
+
|
|
663
|
+
- @copilotkit/shared@1.5.15-next.5
|
|
664
|
+
|
|
665
|
+
## 1.5.15-next.4
|
|
666
|
+
|
|
667
|
+
### Patch Changes
|
|
668
|
+
|
|
669
|
+
- 7b3141d: - feat(interrupt): support LG interrupt with useLangGraphInterrupt hook
|
|
670
|
+
- chore(interrupt): add e2e test to interrupt functionality
|
|
671
|
+
- feat(interrupt): add support for multiple interrupts and conditions
|
|
672
|
+
- Updated dependencies [7b3141d]
|
|
673
|
+
- @copilotkit/shared@1.5.15-next.4
|
|
14
674
|
|
|
15
675
|
## 1.5.15-next.3
|
|
16
676
|
|