[PR #2512] [MERGED] Add integration documentation for @langchain/google #2501

Closed
opened 2026-02-17 17:23:29 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/2512
Author: @afirstenberg
Created: 2/5/2026
Status: Merged
Merged: 2/11/2026
Merged by: @hntrl

Base: mainHead: js-gemini


📝 Commits (10+)

  • 9fe24a4 Initial boilerplate and outline
  • 2d7ff5f Initial work on setup section
  • 0cc4610 Update environment variables on setup section.
  • c200e0f Instantiation and initial invocation section
  • 7ebd3e9 Fix for invocation
  • 60db628 Fix to use "llm" as the variable name for the object.
  • bc030f2 Initial Grounding Results section
  • c5552e4 Updates on grounding section
  • d25f1c7 Multimodal
  • 1e3ecb3 API Reference

📊 Changes

13 files changed (+1112 additions, -293 deletions)

View changed files

📝 src/docs.json (+3 -1)
📝 src/oss/contributing/code.mdx (+1 -1)
src/oss/javascript/integrations/chat/google.mdx (+754 -0)
📝 src/oss/javascript/integrations/chat/google_generative_ai.mdx (+10 -1)
📝 src/oss/javascript/integrations/chat/google_vertex_ai.mdx (+9 -0)
📝 src/oss/javascript/integrations/chat/index.mdx (+8 -56)
📝 src/oss/javascript/integrations/providers/all_providers.mdx (+3 -11)
📝 src/oss/javascript/integrations/providers/google.mdx (+60 -213)
📝 src/oss/javascript/integrations/providers/overview.mdx (+1 -3)
src/oss/javascript/integrations/tools/google.mdx (+253 -0)
📝 src/oss/javascript/integrations/tools/index.mdx (+7 -0)
📝 src/oss/javascript/integrations/tools/mcp_toolbox.mdx (+2 -6)
📝 src/oss/langchain/models.mdx (+1 -1)

📄 Description

Overview

  • Adding the integration documentation for the upcoming LangChainJS Google library
  • Marking the existing integration documentation for Google Genai and Google Vertex as being on the deprecation path.

Type of change

  • New documentation page
  • Update existing documentation

Related issues/PRs

Checklist

  • I have read the contributing guidelines
  • I have tested my changes locally using docs dev
  • All code examples have been tested and work correctly (Will re-check once library is created)
  • I have used root relative paths for internal links
  • I have updated navigation in src/docs.json if needed (To discuss)

Additional notes

Coordinate with @hntrl for release of library.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/2512 **Author:** [@afirstenberg](https://github.com/afirstenberg) **Created:** 2/5/2026 **Status:** ✅ Merged **Merged:** 2/11/2026 **Merged by:** [@hntrl](https://github.com/hntrl) **Base:** `main` ← **Head:** `js-gemini` --- ### 📝 Commits (10+) - [`9fe24a4`](https://github.com/langchain-ai/docs/commit/9fe24a49253697b7cbdbbb35f27a27d98efb3ed2) Initial boilerplate and outline - [`2d7ff5f`](https://github.com/langchain-ai/docs/commit/2d7ff5f397eb4d6baed7573b461eae78e35ebcff) Initial work on setup section - [`0cc4610`](https://github.com/langchain-ai/docs/commit/0cc461091e7ca1aa28e00767925260531a0eaba4) Update environment variables on setup section. - [`c200e0f`](https://github.com/langchain-ai/docs/commit/c200e0f414e78d647302700022f41ee7ef9f1977) Instantiation and initial invocation section - [`7ebd3e9`](https://github.com/langchain-ai/docs/commit/7ebd3e92bed0a945f46199104ac125ddffc24b60) Fix for invocation - [`60db628`](https://github.com/langchain-ai/docs/commit/60db628e5d932654dbcbf1bd240d6bb362b8c38d) Fix to use "llm" as the variable name for the object. - [`bc030f2`](https://github.com/langchain-ai/docs/commit/bc030f2a04eb45f541324fe412d69db4eb9947c9) Initial Grounding Results section - [`c5552e4`](https://github.com/langchain-ai/docs/commit/c5552e4de52dd2b29b5fd93a74b89085606c83a9) Updates on grounding section - [`d25f1c7`](https://github.com/langchain-ai/docs/commit/d25f1c7b7e05389649a0fc9471b35140ca50bf03) Multimodal - [`1e3ecb3`](https://github.com/langchain-ai/docs/commit/1e3ecb37bc40201bcf33148e45e4b964b1f8e6c2) API Reference ### 📊 Changes **13 files changed** (+1112 additions, -293 deletions) <details> <summary>View changed files</summary> 📝 `src/docs.json` (+3 -1) 📝 `src/oss/contributing/code.mdx` (+1 -1) ➕ `src/oss/javascript/integrations/chat/google.mdx` (+754 -0) 📝 `src/oss/javascript/integrations/chat/google_generative_ai.mdx` (+10 -1) 📝 `src/oss/javascript/integrations/chat/google_vertex_ai.mdx` (+9 -0) 📝 `src/oss/javascript/integrations/chat/index.mdx` (+8 -56) 📝 `src/oss/javascript/integrations/providers/all_providers.mdx` (+3 -11) 📝 `src/oss/javascript/integrations/providers/google.mdx` (+60 -213) 📝 `src/oss/javascript/integrations/providers/overview.mdx` (+1 -3) ➕ `src/oss/javascript/integrations/tools/google.mdx` (+253 -0) 📝 `src/oss/javascript/integrations/tools/index.mdx` (+7 -0) 📝 `src/oss/javascript/integrations/tools/mcp_toolbox.mdx` (+2 -6) 📝 `src/oss/langchain/models.mdx` (+1 -1) </details> ### 📄 Description ## Overview - Adding the integration documentation for the upcoming LangChainJS Google library - Marking the existing integration documentation for Google Genai and Google Vertex as being on the deprecation path. ## Type of change - New documentation page - Update existing documentation ## Related issues/PRs ## Checklist <!-- Put an 'x' in all boxes that apply --> - [X] I have read the [contributing guidelines](README.md) - [X] I have tested my changes locally using `docs dev` - [X] All code examples have been tested and work correctly (Will re-check once library is created) - [X] I have used **root relative** paths for internal links - [ ] I have updated navigation in `src/docs.json` if needed (To discuss) ## Additional notes Coordinate with @hntrl for release of library. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:23:29 -05:00
yindo closed this issue 2026-02-17 17:23:29 -05:00
yindo changed title from [PR #2512] Add integration documentation for `@langchain/google` to [PR #2512] [MERGED] Add integration documentation for `@langchain/google` 2026-06-05 18:18:56 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#2501