ai 5.0.0-beta.20 → 5.0.0-beta.22
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 +24 -0
- package/dist/bin/ai.js +292 -268
- package/dist/bin/ai.js.map +1 -1
- package/dist/bin/ai.min.js +35 -49
- package/dist/index.d.mts +57 -17
- package/dist/index.d.ts +57 -17
- package/dist/index.js +189 -122
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +187 -121
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js.map +1 -1
- package/dist/internal/index.mjs.map +1 -1
- package/dist/test/index.d.mts +17 -2
- package/dist/test/index.d.ts +17 -2
- package/dist/test/index.js +51 -0
- package/dist/test/index.js.map +1 -1
- package/dist/test/index.mjs +52 -0
- package/dist/test/index.mjs.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,29 @@
|
|
1
1
|
# ai
|
2
2
|
|
3
|
+
## 5.0.0-beta.22
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- de2d2ab: feat(ai): add provider and provider registry middleware functionality
|
8
|
+
- 6c42e56: feat (ai): validate ui stream data chunks
|
9
|
+
- c93a8bc: chore(ai): export AsyncIterableStream type from async-iterable-stream module
|
10
|
+
- 20398f2: feat: ai sdk cli documentation + adjusted default model
|
11
|
+
- 86293e5: fix (ai): use correct generateMessageId in streamText toUIMessageStream
|
12
|
+
- 205077b: fix: improve Zod compatibility
|
13
|
+
- Updated dependencies [205077b]
|
14
|
+
- @ai-sdk/provider-utils@3.0.0-beta.4
|
15
|
+
- @ai-sdk/gateway@1.0.0-beta.9
|
16
|
+
|
17
|
+
## 5.0.0-beta.21
|
18
|
+
|
19
|
+
### Patch Changes
|
20
|
+
|
21
|
+
- 38ae5cc: feat (ai): export InferUIMessageChunk type
|
22
|
+
- faea29f: fix (provider/openai): multi-step reasoning with text
|
23
|
+
- 90ac328: fix (ui): tool part metadata support in ui messages
|
24
|
+
- 4a1e0c8: fix(ai-cli): fix bundling and improve authentication error handling
|
25
|
+
- 30ac566: fix (ui): text message metadata support in ui messages
|
26
|
+
|
3
27
|
## 5.0.0-beta.20
|
4
28
|
|
5
29
|
### Patch Changes
|