@ai-sdk/workflow 1.0.0-beta.9 → 1.0.0-beta.95
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 +747 -0
- package/dist/index.d.mts +190 -112
- package/dist/index.mjs +855 -340
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -11
- package/src/create-language-model-tool-result-output.ts +85 -0
- package/src/do-stream-step.ts +46 -9
- package/src/index.ts +5 -3
- package/src/providers/mock.ts +8 -8
- package/src/serializable-schema.ts +5 -1
- package/src/stream-text-iterator.ts +150 -62
- package/src/test/agent-e2e-workflows.ts +89 -9
- package/src/to-ui-message-chunk.ts +13 -10
- package/src/workflow-agent.ts +1157 -606
- package/src/workflow-chat-transport.ts +17 -15
- package/src/telemetry.ts +0 -199
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,752 @@
|
|
|
1
1
|
# @ai-sdk/workflow
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.95
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b097c52]
|
|
8
|
+
- ai@7.0.0-beta.178
|
|
9
|
+
|
|
10
|
+
## 1.0.0-beta.94
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- b8396f0: trigger initial beta release
|
|
15
|
+
- Updated dependencies [b8396f0]
|
|
16
|
+
- @ai-sdk/provider-utils@5.0.0-beta.49
|
|
17
|
+
- @ai-sdk/provider@4.0.0-beta.19
|
|
18
|
+
- ai@7.0.0-beta.177
|
|
19
|
+
|
|
20
|
+
## 1.0.0-canary.93
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- ai@7.0.0-canary.176
|
|
25
|
+
|
|
26
|
+
## 1.0.0-canary.92
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [6ec57f5]
|
|
31
|
+
- ai@7.0.0-canary.175
|
|
32
|
+
|
|
33
|
+
## 1.0.0-canary.91
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- ai@7.0.0-canary.174
|
|
38
|
+
|
|
39
|
+
## 1.0.0-canary.90
|
|
40
|
+
|
|
41
|
+
### Patch Changes
|
|
42
|
+
|
|
43
|
+
- ai@7.0.0-canary.173
|
|
44
|
+
|
|
45
|
+
## 1.0.0-canary.89
|
|
46
|
+
|
|
47
|
+
### Patch Changes
|
|
48
|
+
|
|
49
|
+
- Updated dependencies [aeda373]
|
|
50
|
+
- Updated dependencies [25a64f8]
|
|
51
|
+
- Updated dependencies [375fdd7]
|
|
52
|
+
- Updated dependencies [f18b08f]
|
|
53
|
+
- Updated dependencies [b4507d5]
|
|
54
|
+
- @ai-sdk/provider-utils@5.0.0-canary.48
|
|
55
|
+
- ai@7.0.0-canary.172
|
|
56
|
+
|
|
57
|
+
## 1.0.0-canary.88
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- Updated dependencies [89ad56f]
|
|
62
|
+
- Updated dependencies [f9a496f]
|
|
63
|
+
- Updated dependencies [3295831]
|
|
64
|
+
- ai@7.0.0-canary.171
|
|
65
|
+
|
|
66
|
+
## 1.0.0-canary.87
|
|
67
|
+
|
|
68
|
+
### Patch Changes
|
|
69
|
+
|
|
70
|
+
- bae5e2b: fix(security): re-validate tool approvals from client message history before execution
|
|
71
|
+
|
|
72
|
+
The approval-replay path in `generateText`/`streamText` (and `WorkflowAgent.stream`) reconstructed approved tool calls from the client-supplied messages array and executed them without re-validating input against the tool's schema or re-applying the approval policy. A client could forge an assistant message with a pre-approved tool-call part and have the server execute a tool with attacker-chosen arguments.
|
|
73
|
+
|
|
74
|
+
The replay path now validates HMAC signature (when `experimental_toolApprovalSecret` is configured), re-validates tool-call input against the tool's input schema, and re-resolves the approval policy before execution.
|
|
75
|
+
|
|
76
|
+
- 69d7128: fix(workflow): reuse the core tool-approval validation in WorkflowAgent
|
|
77
|
+
|
|
78
|
+
`WorkflowAgent.stream` previously reconstructed approved tool calls with a copy of the core collection logic and validated them inline. Because the logic was duplicated, it could drift from the hardened `generateText`/`streamText` implementation. WorkflowAgent now collects approvals via the shared `collectToolApprovals` and re-validates each one through the shared `validateApprovedToolApprovals` (input-schema re-validation, HMAC signature verification when configured, and approval-policy re-resolution) in addition to its existing `needsApproval` guard, so a client-forged approval cannot execute a tool with unvalidated input. The duplicated collector was removed; `collectToolApprovals` and `validateApprovedToolApprovals` are now exported from `ai/internal`.
|
|
79
|
+
|
|
80
|
+
- Updated dependencies [bae5e2b]
|
|
81
|
+
- Updated dependencies [69d7128]
|
|
82
|
+
- ai@7.0.0-canary.170
|
|
83
|
+
- @ai-sdk/provider-utils@5.0.0-canary.47
|
|
84
|
+
|
|
85
|
+
## 1.0.0-canary.86
|
|
86
|
+
|
|
87
|
+
### Patch Changes
|
|
88
|
+
|
|
89
|
+
- Updated dependencies [a5018ab]
|
|
90
|
+
- Updated dependencies [21d3d60]
|
|
91
|
+
- Updated dependencies [426dbbb]
|
|
92
|
+
- Updated dependencies [7fd3360]
|
|
93
|
+
- ai@7.0.0-canary.169
|
|
94
|
+
|
|
95
|
+
## 1.0.0-canary.85
|
|
96
|
+
|
|
97
|
+
### Patch Changes
|
|
98
|
+
|
|
99
|
+
- 1e4b350: Honor `tool.toModelOutput` in `WorkflowAgent`.
|
|
100
|
+
|
|
101
|
+
`WorkflowAgent` now routes successful local, provider-executed, and approved tool results through each tool's optional `toModelOutput` hook, matching `generateText`, `streamText`, and `ToolLoopAgent`. Previously the hook was ignored and results were always serialized as `text` or `json`.
|
|
102
|
+
|
|
103
|
+
Internally exports the shared tool-result model-output helpers from `ai/internal`, and uses the shared `getErrorMessage` behavior for workflow tool error results.
|
|
104
|
+
|
|
105
|
+
- Updated dependencies [1e4b350]
|
|
106
|
+
- ai@7.0.0-canary.168
|
|
107
|
+
|
|
108
|
+
## 1.0.0-canary.84
|
|
109
|
+
|
|
110
|
+
### Patch Changes
|
|
111
|
+
|
|
112
|
+
- Updated dependencies [4757690]
|
|
113
|
+
- Updated dependencies [eeefc3f]
|
|
114
|
+
- Updated dependencies [b79b6a8]
|
|
115
|
+
- ai@7.0.0-canary.167
|
|
116
|
+
|
|
117
|
+
## 1.0.0-canary.83
|
|
118
|
+
|
|
119
|
+
### Patch Changes
|
|
120
|
+
|
|
121
|
+
- 19736ee: feat(ai): rename onStepFinish to onStepEnd
|
|
122
|
+
- Updated dependencies [19736ee]
|
|
123
|
+
- Updated dependencies [d66ae02]
|
|
124
|
+
- Updated dependencies [e4182bd]
|
|
125
|
+
- ai@7.0.0-canary.166
|
|
126
|
+
|
|
127
|
+
## 1.0.0-canary.82
|
|
128
|
+
|
|
129
|
+
### Patch Changes
|
|
130
|
+
|
|
131
|
+
- Updated dependencies [ce769dd]
|
|
132
|
+
- @ai-sdk/provider@4.0.0-canary.18
|
|
133
|
+
- ai@7.0.0-canary.165
|
|
134
|
+
- @ai-sdk/provider-utils@5.0.0-canary.46
|
|
135
|
+
|
|
136
|
+
## 1.0.0-canary.81
|
|
137
|
+
|
|
138
|
+
### Patch Changes
|
|
139
|
+
|
|
140
|
+
- ai@7.0.0-canary.164
|
|
141
|
+
|
|
142
|
+
## 1.0.0-canary.80
|
|
143
|
+
|
|
144
|
+
### Patch Changes
|
|
145
|
+
|
|
146
|
+
- Updated dependencies [ee798eb]
|
|
147
|
+
- Updated dependencies [daf6637]
|
|
148
|
+
- Updated dependencies [c907622]
|
|
149
|
+
- @ai-sdk/provider-utils@5.0.0-canary.45
|
|
150
|
+
- ai@7.0.0-canary.163
|
|
151
|
+
|
|
152
|
+
## 1.0.0-canary.79
|
|
153
|
+
|
|
154
|
+
### Patch Changes
|
|
155
|
+
|
|
156
|
+
- ai@7.0.0-canary.162
|
|
157
|
+
|
|
158
|
+
## 1.0.0-canary.78
|
|
159
|
+
|
|
160
|
+
### Patch Changes
|
|
161
|
+
|
|
162
|
+
- ai@7.0.0-canary.161
|
|
163
|
+
|
|
164
|
+
## 1.0.0-canary.77
|
|
165
|
+
|
|
166
|
+
### Patch Changes
|
|
167
|
+
|
|
168
|
+
- ai@7.0.0-canary.160
|
|
169
|
+
|
|
170
|
+
## 1.0.0-canary.76
|
|
171
|
+
|
|
172
|
+
### Patch Changes
|
|
173
|
+
|
|
174
|
+
- Updated dependencies [b5092f5]
|
|
175
|
+
- ai@7.0.0-canary.159
|
|
176
|
+
|
|
177
|
+
## 1.0.0-canary.75
|
|
178
|
+
|
|
179
|
+
### Patch Changes
|
|
180
|
+
|
|
181
|
+
- Updated dependencies [bcce2dd]
|
|
182
|
+
- ai@7.0.0-canary.158
|
|
183
|
+
|
|
184
|
+
## 1.0.0-canary.74
|
|
185
|
+
|
|
186
|
+
### Patch Changes
|
|
187
|
+
|
|
188
|
+
- ai@7.0.0-canary.157
|
|
189
|
+
|
|
190
|
+
## 1.0.0-canary.73
|
|
191
|
+
|
|
192
|
+
### Patch Changes
|
|
193
|
+
|
|
194
|
+
- Updated dependencies [023550e]
|
|
195
|
+
- Updated dependencies [e92fc45]
|
|
196
|
+
- ai@7.0.0-canary.156
|
|
197
|
+
|
|
198
|
+
## 1.0.0-canary.72
|
|
199
|
+
|
|
200
|
+
### Patch Changes
|
|
201
|
+
|
|
202
|
+
- Updated dependencies [e67d80e]
|
|
203
|
+
- Updated dependencies [6cca112]
|
|
204
|
+
- Updated dependencies [82fc0ab]
|
|
205
|
+
- Updated dependencies [76fd58c]
|
|
206
|
+
- ai@7.0.0-canary.155
|
|
207
|
+
|
|
208
|
+
## 1.0.0-canary.71
|
|
209
|
+
|
|
210
|
+
### Patch Changes
|
|
211
|
+
|
|
212
|
+
- Updated dependencies [594029e]
|
|
213
|
+
- ai@7.0.0-canary.154
|
|
214
|
+
|
|
215
|
+
## 1.0.0-canary.70
|
|
216
|
+
|
|
217
|
+
### Patch Changes
|
|
218
|
+
|
|
219
|
+
- Updated dependencies [6c93e36]
|
|
220
|
+
- Updated dependencies [f617ac2]
|
|
221
|
+
- @ai-sdk/provider-utils@5.0.0-canary.44
|
|
222
|
+
- ai@7.0.0-canary.153
|
|
223
|
+
|
|
224
|
+
## 1.0.0-canary.69
|
|
225
|
+
|
|
226
|
+
### Patch Changes
|
|
227
|
+
|
|
228
|
+
- ai@7.0.0-canary.152
|
|
229
|
+
|
|
230
|
+
## 1.0.0-canary.68
|
|
231
|
+
|
|
232
|
+
### Patch Changes
|
|
233
|
+
|
|
234
|
+
- ai@7.0.0-canary.151
|
|
235
|
+
|
|
236
|
+
## 1.0.0-canary.67
|
|
237
|
+
|
|
238
|
+
### Patch Changes
|
|
239
|
+
|
|
240
|
+
- ai@7.0.0-canary.150
|
|
241
|
+
|
|
242
|
+
## 1.0.0-canary.66
|
|
243
|
+
|
|
244
|
+
### Patch Changes
|
|
245
|
+
|
|
246
|
+
- Updated dependencies [e3d9c0e]
|
|
247
|
+
- ai@7.0.0-canary.149
|
|
248
|
+
|
|
249
|
+
## 1.0.0-canary.65
|
|
250
|
+
|
|
251
|
+
### Patch Changes
|
|
252
|
+
|
|
253
|
+
- Updated dependencies [2852a84]
|
|
254
|
+
- ai@7.0.0-canary.148
|
|
255
|
+
|
|
256
|
+
## 1.0.0-canary.64
|
|
257
|
+
|
|
258
|
+
### Patch Changes
|
|
259
|
+
|
|
260
|
+
- ai@7.0.0-canary.147
|
|
261
|
+
|
|
262
|
+
## 1.0.0-canary.63
|
|
263
|
+
|
|
264
|
+
### Patch Changes
|
|
265
|
+
|
|
266
|
+
- ai@7.0.0-canary.146
|
|
267
|
+
|
|
268
|
+
## 1.0.0-canary.62
|
|
269
|
+
|
|
270
|
+
### Patch Changes
|
|
271
|
+
|
|
272
|
+
- ai@7.0.0-canary.145
|
|
273
|
+
|
|
274
|
+
## 1.0.0-canary.61
|
|
275
|
+
|
|
276
|
+
### Patch Changes
|
|
277
|
+
|
|
278
|
+
- 7fc6bd6: Raise minimum supported Node.js version to 22. Supported versions: 22, 24, and 26.
|
|
279
|
+
- Updated dependencies [7fc6bd6]
|
|
280
|
+
- ai@7.0.0-canary.144
|
|
281
|
+
- @ai-sdk/provider-utils@5.0.0-canary.43
|
|
282
|
+
- @ai-sdk/provider@4.0.0-canary.17
|
|
283
|
+
|
|
284
|
+
## 1.0.0-canary.60
|
|
285
|
+
|
|
286
|
+
### Patch Changes
|
|
287
|
+
|
|
288
|
+
- b567a6c: dependency updates
|
|
289
|
+
- Updated dependencies [a6617c5]
|
|
290
|
+
- @ai-sdk/provider-utils@5.0.0-canary.42
|
|
291
|
+
- ai@7.0.0-canary.143
|
|
292
|
+
|
|
293
|
+
## 1.0.0-canary.59
|
|
294
|
+
|
|
295
|
+
### Patch Changes
|
|
296
|
+
|
|
297
|
+
- Updated dependencies [62d6481]
|
|
298
|
+
- ai@7.0.0-canary.142
|
|
299
|
+
|
|
300
|
+
## 1.0.0-canary.58
|
|
301
|
+
|
|
302
|
+
### Patch Changes
|
|
303
|
+
|
|
304
|
+
- Updated dependencies [e3a0419]
|
|
305
|
+
- ai@7.0.0-canary.141
|
|
306
|
+
|
|
307
|
+
## 1.0.0-canary.57
|
|
308
|
+
|
|
309
|
+
### Patch Changes
|
|
310
|
+
|
|
311
|
+
- ai@7.0.0-canary.140
|
|
312
|
+
|
|
313
|
+
## 1.0.0-canary.56
|
|
314
|
+
|
|
315
|
+
### Patch Changes
|
|
316
|
+
|
|
317
|
+
- 334ae5d: Update step performance metrics with explicit effective, input, output, and total token throughput fields.
|
|
318
|
+
- Updated dependencies [334ae5d]
|
|
319
|
+
- Updated dependencies [28dfa06]
|
|
320
|
+
- Updated dependencies [e93fa91]
|
|
321
|
+
- ai@7.0.0-canary.139
|
|
322
|
+
- @ai-sdk/provider-utils@5.0.0-canary.41
|
|
323
|
+
|
|
324
|
+
## 1.0.0-canary.55
|
|
325
|
+
|
|
326
|
+
### Patch Changes
|
|
327
|
+
|
|
328
|
+
- ai@7.0.0-canary.138
|
|
329
|
+
|
|
330
|
+
## 1.0.0-canary.54
|
|
331
|
+
|
|
332
|
+
### Patch Changes
|
|
333
|
+
|
|
334
|
+
- 98627e5: feat(ai): remove onChunk event from telemetry
|
|
335
|
+
- Updated dependencies [98627e5]
|
|
336
|
+
- Updated dependencies [476e1ca]
|
|
337
|
+
- ai@7.0.0-canary.137
|
|
338
|
+
|
|
339
|
+
## 1.0.0-canary.53
|
|
340
|
+
|
|
341
|
+
### Patch Changes
|
|
342
|
+
|
|
343
|
+
- Updated dependencies [a7de9c9]
|
|
344
|
+
- @ai-sdk/provider-utils@5.0.0-canary.40
|
|
345
|
+
- ai@7.0.0-canary.136
|
|
346
|
+
|
|
347
|
+
## 1.0.0-canary.52
|
|
348
|
+
|
|
349
|
+
### Patch Changes
|
|
350
|
+
|
|
351
|
+
- Updated dependencies [105f95b]
|
|
352
|
+
- @ai-sdk/provider-utils@5.0.0-canary.39
|
|
353
|
+
- ai@7.0.0-canary.135
|
|
354
|
+
|
|
355
|
+
## 1.0.0-canary.51
|
|
356
|
+
|
|
357
|
+
### Patch Changes
|
|
358
|
+
|
|
359
|
+
- Updated dependencies [ed74dae]
|
|
360
|
+
- Updated dependencies [f4cc8eb]
|
|
361
|
+
- Updated dependencies [e80ada0]
|
|
362
|
+
- Updated dependencies [1dca341]
|
|
363
|
+
- Updated dependencies [2605e5f]
|
|
364
|
+
- ai@7.0.0-canary.134
|
|
365
|
+
|
|
366
|
+
## 1.0.0-canary.50
|
|
367
|
+
|
|
368
|
+
### Patch Changes
|
|
369
|
+
|
|
370
|
+
- Updated dependencies [38ca8dc]
|
|
371
|
+
- Updated dependencies [6d76710]
|
|
372
|
+
- ai@7.0.0-canary.133
|
|
373
|
+
|
|
374
|
+
## 1.0.0-canary.49
|
|
375
|
+
|
|
376
|
+
### Patch Changes
|
|
377
|
+
|
|
378
|
+
- 81e68da: Fix `stepNumber` on telemetry events emitted by `WorkflowAgent.stream` so per-step telemetry integrations (e.g. `@ai-sdk/devtools`) correctly key state per step.
|
|
379
|
+
- Updated dependencies [eaf849f]
|
|
380
|
+
- Updated dependencies [8565dcb]
|
|
381
|
+
- ai@7.0.0-canary.132
|
|
382
|
+
|
|
383
|
+
## 1.0.0-canary.48
|
|
384
|
+
|
|
385
|
+
### Patch Changes
|
|
386
|
+
|
|
387
|
+
- c3a6524: Add a `stepNumber` option to `doStreamStep` so callers can create `StepResult` objects with the correct step number.
|
|
388
|
+
|
|
389
|
+
## 1.0.0-canary.47
|
|
390
|
+
|
|
391
|
+
### Patch Changes
|
|
392
|
+
|
|
393
|
+
- ca446f8: feat: flexible tool descriptions
|
|
394
|
+
- Updated dependencies [b67525f]
|
|
395
|
+
- Updated dependencies [ca446f8]
|
|
396
|
+
- Updated dependencies [bcacd48]
|
|
397
|
+
- ai@7.0.0-canary.131
|
|
398
|
+
- @ai-sdk/provider-utils@5.0.0-canary.38
|
|
399
|
+
|
|
400
|
+
## 1.0.0-canary.46
|
|
401
|
+
|
|
402
|
+
### Patch Changes
|
|
403
|
+
|
|
404
|
+
- ai@7.0.0-canary.130
|
|
405
|
+
|
|
406
|
+
## 1.0.0-canary.45
|
|
407
|
+
|
|
408
|
+
### Patch Changes
|
|
409
|
+
|
|
410
|
+
- Updated dependencies [d1b3786]
|
|
411
|
+
- ai@7.0.0-canary.129
|
|
412
|
+
|
|
413
|
+
## 1.0.0-canary.44
|
|
414
|
+
|
|
415
|
+
### Patch Changes
|
|
416
|
+
|
|
417
|
+
- Updated dependencies [d848405]
|
|
418
|
+
- @ai-sdk/provider-utils@5.0.0-canary.37
|
|
419
|
+
- ai@7.0.0-canary.128
|
|
420
|
+
|
|
421
|
+
## 1.0.0-canary.43
|
|
422
|
+
|
|
423
|
+
### Patch Changes
|
|
424
|
+
|
|
425
|
+
- d775a57: feat: introduce Instructions type
|
|
426
|
+
- 39dad72: feat(workflow): add stable telemetry integration support to `WorkflowAgent` and remove legacy telemetry options.
|
|
427
|
+
- Updated dependencies [e95e38d]
|
|
428
|
+
- Updated dependencies [016e877]
|
|
429
|
+
- Updated dependencies [ca99fea]
|
|
430
|
+
- Updated dependencies [ca39020]
|
|
431
|
+
- Updated dependencies [d775a57]
|
|
432
|
+
- Updated dependencies [538c12b]
|
|
433
|
+
- ai@7.0.0-canary.127
|
|
434
|
+
- @ai-sdk/provider-utils@5.0.0-canary.36
|
|
435
|
+
|
|
436
|
+
## 1.0.0-canary.42
|
|
437
|
+
|
|
438
|
+
### Patch Changes
|
|
439
|
+
|
|
440
|
+
- Updated dependencies [f634bac]
|
|
441
|
+
- @ai-sdk/provider-utils@5.0.0-canary.35
|
|
442
|
+
- ai@7.0.0-canary.126
|
|
443
|
+
|
|
444
|
+
## 1.0.0-canary.41
|
|
445
|
+
|
|
446
|
+
### Patch Changes
|
|
447
|
+
|
|
448
|
+
- 1d56275: feat(workflow): add `runtimeContext` and `toolsContext` to `WorkflowAgent`.
|
|
449
|
+
|
|
450
|
+
`runtimeContext` is shared agent state that flows through `prepareCall`, `prepareStep`, step results, and `onFinish`. `toolsContext` is a per-tool map; each tool receives its own validated entry as `context`, validated against `tool.contextSchema` when defined. The previous `experimental_context` option (and corresponding fields on related callbacks and option types) has been removed — use `runtimeContext` for shared state and `toolsContext` for per-tool values. Context values in `WorkflowAgent` should be serializable because they can cross workflow and step boundaries.
|
|
451
|
+
|
|
452
|
+
## 1.0.0-canary.40
|
|
453
|
+
|
|
454
|
+
### Patch Changes
|
|
455
|
+
|
|
456
|
+
- Updated dependencies [fd4f578]
|
|
457
|
+
- Updated dependencies [31f69de]
|
|
458
|
+
- Updated dependencies [7c71ac6]
|
|
459
|
+
- Updated dependencies [c0c8ca2]
|
|
460
|
+
- Updated dependencies [5faf71c]
|
|
461
|
+
- Updated dependencies [69254e0]
|
|
462
|
+
- Updated dependencies [3015fc3]
|
|
463
|
+
- Updated dependencies [eee1166]
|
|
464
|
+
- Updated dependencies [7dbf992]
|
|
465
|
+
- ai@7.0.0-canary.125
|
|
466
|
+
- @ai-sdk/provider-utils@5.0.0-canary.34
|
|
467
|
+
|
|
468
|
+
## 1.0.0-canary.39
|
|
469
|
+
|
|
470
|
+
### Patch Changes
|
|
471
|
+
|
|
472
|
+
- Updated dependencies [69aeb0e]
|
|
473
|
+
- Updated dependencies [48e92f3]
|
|
474
|
+
- ai@7.0.0-canary.124
|
|
475
|
+
|
|
476
|
+
## 1.0.0-canary.38
|
|
477
|
+
|
|
478
|
+
### Patch Changes
|
|
479
|
+
|
|
480
|
+
- Updated dependencies [7392266]
|
|
481
|
+
- Updated dependencies [4bb4dbc]
|
|
482
|
+
- ai@7.0.0-canary.123
|
|
483
|
+
|
|
484
|
+
## 1.0.0-canary.37
|
|
485
|
+
|
|
486
|
+
### Patch Changes
|
|
487
|
+
|
|
488
|
+
- Updated dependencies [79b2468]
|
|
489
|
+
- Updated dependencies [c22750c]
|
|
490
|
+
- ai@7.0.0-canary.122
|
|
491
|
+
|
|
492
|
+
## 1.0.0-canary.36
|
|
493
|
+
|
|
494
|
+
### Patch Changes
|
|
495
|
+
|
|
496
|
+
- Updated dependencies [2427d88]
|
|
497
|
+
- Updated dependencies [5588abd]
|
|
498
|
+
- Updated dependencies [6dd6b83]
|
|
499
|
+
- @ai-sdk/provider-utils@5.0.0-canary.33
|
|
500
|
+
- ai@7.0.0-canary.121
|
|
501
|
+
|
|
502
|
+
## 1.0.0-canary.35
|
|
503
|
+
|
|
504
|
+
### Patch Changes
|
|
505
|
+
|
|
506
|
+
- Updated dependencies [5463d0d]
|
|
507
|
+
- @ai-sdk/provider-utils@5.0.0-canary.32
|
|
508
|
+
- @ai-sdk/provider@4.0.0-canary.16
|
|
509
|
+
- ai@7.0.0-canary.120
|
|
510
|
+
|
|
511
|
+
## 1.0.0-canary.34
|
|
512
|
+
|
|
513
|
+
### Patch Changes
|
|
514
|
+
|
|
515
|
+
- ai@7.0.0-canary.119
|
|
516
|
+
|
|
517
|
+
## 1.0.0-canary.33
|
|
518
|
+
|
|
519
|
+
### Patch Changes
|
|
520
|
+
|
|
521
|
+
- Updated dependencies [47e65d6]
|
|
522
|
+
- ai@7.0.0-canary.118
|
|
523
|
+
|
|
524
|
+
## 1.0.0-canary.32
|
|
525
|
+
|
|
526
|
+
### Patch Changes
|
|
527
|
+
|
|
528
|
+
- 0c4c275: trigger initial canary release
|
|
529
|
+
- Updated dependencies [0c4c275]
|
|
530
|
+
- @ai-sdk/provider-utils@5.0.0-canary.31
|
|
531
|
+
- @ai-sdk/provider@4.0.0-canary.15
|
|
532
|
+
- ai@7.0.0-canary.117
|
|
533
|
+
|
|
534
|
+
## 1.0.0-beta.31
|
|
535
|
+
|
|
536
|
+
### Patch Changes
|
|
537
|
+
|
|
538
|
+
- ai@7.0.0-beta.116
|
|
539
|
+
|
|
540
|
+
## 1.0.0-beta.30
|
|
541
|
+
|
|
542
|
+
### Patch Changes
|
|
543
|
+
|
|
544
|
+
- Updated dependencies [08d2129]
|
|
545
|
+
- Updated dependencies [202f107]
|
|
546
|
+
- @ai-sdk/provider-utils@5.0.0-beta.30
|
|
547
|
+
- ai@7.0.0-beta.115
|
|
548
|
+
|
|
549
|
+
## 1.0.0-beta.29
|
|
550
|
+
|
|
551
|
+
### Patch Changes
|
|
552
|
+
|
|
553
|
+
- 258c093: chore: ensure consistent import handling and avoid import duplicates or cycles
|
|
554
|
+
- Updated dependencies [43a6750]
|
|
555
|
+
- Updated dependencies [81caa5d]
|
|
556
|
+
- Updated dependencies [1f7db50]
|
|
557
|
+
- Updated dependencies [9bd6512]
|
|
558
|
+
- Updated dependencies [258c093]
|
|
559
|
+
- Updated dependencies [b6783da]
|
|
560
|
+
- Updated dependencies [6147cdf]
|
|
561
|
+
- ai@7.0.0-beta.114
|
|
562
|
+
- @ai-sdk/provider-utils@5.0.0-beta.29
|
|
563
|
+
- @ai-sdk/provider@4.0.0-beta.14
|
|
564
|
+
|
|
565
|
+
## 1.0.0-beta.28
|
|
566
|
+
|
|
567
|
+
### Patch Changes
|
|
568
|
+
|
|
569
|
+
- 9f0e36c: trigger release for all packages after provenance setup
|
|
570
|
+
- Updated dependencies [9f0e36c]
|
|
571
|
+
- ai@7.0.0-beta.113
|
|
572
|
+
- @ai-sdk/provider@4.0.0-beta.13
|
|
573
|
+
- @ai-sdk/provider-utils@5.0.0-beta.28
|
|
574
|
+
|
|
575
|
+
## 1.0.0-beta.27
|
|
576
|
+
|
|
577
|
+
### Patch Changes
|
|
578
|
+
|
|
579
|
+
- 29d8cf4: feat(ai): rename the core-event types
|
|
580
|
+
- a0ca584: fix (workflow): preserve invalid tool calls as errors instead of emitting synthetic success results
|
|
581
|
+
- Updated dependencies [785fe16]
|
|
582
|
+
- Updated dependencies [5f3749c]
|
|
583
|
+
- Updated dependencies [0a51f7d]
|
|
584
|
+
- Updated dependencies [71d3022]
|
|
585
|
+
- Updated dependencies [67df0a0]
|
|
586
|
+
- Updated dependencies [4181cfe]
|
|
587
|
+
- Updated dependencies [51ce232]
|
|
588
|
+
- Updated dependencies [cf93359]
|
|
589
|
+
- Updated dependencies [befb78c]
|
|
590
|
+
- Updated dependencies [29d8cf4]
|
|
591
|
+
- Updated dependencies [0458559]
|
|
592
|
+
- Updated dependencies [58a2ad7]
|
|
593
|
+
- Updated dependencies [5852c0a]
|
|
594
|
+
- Updated dependencies [37d69b2]
|
|
595
|
+
- Updated dependencies [1043274]
|
|
596
|
+
- Updated dependencies [7f59f04]
|
|
597
|
+
- Updated dependencies [7677c1e]
|
|
598
|
+
- Updated dependencies [116c89f]
|
|
599
|
+
- Updated dependencies [f58f9bc]
|
|
600
|
+
- Updated dependencies [e1bfb9c]
|
|
601
|
+
- Updated dependencies [e87d71b]
|
|
602
|
+
- Updated dependencies [9d486aa]
|
|
603
|
+
- Updated dependencies [9b0bc8a]
|
|
604
|
+
- Updated dependencies [fc92055]
|
|
605
|
+
- Updated dependencies [4e095b0]
|
|
606
|
+
- @ai-sdk/provider-utils@5.0.0-beta.27
|
|
607
|
+
- ai@7.0.0-beta.112
|
|
608
|
+
|
|
609
|
+
## 1.0.0-beta.26
|
|
610
|
+
|
|
611
|
+
### Major Changes
|
|
612
|
+
|
|
613
|
+
- 1949571: feat(ai): make experimental_telemetry stable
|
|
614
|
+
|
|
615
|
+
### Patch Changes
|
|
616
|
+
|
|
617
|
+
- f32c750: refactoring(ai): simplify mergeAbortSignals
|
|
618
|
+
- Updated dependencies [f319fde]
|
|
619
|
+
- Updated dependencies [1949571]
|
|
620
|
+
- Updated dependencies [511902c]
|
|
621
|
+
- Updated dependencies [6542d93]
|
|
622
|
+
- Updated dependencies [2e98477]
|
|
623
|
+
- Updated dependencies [876fd3e]
|
|
624
|
+
- Updated dependencies [f32c750]
|
|
625
|
+
- ai@7.0.0-beta.111
|
|
626
|
+
- @ai-sdk/provider-utils@5.0.0-beta.26
|
|
627
|
+
|
|
628
|
+
## 1.0.0-beta.25
|
|
629
|
+
|
|
630
|
+
### Patch Changes
|
|
631
|
+
|
|
632
|
+
- Updated dependencies [72cb801]
|
|
633
|
+
- ai@7.0.0-beta.110
|
|
634
|
+
|
|
635
|
+
## 1.0.0-beta.24
|
|
636
|
+
|
|
637
|
+
### Patch Changes
|
|
638
|
+
|
|
639
|
+
- eea8d98: refactoring: rename tool execution events
|
|
640
|
+
- Updated dependencies [ec98264]
|
|
641
|
+
- Updated dependencies [eea8d98]
|
|
642
|
+
- Updated dependencies [75ef93e]
|
|
643
|
+
- ai@7.0.0-beta.109
|
|
644
|
+
- @ai-sdk/provider-utils@5.0.0-beta.25
|
|
645
|
+
|
|
646
|
+
## 1.0.0-beta.23
|
|
647
|
+
|
|
648
|
+
### Patch Changes
|
|
649
|
+
|
|
650
|
+
- Updated dependencies [f807e45]
|
|
651
|
+
- @ai-sdk/provider-utils@5.0.0-beta.24
|
|
652
|
+
- ai@7.0.0-beta.108
|
|
653
|
+
|
|
654
|
+
## 1.0.0-beta.22
|
|
655
|
+
|
|
656
|
+
### Patch Changes
|
|
657
|
+
|
|
658
|
+
- Updated dependencies [350ea38]
|
|
659
|
+
- @ai-sdk/provider-utils@5.0.0-beta.23
|
|
660
|
+
- ai@7.0.0-beta.107
|
|
661
|
+
|
|
662
|
+
## 1.0.0-beta.21
|
|
663
|
+
|
|
664
|
+
### Patch Changes
|
|
665
|
+
|
|
666
|
+
- fbea042: refactor: replace duplicate `filterTools`/`filterToolSet` with shared `experimental_filterActiveTools` from `ai`
|
|
667
|
+
|
|
668
|
+
## 1.0.0-beta.20
|
|
669
|
+
|
|
670
|
+
### Patch Changes
|
|
671
|
+
|
|
672
|
+
- ai@7.0.0-beta.106
|
|
673
|
+
|
|
674
|
+
## 1.0.0-beta.19
|
|
675
|
+
|
|
676
|
+
### Patch Changes
|
|
677
|
+
|
|
678
|
+
- Updated dependencies [33d099c]
|
|
679
|
+
- ai@7.0.0-beta.105
|
|
680
|
+
|
|
681
|
+
## 1.0.0-beta.18
|
|
682
|
+
|
|
683
|
+
### Patch Changes
|
|
684
|
+
|
|
685
|
+
- eba685c: Remove `maxSteps` option from `WorkflowAgent`. Use `stopWhen` with stop conditions like `isStepCount()` instead.
|
|
686
|
+
- Updated dependencies [2a74d43]
|
|
687
|
+
- ai@7.0.0-beta.104
|
|
688
|
+
|
|
689
|
+
## 1.0.0-beta.17
|
|
690
|
+
|
|
691
|
+
### Patch Changes
|
|
692
|
+
|
|
693
|
+
- 382d53b: refactoring: rename context to runtimeContext
|
|
694
|
+
- c3d4019: chore(ai): rename 'TelemetrySettings' to 'TelemetryOptions'
|
|
695
|
+
- 083947b: feat(ai): separate toolsContext from context
|
|
696
|
+
- Updated dependencies [382d53b]
|
|
697
|
+
- Updated dependencies [7bf7d7f]
|
|
698
|
+
- Updated dependencies [c3d4019]
|
|
699
|
+
- Updated dependencies [083947b]
|
|
700
|
+
- ai@7.0.0-beta.103
|
|
701
|
+
- @ai-sdk/provider-utils@5.0.0-beta.22
|
|
702
|
+
|
|
703
|
+
## 1.0.0-beta.16
|
|
704
|
+
|
|
705
|
+
### Patch Changes
|
|
706
|
+
|
|
707
|
+
- ai@7.0.0-beta.102
|
|
708
|
+
|
|
709
|
+
## 1.0.0-beta.15
|
|
710
|
+
|
|
711
|
+
### Patch Changes
|
|
712
|
+
|
|
713
|
+
- Updated dependencies [4873966]
|
|
714
|
+
- ai@7.0.0-beta.101
|
|
715
|
+
|
|
716
|
+
## 1.0.0-beta.14
|
|
717
|
+
|
|
718
|
+
### Patch Changes
|
|
719
|
+
|
|
720
|
+
- Updated dependencies [add1126]
|
|
721
|
+
- @ai-sdk/provider-utils@5.0.0-beta.21
|
|
722
|
+
- ai@7.0.0-beta.100
|
|
723
|
+
|
|
724
|
+
## 1.0.0-beta.13
|
|
725
|
+
|
|
726
|
+
### Patch Changes
|
|
727
|
+
|
|
728
|
+
- Updated dependencies [2a9c144]
|
|
729
|
+
- ai@7.0.0-beta.99
|
|
730
|
+
|
|
731
|
+
## 1.0.0-beta.12
|
|
732
|
+
|
|
733
|
+
### Patch Changes
|
|
734
|
+
|
|
735
|
+
- ai@7.0.0-beta.98
|
|
736
|
+
|
|
737
|
+
## 1.0.0-beta.11
|
|
738
|
+
|
|
739
|
+
### Patch Changes
|
|
740
|
+
|
|
741
|
+
- Updated dependencies [208d045]
|
|
742
|
+
- ai@7.0.0-beta.97
|
|
743
|
+
|
|
744
|
+
## 1.0.0-beta.10
|
|
745
|
+
|
|
746
|
+
### Patch Changes
|
|
747
|
+
|
|
748
|
+
- ai@7.0.0-beta.96
|
|
749
|
+
|
|
3
750
|
## 1.0.0-beta.9
|
|
4
751
|
|
|
5
752
|
### Patch Changes
|