@ai-sdk/google 3.0.0-beta.59 → 3.0.0-beta.61

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
@@ -7,7 +7,7 @@ import {
7
7
  } from "@ai-sdk/provider-utils";
8
8
 
9
9
  // src/version.ts
10
- var VERSION = true ? "3.0.0-beta.59" : "0.0.0-test";
10
+ var VERSION = true ? "3.0.0-beta.61" : "0.0.0-test";
11
11
 
12
12
  // src/google-generative-ai-embedding-model.ts
13
13
  import {
@@ -1490,7 +1490,6 @@ import { createProviderDefinedToolFactoryWithOutputSchema } from "@ai-sdk/provid
1490
1490
  import { z as z6 } from "zod/v4";
1491
1491
  var codeExecution = createProviderDefinedToolFactoryWithOutputSchema({
1492
1492
  id: "google.code_execution",
1493
- name: "code_execution",
1494
1493
  inputSchema: z6.object({
1495
1494
  language: z6.string().describe("The programming language of the code."),
1496
1495
  code: z6.string().describe("The code to be executed.")
@@ -1529,7 +1528,6 @@ var fileSearchArgsSchema = lazySchema6(
1529
1528
  );
1530
1529
  var fileSearch = createProviderDefinedToolFactory({
1531
1530
  id: "google.file_search",
1532
- name: "file_search",
1533
1531
  inputSchema: fileSearchArgsSchema
1534
1532
  });
1535
1533
 
@@ -1542,7 +1540,6 @@ import {
1542
1540
  import { z as z8 } from "zod/v4";
1543
1541
  var googleSearch = createProviderDefinedToolFactory2({
1544
1542
  id: "google.google_search",
1545
- name: "google_search",
1546
1543
  inputSchema: lazySchema7(
1547
1544
  () => zodSchema7(
1548
1545
  z8.object({
@@ -1562,7 +1559,6 @@ import {
1562
1559
  import { z as z9 } from "zod/v4";
1563
1560
  var urlContext = createProviderDefinedToolFactory3({
1564
1561
  id: "google.url_context",
1565
- name: "url_context",
1566
1562
  inputSchema: lazySchema8(() => zodSchema8(z9.object({})))
1567
1563
  });
1568
1564
 
@@ -1571,7 +1567,6 @@ import { createProviderDefinedToolFactory as createProviderDefinedToolFactory4 }
1571
1567
  import { z as z10 } from "zod/v4";
1572
1568
  var vertexRagStore = createProviderDefinedToolFactory4({
1573
1569
  id: "google.vertex_rag_store",
1574
- name: "vertex_rag_store",
1575
1570
  inputSchema: z10.object({
1576
1571
  ragCorpus: z10.string(),
1577
1572
  topK: z10.number().optional()