[PR #1834] [MERGED] docs: add langchain-nimble v2.0 integration documentation #1892

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/1834
Author: @ilchemla
Created: 12/10/2025
Status: Merged
Merged: 2/23/2026
Merged by: @christian-bromann

Base: mainHead: update-nimble-docs-release-v2


📝 Commits (10+)

  • 137090e docs(nimble): add v2.0 documentation for search tool and retriever
  • e952304 docs(nimble): add v2.0 extract tool and retriever documentation
  • 1002ed6 docs(nimble): update integration indexes and package registry
  • 7d4c28f Remove nimble.mdx documentation file
  • 5360ab1 Fix formatting in Nimble documentation by adding line breaks and removing extra whitespace
  • ef6e267 Merge branch 'main' into update-nimble-docs-release-v2
  • 9ebd4f7 Merge upstream/main into update-nimble-docs-release-v2
  • 9dd39e3 Merge upstream/main into update-nimble-docs-release-v2
  • 44f8c6b Merge branch 'main' into update-nimble-docs-release-v2
  • 3158fa7 Merge branch 'main' into update-nimble-docs-release-v2

📊 Changes

9 files changed (+818 additions, -147 deletions)

View changed files

📝 reference/packages.yml (+1 -0)
📝 src/oss/python/integrations/providers/nimble.mdx (+37 -14)
📝 src/oss/python/integrations/retrievers/index.mdx (+2 -1)
src/oss/python/integrations/retrievers/nimble.mdx (+0 -132)
src/oss/python/integrations/retrievers/nimble_extract.mdx (+202 -0)
src/oss/python/integrations/retrievers/nimble_search.mdx (+198 -0)
📝 src/oss/python/integrations/tools/index.mdx (+4 -0)
src/oss/python/integrations/tools/nimble_extract.mdx (+183 -0)
src/oss/python/integrations/tools/nimble_search.mdx (+191 -0)

📄 Description

Overview

Add comprehensive v2.0 documentation for langchain-nimble package. This update introduces documentation for 4 new components (2 tools + 2 retrievers) and updates the provider page to reflect the v2.0 release architecture.

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 (N/A - auto-generated from indexes)

🔄 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/1834 **Author:** [@ilchemla](https://github.com/ilchemla) **Created:** 12/10/2025 **Status:** ✅ Merged **Merged:** 2/23/2026 **Merged by:** [@christian-bromann](https://github.com/christian-bromann) **Base:** `main` ← **Head:** `update-nimble-docs-release-v2` --- ### 📝 Commits (10+) - [`137090e`](https://github.com/langchain-ai/docs/commit/137090e5c735d812936fcbbd68c32418a84c022e) docs(nimble): add v2.0 documentation for search tool and retriever - [`e952304`](https://github.com/langchain-ai/docs/commit/e952304283be089afa1779fb8305039142ab5068) docs(nimble): add v2.0 extract tool and retriever documentation - [`1002ed6`](https://github.com/langchain-ai/docs/commit/1002ed6b9b2dc05d65a1c119909c4e083417523d) docs(nimble): update integration indexes and package registry - [`7d4c28f`](https://github.com/langchain-ai/docs/commit/7d4c28fd41dc7a6c160ed4266eeaf3db2c6069cb) Remove nimble.mdx documentation file - [`5360ab1`](https://github.com/langchain-ai/docs/commit/5360ab161f4723d1459f5619b1c44e5bbf94016d) Fix formatting in Nimble documentation by adding line breaks and removing extra whitespace - [`ef6e267`](https://github.com/langchain-ai/docs/commit/ef6e267f24414bc24c66ea87c463ff4e3be43746) Merge branch 'main' into update-nimble-docs-release-v2 - [`9ebd4f7`](https://github.com/langchain-ai/docs/commit/9ebd4f7272e1dcb57c43a7f739dc895553468f08) Merge upstream/main into update-nimble-docs-release-v2 - [`9dd39e3`](https://github.com/langchain-ai/docs/commit/9dd39e36e119814ca835c2419a3a0f962d1475c9) Merge upstream/main into update-nimble-docs-release-v2 - [`44f8c6b`](https://github.com/langchain-ai/docs/commit/44f8c6bdd5ad76cd6e4cf54cdc5f6b752c07513d) Merge branch 'main' into update-nimble-docs-release-v2 - [`3158fa7`](https://github.com/langchain-ai/docs/commit/3158fa73a394ba0c5b21fa3221a923ec3dbdbc66) Merge branch 'main' into update-nimble-docs-release-v2 ### 📊 Changes **9 files changed** (+818 additions, -147 deletions) <details> <summary>View changed files</summary> 📝 `reference/packages.yml` (+1 -0) 📝 `src/oss/python/integrations/providers/nimble.mdx` (+37 -14) 📝 `src/oss/python/integrations/retrievers/index.mdx` (+2 -1) ➖ `src/oss/python/integrations/retrievers/nimble.mdx` (+0 -132) ➕ `src/oss/python/integrations/retrievers/nimble_extract.mdx` (+202 -0) ➕ `src/oss/python/integrations/retrievers/nimble_search.mdx` (+198 -0) 📝 `src/oss/python/integrations/tools/index.mdx` (+4 -0) ➕ `src/oss/python/integrations/tools/nimble_extract.mdx` (+183 -0) ➕ `src/oss/python/integrations/tools/nimble_search.mdx` (+191 -0) </details> ### 📄 Description ## Overview Add comprehensive v2.0 documentation for `langchain-nimble` package. This update introduces documentation for 4 new components (2 tools + 2 retrievers) and updates the provider page to reflect the v2.0 release architecture. ## Type of change **Type:** New documentation page ## Checklist - [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 (N/A - auto-generated from indexes) --- <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:50 -05:00
yindo changed title from [PR #1834] docs: add langchain-nimble v2.0 integration documentation to [PR #1834] [MERGED] docs: add langchain-nimble v2.0 integration documentation 2026-06-05 18:15:32 -04:00
yindo closed this issue 2026-06-05 18:15:32 -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#1892