[PR #1384] [MERGED] Add langchain-oracledb documentation #1524

Closed
opened 2026-02-17 17:22:27 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/1384
Author: @fileames
Created: 11/12/2025
Status: Merged
Merged: 11/30/2025
Merged by: @mdrxy

Base: mainHead: oracledb_docs


📝 Commits (7)

  • 89d02e2 Add langchain-oracledb documentation
  • f30df2c Merge branch 'main' into oracledb_docs
  • 1731d2c Merge branch 'main' into oracledb_docs
  • 5bd9d80 Revise filter operators and logical operators
  • 0073f42 Apply suggestions from code review
  • 91f17ef Fix provider issue
  • 11ea894 Merge branch 'main' into oracledb_docs

📊 Changes

8 files changed (+215 additions, -93 deletions)

View changed files

📝 reference/packages.yml (+5 -0)
📝 src/oss/python/integrations/document_loaders/oracleadb_loader.mdx (+13 -10)
📝 src/oss/python/integrations/document_loaders/oracleai.mdx (+11 -13)
📝 src/oss/python/integrations/providers/oracleai.mdx (+19 -20)
📝 src/oss/python/integrations/text_embedding/oracleai.mdx (+10 -12)
📝 src/oss/python/integrations/tools/oracleai.mdx (+10 -14)
📝 src/oss/python/integrations/vectorstores/index.mdx (+2 -0)
📝 src/oss/python/integrations/vectorstores/oracle.mdx (+145 -24)

📄 Description

Overview

Oracle AI Vector Search integrations for LangChain have been moved to a dedicated package, langchain-oracledb , and a new repository, langchain-oracle . This PR updates the corresponding documentation, including installation instructions and import statements, to reflect these changes.

Type of change

Type: Update existing documentation

Related issues/PRs

  • GitHub issue: Fixes #523

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
  • I have gotten approval from the relevant reviewers
  • (Internal team members only / optional) I have created a preview deployment 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/1384 **Author:** [@fileames](https://github.com/fileames) **Created:** 11/12/2025 **Status:** ✅ Merged **Merged:** 11/30/2025 **Merged by:** [@mdrxy](https://github.com/mdrxy) **Base:** `main` ← **Head:** `oracledb_docs` --- ### 📝 Commits (7) - [`89d02e2`](https://github.com/langchain-ai/docs/commit/89d02e223dfb01a97263f7fde3efb07040b9aded) Add langchain-oracledb documentation - [`f30df2c`](https://github.com/langchain-ai/docs/commit/f30df2c9fefdb8b584fdce3bc52f965485583d90) Merge branch 'main' into oracledb_docs - [`1731d2c`](https://github.com/langchain-ai/docs/commit/1731d2ce89c84029fd39e748061c47a4e5815688) Merge branch 'main' into oracledb_docs - [`5bd9d80`](https://github.com/langchain-ai/docs/commit/5bd9d805a5e1d6df55ced2705a101c628549bd82) Revise filter operators and logical operators - [`0073f42`](https://github.com/langchain-ai/docs/commit/0073f4222109efac5eb44dbe564d352077e6443c) Apply suggestions from code review - [`91f17ef`](https://github.com/langchain-ai/docs/commit/91f17efdb86ecb6bc4a9fc711cea660a2e65e2bf) Fix provider issue - [`11ea894`](https://github.com/langchain-ai/docs/commit/11ea8942f885656d2e12cc816980c1d4cab2078d) Merge branch 'main' into oracledb_docs ### 📊 Changes **8 files changed** (+215 additions, -93 deletions) <details> <summary>View changed files</summary> 📝 `reference/packages.yml` (+5 -0) 📝 `src/oss/python/integrations/document_loaders/oracleadb_loader.mdx` (+13 -10) 📝 `src/oss/python/integrations/document_loaders/oracleai.mdx` (+11 -13) 📝 `src/oss/python/integrations/providers/oracleai.mdx` (+19 -20) 📝 `src/oss/python/integrations/text_embedding/oracleai.mdx` (+10 -12) 📝 `src/oss/python/integrations/tools/oracleai.mdx` (+10 -14) 📝 `src/oss/python/integrations/vectorstores/index.mdx` (+2 -0) 📝 `src/oss/python/integrations/vectorstores/oracle.mdx` (+145 -24) </details> ### 📄 Description ## Overview `Oracle AI Vector Search` integrations for LangChain have been moved to a dedicated package, [langchain-oracledb ](https://pypi.org/project/langchain-oracledb/), and a new repository, [langchain-oracle ](https://github.com/oracle/langchain-oracle/tree/main/libs/oracledb). This PR updates the corresponding documentation, including installation instructions and import statements, to reflect these changes. ## Type of change **Type:** Update existing documentation ## Related issues/PRs <!-- Link to related issues, feature PRs, or discussions (if applicable) To automatically close an issue when this PR is merged, use closing keywords: - "closes #123" or "fixes #123" or "resolves #123" For regular references without auto-closing, just use: - "#123" or "See issue #123" Examples: - closes #456 (will auto-close issue #456 when PR is merged) - See #789 for context (will reference but not auto-close issue #789) --> - GitHub issue: Fixes #523 ## 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 - I have gotten approval from the relevant reviewers - (Internal team members only / optional) I have created a preview deployment 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-02-17 17:22:27 -05:00
yindo closed this issue 2026-02-17 17:22:27 -05:00
yindo changed title from [PR #1384] Add langchain-oracledb documentation to [PR #1384] [MERGED] Add langchain-oracledb documentation 2026-06-05 18:13:06 -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#1524