@ai-sdk/amazon-bedrock 3.0.35 → 3.0.37

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
@@ -8,7 +8,7 @@ import {
8
8
  } from "@ai-sdk/provider-utils";
9
9
 
10
10
  // src/version.ts
11
- var VERSION = true ? "3.0.35" : "0.0.0-test";
11
+ var VERSION = true ? "3.0.37" : "0.0.0-test";
12
12
 
13
13
  // src/bedrock-provider.ts
14
14
  import { anthropicTools as anthropicTools2 } from "@ai-sdk/anthropic/internal";
@@ -815,7 +815,11 @@ var BedrockChatLanguageModel = class {
815
815
  }
816
816
  }
817
817
  const { system, messages } = await convertToBedrockChatMessages(filteredPrompt);
818
- const { reasoningConfig: _, ...filteredBedrockOptions } = (providerOptions == null ? void 0 : providerOptions.bedrock) || {};
818
+ const {
819
+ reasoningConfig: _,
820
+ additionalModelRequestFields: __,
821
+ ...filteredBedrockOptions
822
+ } = (providerOptions == null ? void 0 : providerOptions.bedrock) || {};
819
823
  return {
820
824
  command: {
821
825
  system,