> ## Documentation Index
> Fetch the complete documentation index at: https://cndoc-langchain.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Google 集成

> 使用 LangChain JavaScript 集成 Google Gemini 工具。

`@langchain/google` 包支持 Gemini 的内置工具，这些工具提供了网络搜索接地、代码执行、URL 上下文检索等功能。这些工具作为 Gemini 原生对象通过 `bindTools()` 或 `tools` 调用选项传递给 `ChatGoogle`。

<Warning>
  你不能在同一个请求中混合使用 Gemini 原生工具（Google 搜索、代码执行等）和标准 LangChain 工具（基于 Zod 的函数工具）。有关标准工具调用用法，请参阅 [ChatGoogle](/oss/javascript/integrations/chat/google) 页面。
</Warning>

### Google 搜索

`googleSearch` 工具使用实时的 Google 搜索结果来接地模型响应。这对于关于时事或特定事实的问题很有用。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { ChatGoogle } from "@langchain/google";

const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
    {
      googleSearch: {},
    },
  ]);

const res = await llm.invoke("Who won the latest World Series?");
console.log(res.text);
```

你可以选择将搜索结果过滤到特定的时间范围：

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
  {
    googleSearch: {
      timeRangeFilter: {
        startTime: "2025-01-01T00:00:00Z",
        endTime: "2025-12-31T23:59:59Z",
      },
    },
  },
]);
```

<Note>
  `googleSearchRetrieval` 工具是为了向后兼容而保留的，但推荐使用 `googleSearch`。
</Note>

更多信息，请参阅 [Google 的使用 Google 搜索进行接地文档](https://ai.google.dev/gemini-api/docs/grounding)。

### 代码执行

`codeExecution` 工具允许 Gemini 生成并运行 Python 代码来解决复杂问题。模型编写代码、执行代码并返回结果。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { ChatGoogle } from "@langchain/google";

const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
    {
      codeExecution: {},
    },
  ]);

const res = await llm.invoke("Calculate the 100th Fibonacci number.");
console.log(res.contentBlocks);
```

响应在 `contentBlocks` 字段中包含生成的代码及其执行结果：

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
for (const block of res.contentBlocks) {
  if (block.type === "tool_code") {
    console.log("Code:", block.toolCode);
  } else if (block.type === "tool_result") {
    console.log("Result:", block.toolResult);
  }
}
```

更多信息，请参阅 [Google 的代码执行文档](https://ai.google.dev/gemini-api/docs/code-execution)。

### URL 上下文

`urlContext` 工具允许 Gemini 获取并使用 URL 中的内容来接地其响应。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { ChatGoogle } from "@langchain/google";

const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
    {
      urlContext: {},
    },
  ]);

const res = await llm.invoke("Summarize this page: https://js.langchain.com/");
console.log(res.text);
```

更多信息，请参阅 [Google 的 URL 上下文文档](https://ai.google.dev/gemini-api/docs/url-context)。

### Google 地图

`googleMaps` 工具使用来自 Google 地图的地理空间上下文来接地响应。这对于与地点相关的查询很有用。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { ChatGoogle } from "@langchain/google";

const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
    {
      googleMaps: {},
    },
  ]);

const res = await llm.invoke("What are the best coffee shops near Times Square?");
console.log(res.text);
```

你可以启用小部件上下文令牌来渲染 Google 地图小部件：

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
    {
      googleMaps: {
        enableWidget: true,
    },
  },
]);

const res = await llm.invoke("Find Italian restaurants in downtown Chicago");

// 从接地元数据中访问小部件上下文令牌
const groundingMetadata = res.response_metadata?.groundingMetadata;
console.log(groundingMetadata?.googleMapsWidgetContextToken);
```

更多信息，请参阅 [Google 的 Google 地图接地文档](https://ai.google.dev/gemini-api/docs/grounding/google-maps)。

### 文件搜索

`fileSearch` 工具从文件搜索存储中执行语义检索。文件必须首先使用 Gemini 文件 API 导入。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { ChatGoogle } from "@langchain/google";

const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
    {
      fileSearch: {
      fileSearchStoreNames: ["fileSearchStores/my-store-123"],
    },
  },
]);

const res = await llm.invoke("What does the report say about Q4 revenue?");
console.log(res.text);
```

配置选项：

* `fileSearchStoreNames`（必需）-- 要从中检索的文件搜索存储的名称
* `metadataFilter`（可选）-- 要应用于检索的元数据过滤器
* `topK`（可选）-- 要返回的语义检索块的数量

更多信息，请参阅 [Google 的文件搜索文档](https://ai.google.dev/gemini-api/docs/file-search)。

### 计算机使用

`computerUse` 工具使 Gemini 能够与浏览器环境交互。模型可以查看屏幕截图并执行点击、输入和滚动等操作。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { ChatGoogle } from "@langchain/google";

const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
    {
      computerUse: {
      environment: "ENVIRONMENT_BROWSER",
    },
  },
]);
```

配置选项：

* `environment`（必需）-- 正在操作的环境（例如 `"ENVIRONMENT_BROWSER"`）
* `excludedPredefinedFunctions`（可选）-- 要从操作空间中排除的预定义函数

更多信息，请参阅 [Google 的计算机使用文档](https://ai.google.dev/gemini-api/docs/computer-use)。

### MCP 服务器

`mcpServers` 字段允许 Gemini 连接到远程 MCP（模型上下文协议）服务器。与其他原生工具不同，MCP 服务器在工具对象上指定为一个数组。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { ChatGoogle } from "@langchain/google";

const llm = new ChatGoogle("gemini-2.5-flash")
  .bindTools([
    {
      mcpServers: [
      {
        name: "my-mcp-server",
        streamableHttpTransport: {
          url: "https://my-mcp-server.example.com/mcp",
        },
      },
    ],
  },
]);

const res = await llm.invoke("Use the tools from the MCP server to help me.");
console.log(res.text);
```

更多信息，请参阅 [Google 的 MCP 文档](https://ai.google.dev/gemini-api/docs/mcp)。

### Vertex AI Search 数据存储

如果你使用的是 Vertex AI（`platformType: "gcp"`），你可以使用 Vertex AI Search 数据存储来接地响应。

```typescript theme={"theme":{"light":"catppuccin-latte","dark":"catppuccin-mocha"}}
import { ChatGoogle } from "@langchain/google";

const projectId = "YOUR_PROJECT_ID";
const datastoreId = "YOUR_DATASTORE_ID";

const llm = new ChatGoogle({
  model: "gemini-2.5-pro",
  platformType: "gcp",
}).bindTools([
  {
    retrieval: {
      vertexAiSearch: {
        datastore: `projects/${projectId}/locations/global/collections/default_collection/dataStores/${datastoreId}`,
      },
      disableAttribution: false,
    },
  },
]);

const res = await llm.invoke(
  "What is the score of Argentina vs Bolivia football game?"
);
console.log(res.text);
```

更多信息，请参阅 [Google 的 Vertex AI Search 接地文档](https://cloud.google.com/vertex-ai/generative-ai/docs/grounding/ground-with-vertex-ai-search)。

***

<div className="source-links">
  <Callout icon="terminal-2">
    [将这些文档](/use-these-docs)通过 MCP 连接到 Claude、VSCode 等，以获取实时答案。
  </Callout>

  <Callout icon="edit">
    [在 GitHub 上编辑此页面](https://github.com/langchain-ai/docs/edit/main/src/oss/javascript/integrations/tools/google.mdx) 或 [提交问题](https://github.com/langchain-ai/docs/issues/new/choose)。
  </Callout>
</div>
