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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # ai
2
2
 
3
+ ## 6.0.0-beta.90
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [af3780b]
8
+ - @ai-sdk/provider@3.0.0-beta.14
9
+ - @ai-sdk/gateway@2.0.0-beta.48
10
+ - @ai-sdk/provider-utils@4.0.0-beta.29
11
+
3
12
  ## 6.0.0-beta.89
4
13
 
5
14
  ### Patch Changes
package/dist/index.js CHANGED
@@ -858,7 +858,7 @@ function detectMediaType({
858
858
  var import_provider_utils2 = require("@ai-sdk/provider-utils");
859
859
 
860
860
  // src/version.ts
861
- var VERSION = true ? "6.0.0-beta.89" : "0.0.0-test";
861
+ var VERSION = true ? "6.0.0-beta.90" : "0.0.0-test";
862
862
 
863
863
  // src/util/download/download.ts
864
864
  var download = async ({ url }) => {
@@ -5162,7 +5162,7 @@ function runToolsTransformation({
5162
5162
  toolCallId: chunk.toolCallId,
5163
5163
  toolName,
5164
5164
  input: toolInputs.get(chunk.toolCallId),
5165
- providerExecuted: chunk.providerExecuted,
5165
+ providerExecuted: true,
5166
5166
  error: chunk.result,
5167
5167
  dynamic: chunk.dynamic
5168
5168
  });
@@ -5173,7 +5173,7 @@ function runToolsTransformation({
5173
5173
  toolName,
5174
5174
  input: toolInputs.get(chunk.toolCallId),
5175
5175
  output: chunk.result,
5176
- providerExecuted: chunk.providerExecuted,
5176
+ providerExecuted: true,
5177
5177
  dynamic: chunk.dynamic
5178
5178
  });
5179
5179
  }