ai 6.0.0-beta.132 → 6.0.0-beta.134

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
@@ -813,7 +813,7 @@ import {
813
813
  } from "@ai-sdk/provider-utils";
814
814
 
815
815
  // src/version.ts
816
- var VERSION = true ? "6.0.0-beta.132" : "0.0.0-test";
816
+ var VERSION = true ? "6.0.0-beta.134" : "0.0.0-test";
817
817
 
818
818
  // src/util/download/download.ts
819
819
  var download = async ({ url }) => {
@@ -1370,6 +1370,7 @@ async function prepareToolsAndToolChoice({
1370
1370
  name: name15,
1371
1371
  description: tool2.description,
1372
1372
  inputSchema: await asSchema(tool2.inputSchema).jsonSchema,
1373
+ ...tool2.inputExamples != null ? { inputExamples: tool2.inputExamples } : {},
1373
1374
  providerOptions: tool2.providerOptions,
1374
1375
  ...tool2.strict != null ? { strict: tool2.strict } : {}
1375
1376
  });