[PR #2914] [MERGED] docs: add JS langchain-oracledb Documentation #3001

Closed
opened 2026-06-05 18:20:39 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/2914
Author: @sudarshan12s
Created: 3/4/2026
Status: Merged
Merged: 3/30/2026
Merged by: @hntrl

Base: mainHead: oracledbdocumentation


📝 Commits (10+)

  • 126ecb8 - Add documentation for Oracle Database
  • 552a782 - Remove links for the respective modules
  • 1d8792b Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation
  • fb578a1 - Incorporate review comments
  • 1a38bbd Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation
  • 5cef282 Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation
  • 8c72d32 - Refer the the canonical Python docs on python.langchain.com to avoid broken-links issues
  • 1ba27da Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation
  • b6ba8a8 Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation
  • b7f2c0c Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation

📊 Changes

10 files changed (+763 additions, -0 deletions)

View changed files

📝 packages.yml (+1 -0)
src/oss/javascript/integrations/document_loaders/file_loaders/oracleai.mdx (+131 -0)
📝 src/oss/javascript/integrations/document_loaders/index.mdx (+2 -0)
📝 src/oss/javascript/integrations/embeddings/index.mdx (+7 -0)
src/oss/javascript/integrations/embeddings/oracleai.mdx (+169 -0)
📝 src/oss/javascript/integrations/providers/all_providers.mdx (+28 -0)
📝 src/oss/javascript/integrations/tools/index.mdx (+7 -0)
src/oss/javascript/integrations/tools/oracleai.mdx (+154 -0)
📝 src/oss/javascript/integrations/vectorstores/index.mdx (+46 -0)
src/oss/javascript/integrations/vectorstores/oracleai.mdx (+218 -0)

📄 Description

Overview

  • Add comprehensive LangChain JS documentation for Oracle AI integrations, covering the vector store (OracleVS), embeddings (OracleEmbeddings), document loader (OracleDocLoader), and Oracle tool workflows. The langchain-oracledb module support is recently released.
  • Introduce Oracle as a provider in the integrations catalog, updating provider, text embedding, tool, and vector store index pages to surface the new guides.
  • Extend the Oracle vector store guide with connection-pooling usage (oracledb.createPool) showing both single-connection and pooled deployment patterns.

Type of change

Type: New documentation page

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
  • I have used root relative paths for internal links
  • I have updated navigation in src/docs.json if needed

(Internal team members only / optional): Create a preview deployment as necessary using the Create Preview Branch workflow

Additional notes


🔄 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/2914 **Author:** [@sudarshan12s](https://github.com/sudarshan12s) **Created:** 3/4/2026 **Status:** ✅ Merged **Merged:** 3/30/2026 **Merged by:** [@hntrl](https://github.com/hntrl) **Base:** `main` ← **Head:** `oracledbdocumentation` --- ### 📝 Commits (10+) - [`126ecb8`](https://github.com/langchain-ai/docs/commit/126ecb88f5f8b70a8b441b0ca5699b108dcf8275) - Add documentation for Oracle Database - [`552a782`](https://github.com/langchain-ai/docs/commit/552a78258e9db912c93478f4595c94ea69bb4b06) - Remove links for the respective modules - [`1d8792b`](https://github.com/langchain-ai/docs/commit/1d8792b2b5252f3ac576e7e64c49f939b970e5e6) Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation - [`fb578a1`](https://github.com/langchain-ai/docs/commit/fb578a1085415ae9ab0e4521559907f1b0ccc43c) - Incorporate review comments - [`1a38bbd`](https://github.com/langchain-ai/docs/commit/1a38bbdf41711f3d291516bdcf60ec6cec069ae2) Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation - [`5cef282`](https://github.com/langchain-ai/docs/commit/5cef282027e2c5def734558a4756ad51eba994dc) Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation - [`8c72d32`](https://github.com/langchain-ai/docs/commit/8c72d327fe21c5f307802bff778ba54a40af526c) - Refer the the canonical Python docs on python.langchain.com to avoid broken-links issues - [`1ba27da`](https://github.com/langchain-ai/docs/commit/1ba27da1f92793b8cb573b10dc584acd42dce018) Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation - [`b6ba8a8`](https://github.com/langchain-ai/docs/commit/b6ba8a86d5ef79b6b2e5eed064d1b36073fda92a) Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation - [`b7f2c0c`](https://github.com/langchain-ai/docs/commit/b7f2c0c3ac54dc9d46cdfd9b88b722022c92b5ee) Merge branch 'main' of github.com:langchain-ai/docs into oracledbdocumentation ### 📊 Changes **10 files changed** (+763 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `packages.yml` (+1 -0) ➕ `src/oss/javascript/integrations/document_loaders/file_loaders/oracleai.mdx` (+131 -0) 📝 `src/oss/javascript/integrations/document_loaders/index.mdx` (+2 -0) 📝 `src/oss/javascript/integrations/embeddings/index.mdx` (+7 -0) ➕ `src/oss/javascript/integrations/embeddings/oracleai.mdx` (+169 -0) 📝 `src/oss/javascript/integrations/providers/all_providers.mdx` (+28 -0) 📝 `src/oss/javascript/integrations/tools/index.mdx` (+7 -0) ➕ `src/oss/javascript/integrations/tools/oracleai.mdx` (+154 -0) 📝 `src/oss/javascript/integrations/vectorstores/index.mdx` (+46 -0) ➕ `src/oss/javascript/integrations/vectorstores/oracleai.mdx` (+218 -0) </details> ### 📄 Description ## Overview <!-- Brief description of what documentation is being added/updated --> - Add comprehensive LangChain JS documentation for Oracle AI integrations, covering the vector store (OracleVS), embeddings (OracleEmbeddings), document loader (OracleDocLoader), and Oracle tool workflows. The [langchain-oracledb](https://www.npmjs.com/package/@oracle/langchain-oracledb) module support is recently released. - Introduce Oracle as a provider in the integrations catalog, updating provider, text embedding, tool, and vector store index pages to surface the new guides. - Extend the Oracle vector store guide with connection-pooling usage (`oracledb.createPool`) showing both single-connection and pooled deployment patterns. ## Type of change Type: New documentation page ## 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 - [x] I have used **root relative** paths for internal links - [x] I have updated navigation in `src/docs.json` if needed (Internal team members only / optional): Create a preview deployment as necessary using the [Create Preview Branch workflow](https://github.com/langchain-ai/docs/actions/workflows/create-preview-branch.yml) ## Additional notes <!-- Any other information that would be helpful for reviewers --> --- <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-06-05 18:20:39 -04:00
yindo closed this issue 2026-06-05 18:20:40 -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#3001