ai 6.0.0-beta.110 → 6.0.0-beta.112

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/dist/index.mjs CHANGED
@@ -785,7 +785,7 @@ import {
785
785
  } from "@ai-sdk/provider-utils";
786
786
 
787
787
  // src/version.ts
788
- var VERSION = true ? "6.0.0-beta.110" : "0.0.0-test";
788
+ var VERSION = true ? "6.0.0-beta.112" : "0.0.0-test";
789
789
 
790
790
  // src/util/download/download.ts
791
791
  var download = async ({ url }) => {
@@ -6680,11 +6680,13 @@ var ToolLoopAgent = class {
6680
6680
  */
6681
6681
  async stream({
6682
6682
  abortSignal,
6683
+ experimental_transform,
6683
6684
  ...options
6684
6685
  }) {
6685
6686
  return streamText({
6686
6687
  ...await this.prepareCall(options),
6687
- abortSignal
6688
+ abortSignal,
6689
+ experimental_transform
6688
6690
  });
6689
6691
  }
6690
6692
  };
@@ -7434,6 +7436,7 @@ async function createAgentUIStream({
7434
7436
  agent,
7435
7437
  messages,
7436
7438
  options,
7439
+ experimental_transform,
7437
7440
  ...uiMessageStreamOptions
7438
7441
  }) {
7439
7442
  const validatedMessages = await validateUIMessages({
@@ -7445,7 +7448,8 @@ async function createAgentUIStream({
7445
7448
  });
7446
7449
  const result = await agent.stream({
7447
7450
  prompt: modelMessages,
7448
- options
7451
+ options,
7452
+ experimental_transform
7449
7453
  });
7450
7454
  return result.toUIMessageStream(uiMessageStreamOptions);
7451
7455
  }