[PR #1620] [MERGED] Add langchain-parallel docs #1702

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/1620
Author: @NormallyGaussian
Created: 11/25/2025
Status: Merged
Merged: 11/25/2025
Merged by: @mdrxy

Base: mainHead: langchain-parallel-docs


📝 Commits (10+)

📊 Changes

20 files changed (+1088 additions, -60 deletions)

View changed files

📝 pipeline/preprocessors/link_map.py (+5 -0)
📝 reference/packages.yml (+5 -0)
reference/python/AGENTS.md (+27 -0)
📝 reference/python/CLAUDE.md (+1 -21)
📝 reference/python/README.md (+8 -0)
reference/python/docs/integrations/langchain_parallel/ChatParallelWeb.md (+10 -0)
reference/python/docs/integrations/langchain_parallel/ParallelExtractTool.md (+10 -0)
reference/python/docs/integrations/langchain_parallel/ParallelWebSearchTool.md (+10 -0)
reference/python/docs/integrations/langchain_parallel/index.md (+47 -0)
📝 reference/python/mkdocs.yml (+5 -0)
📝 reference/python/pyproject.dev.toml (+8 -0)
📝 reference/python/pyproject.prod.toml (+11 -0)
📝 reference/python/pyproject.toml (+11 -0)
📝 reference/python/uv.lock (+39 -39)
src/oss/python/integrations/chat/parallel.mdx (+271 -0)
📝 src/oss/python/integrations/providers/all_providers.mdx (+8 -0)
src/oss/python/integrations/providers/parallel.mdx (+39 -0)
📝 src/oss/python/integrations/tools/index.mdx (+3 -0)
src/oss/python/integrations/tools/parallel_extract.mdx (+247 -0)
src/oss/python/integrations/tools/parallel_search.mdx (+323 -0)

📄 Description

Overview

We have recently published the langchain-parallel integration, allowing developers to use Parallel's search, extract, and chat features with LangChain.

This PR adds net new documentation for this integration to the LangChain docs.

Type of change

Type: New documentation page

Related issues/PRs

Discussions on Slack in langchain-parallel-shared.

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/1620 **Author:** [@NormallyGaussian](https://github.com/NormallyGaussian) **Created:** 11/25/2025 **Status:** ✅ Merged **Merged:** 11/25/2025 **Merged by:** [@mdrxy](https://github.com/mdrxy) **Base:** `main` ← **Head:** `langchain-parallel-docs` --- ### 📝 Commits (10+) - [`ddbfab0`](https://github.com/langchain-ai/docs/commit/ddbfab0dee20c3f92f92ef2f316950a38569b607) Add langchain-parallel docs - [`09f1415`](https://github.com/langchain-ai/docs/commit/09f141545781716e15c50f17ba3c3acfaf7c9b6c) correct download count - [`4a2e7ac`](https://github.com/langchain-ai/docs/commit/4a2e7ac06f68287225daac7666cc2d323650bf48) update extract - [`85af041`](https://github.com/langchain-ai/docs/commit/85af041f6f7d21e10d710e0e084aa1bfe476ce59) provider update - [`0790398`](https://github.com/langchain-ai/docs/commit/0790398b06b45355dceed0f687668f6b9b39dc54) provider update - [`e0d4e87`](https://github.com/langchain-ai/docs/commit/e0d4e87c996ca865681676cb9d5cf8dc6389e1bd) Fixes + api reference attempt - [`c9c422a`](https://github.com/langchain-ai/docs/commit/c9c422a87204db58499e4e8a6b2bceff91ba24c2) simplify provider docs - [`52edd2a`](https://github.com/langchain-ai/docs/commit/52edd2a9a0dd8a999689008a3f7541c64332644d) reference docs fix - [`779e447`](https://github.com/langchain-ai/docs/commit/779e44783b3a4cf0cff6b31c8284e051908a8848) reference docs fix - [`838e884`](https://github.com/langchain-ai/docs/commit/838e884fd8bff2505f4ddd1d305081daf1f7d383) More cleanup ### 📊 Changes **20 files changed** (+1088 additions, -60 deletions) <details> <summary>View changed files</summary> 📝 `pipeline/preprocessors/link_map.py` (+5 -0) 📝 `reference/packages.yml` (+5 -0) ➕ `reference/python/AGENTS.md` (+27 -0) 📝 `reference/python/CLAUDE.md` (+1 -21) 📝 `reference/python/README.md` (+8 -0) ➕ `reference/python/docs/integrations/langchain_parallel/ChatParallelWeb.md` (+10 -0) ➕ `reference/python/docs/integrations/langchain_parallel/ParallelExtractTool.md` (+10 -0) ➕ `reference/python/docs/integrations/langchain_parallel/ParallelWebSearchTool.md` (+10 -0) ➕ `reference/python/docs/integrations/langchain_parallel/index.md` (+47 -0) 📝 `reference/python/mkdocs.yml` (+5 -0) 📝 `reference/python/pyproject.dev.toml` (+8 -0) 📝 `reference/python/pyproject.prod.toml` (+11 -0) 📝 `reference/python/pyproject.toml` (+11 -0) 📝 `reference/python/uv.lock` (+39 -39) ➕ `src/oss/python/integrations/chat/parallel.mdx` (+271 -0) 📝 `src/oss/python/integrations/providers/all_providers.mdx` (+8 -0) ➕ `src/oss/python/integrations/providers/parallel.mdx` (+39 -0) 📝 `src/oss/python/integrations/tools/index.mdx` (+3 -0) ➕ `src/oss/python/integrations/tools/parallel_extract.mdx` (+247 -0) ➕ `src/oss/python/integrations/tools/parallel_search.mdx` (+323 -0) </details> ### 📄 Description ## Overview We have recently published the `langchain-parallel` integration, allowing developers to use Parallel's search, extract, and chat features with LangChain. - GitHub repo: https://github.com/parallel-web/langchain-parallel/tree/main - Docs: https://docs.parallel.ai/integrations/langchain This PR adds net new documentation for this integration to the LangChain docs. ## Type of change **Type:** New documentation page ## Related issues/PRs Discussions on Slack in `langchain-parallel-shared`. ## 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-02-17 17:22:38 -05:00
yindo closed this issue 2026-02-17 17:22:38 -05:00
yindo changed title from [PR #1620] Add langchain-parallel docs to [PR #1620] [MERGED] Add langchain-parallel docs 2026-06-05 18:14:29 -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#1702