@mastra/ai-sdk 1.0.0-beta.15 → 1.0.0-beta.16
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 +9 -0
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/transformers.d.ts.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @mastra/ai-sdk
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.16
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed start chunk being dropped when using toAISdkStream with partial options. The start message with messageId is now correctly emitted according to the AI SDK stream protocol. ([#12069](https://github.com/mastra-ai/mastra/pull/12069))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`ed3e3dd`](https://github.com/mastra-ai/mastra/commit/ed3e3ddec69d564fe2b125e083437f76331f1283), [`6833c69`](https://github.com/mastra-ai/mastra/commit/6833c69607418d257750bbcdd84638993d343539), [`47b1c16`](https://github.com/mastra-ai/mastra/commit/47b1c16a01c7ffb6765fe1e499b49092f8b7eba3), [`3a76a80`](https://github.com/mastra-ai/mastra/commit/3a76a80284cb71a0faa975abb3d4b2a9631e60cd), [`8538a0d`](https://github.com/mastra-ai/mastra/commit/8538a0d232619bf55dad7ddc2a8b0ca77c679a87), [`9312dcd`](https://github.com/mastra-ai/mastra/commit/9312dcd1c6f5b321929e7d382e763d95fdc030f5)]:
|
|
10
|
+
- @mastra/core@1.0.0-beta.25
|
|
11
|
+
|
|
3
12
|
## 1.0.0-beta.15
|
|
4
13
|
|
|
5
14
|
### Major Changes
|
package/dist/index.cjs
CHANGED
|
@@ -3401,8 +3401,8 @@ function AgentNetworkToAISDKTransformer() {
|
|
|
3401
3401
|
}
|
|
3402
3402
|
function AgentStreamToAISDKTransformer({
|
|
3403
3403
|
lastMessageId,
|
|
3404
|
-
sendStart,
|
|
3405
|
-
sendFinish,
|
|
3404
|
+
sendStart = true,
|
|
3405
|
+
sendFinish = true,
|
|
3406
3406
|
sendReasoning,
|
|
3407
3407
|
sendSources,
|
|
3408
3408
|
messageMetadata,
|