ai 6.0.0-beta.89 → 6.0.0-beta.90

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
@@ -757,7 +757,7 @@ import {
757
757
  } from "@ai-sdk/provider-utils";
758
758
 
759
759
  // src/version.ts
760
- var VERSION = true ? "6.0.0-beta.89" : "0.0.0-test";
760
+ var VERSION = true ? "6.0.0-beta.90" : "0.0.0-test";
761
761
 
762
762
  // src/util/download/download.ts
763
763
  var download = async ({ url }) => {
@@ -5088,7 +5088,7 @@ function runToolsTransformation({
5088
5088
  toolCallId: chunk.toolCallId,
5089
5089
  toolName,
5090
5090
  input: toolInputs.get(chunk.toolCallId),
5091
- providerExecuted: chunk.providerExecuted,
5091
+ providerExecuted: true,
5092
5092
  error: chunk.result,
5093
5093
  dynamic: chunk.dynamic
5094
5094
  });
@@ -5099,7 +5099,7 @@ function runToolsTransformation({
5099
5099
  toolName,
5100
5100
  input: toolInputs.get(chunk.toolCallId),
5101
5101
  output: chunk.result,
5102
- providerExecuted: chunk.providerExecuted,
5102
+ providerExecuted: true,
5103
5103
  dynamic: chunk.dynamic
5104
5104
  });
5105
5105
  }