@ai-sdk/amazon-bedrock 4.0.0-beta.78 → 4.0.0-beta.79
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 +10 -0
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -230,7 +230,8 @@ async function prepareTools({
|
|
|
230
230
|
betas: anthropicBetas
|
|
231
231
|
} = await prepareAnthropicTools({
|
|
232
232
|
tools: ProviderTools,
|
|
233
|
-
toolChoice
|
|
233
|
+
toolChoice,
|
|
234
|
+
supportsStructuredOutput: false
|
|
234
235
|
});
|
|
235
236
|
toolWarnings.push(...anthropicToolWarnings);
|
|
236
237
|
anthropicBetas.forEach((beta) => betas.add(beta));
|
|
@@ -1550,7 +1551,7 @@ import {
|
|
|
1550
1551
|
import { AwsV4Signer } from "aws4fetch";
|
|
1551
1552
|
|
|
1552
1553
|
// src/version.ts
|
|
1553
|
-
var VERSION = true ? "4.0.0-beta.
|
|
1554
|
+
var VERSION = true ? "4.0.0-beta.79" : "0.0.0-test";
|
|
1554
1555
|
|
|
1555
1556
|
// src/bedrock-sigv4-fetch.ts
|
|
1556
1557
|
function createSigV4FetchFunction(getCredentials, fetch = globalThis.fetch) {
|