@ai-sdk/amazon-bedrock 3.0.32 → 3.0.33
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 +7 -0
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
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.
|
|
11
|
+
var VERSION = true ? "3.0.33" : "0.0.0-test";
|
|
12
12
|
|
|
13
13
|
// src/bedrock-provider.ts
|
|
14
14
|
import { anthropicTools as anthropicTools2 } from "@ai-sdk/anthropic/internal";
|
|
@@ -176,7 +176,7 @@ import {
|
|
|
176
176
|
anthropicTools,
|
|
177
177
|
prepareTools as prepareAnthropicTools
|
|
178
178
|
} from "@ai-sdk/anthropic/internal";
|
|
179
|
-
function prepareTools({
|
|
179
|
+
async function prepareTools({
|
|
180
180
|
tools,
|
|
181
181
|
toolChoice,
|
|
182
182
|
modelId
|
|
@@ -230,7 +230,7 @@ function prepareTools({
|
|
|
230
230
|
toolChoice: preparedAnthropicToolChoice,
|
|
231
231
|
toolWarnings: anthropicToolWarnings,
|
|
232
232
|
betas: anthropicBetas
|
|
233
|
-
} = prepareAnthropicTools({
|
|
233
|
+
} = await prepareAnthropicTools({
|
|
234
234
|
tools: providerDefinedTools,
|
|
235
235
|
toolChoice
|
|
236
236
|
});
|
|
@@ -729,7 +729,7 @@ var BedrockChatLanguageModel = class {
|
|
|
729
729
|
description: "Respond with a JSON object.",
|
|
730
730
|
inputSchema: responseFormat.schema
|
|
731
731
|
} : void 0;
|
|
732
|
-
const { toolConfig, additionalTools, toolWarnings, betas } = prepareTools({
|
|
732
|
+
const { toolConfig, additionalTools, toolWarnings, betas } = await prepareTools({
|
|
733
733
|
tools: jsonResponseTool ? [jsonResponseTool, ...tools != null ? tools : []] : tools,
|
|
734
734
|
toolChoice: jsonResponseTool != null ? { type: "tool", toolName: jsonResponseTool.name } : toolChoice,
|
|
735
735
|
modelId: this.modelId
|