[PR #3975] [MERGED] feat(tavily): Align Tavily Python and Typescript docs #3985

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

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/3975
Author: @lakshyaag-tavily
Created: 5/12/2026
Status: Merged
Merged: 5/19/2026
Merged by: @mdrxy

Base: mainHead: tavily/fde-458-align-tavily-langchain-python-and-typescript-docs


📝 Commits (7)

  • ed7185c docs: enhance Tavily Python integration documentation with new tools and examples
  • aabd1ac docs: add Tavily integration documentation for JavaScript tools and update provider overview
  • 917ae59 docs: add deprecation notice for tavily retriever
  • 8201b45 docs: cleanup
  • ba129a1 docs: add Tavily tools to link map and update documentation references
  • 29f1ee7 Merge branch 'main' into tavily/fde-458-align-tavily-langchain-python-and-typescript-docs
  • 3cd8d6a Merge branch 'main' into tavily/fde-458-align-tavily-langchain-python-and-typescript-docs

📊 Changes

16 files changed (+821 additions, -306 deletions)

View changed files

📝 pipeline/preprocessors/link_map.py (+6 -0)
📝 src/oss/javascript/integrations/providers/overview.mdx (+1 -1)
src/oss/javascript/integrations/providers/tavily.mdx (+81 -0)
📝 src/oss/javascript/integrations/retrievers/tavily.mdx (+5 -1)
📝 src/oss/javascript/integrations/tools/index.mdx (+10 -10)
📝 src/oss/javascript/integrations/tools/tavily_crawl.mdx (+96 -66)
📝 src/oss/javascript/integrations/tools/tavily_extract.mdx (+69 -64)
📝 src/oss/javascript/integrations/tools/tavily_map.mdx (+77 -65)
📝 src/oss/javascript/integrations/tools/tavily_search.mdx (+69 -67)
📝 src/oss/python/integrations/providers/tavily.mdx (+59 -6)
📝 src/oss/python/integrations/retrievers/tavily.mdx (+6 -2)
📝 src/oss/python/integrations/tools/index.mdx (+3 -1)
src/oss/python/integrations/tools/tavily_crawl.mdx (+174 -0)
📝 src/oss/python/integrations/tools/tavily_extract.mdx (+9 -13)
src/oss/python/integrations/tools/tavily_map.mdx (+153 -0)
📝 src/oss/python/integrations/tools/tavily_search.mdx (+3 -10)

📄 Description

Overview

This PR updates the documentation in both languages (Python, TypeScript) for Tavily. It aligns the Tavily Python and JS integration docs so both languages cover the full langchain-tavily / @langchain/tavily surface.

Type of change

Type:

  • New documentation page
  • Update existing documentation
  • Remove outdated content

Checklist

  • I have read the contributing guidelines, including the language policy
  • 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

🔄 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/3975 **Author:** [@lakshyaag-tavily](https://github.com/lakshyaag-tavily) **Created:** 5/12/2026 **Status:** ✅ Merged **Merged:** 5/19/2026 **Merged by:** [@mdrxy](https://github.com/mdrxy) **Base:** `main` ← **Head:** `tavily/fde-458-align-tavily-langchain-python-and-typescript-docs` --- ### 📝 Commits (7) - [`ed7185c`](https://github.com/langchain-ai/docs/commit/ed7185c4f9506c0d643fcb7537a98e553a9e45d6) docs: enhance Tavily Python integration documentation with new tools and examples - [`aabd1ac`](https://github.com/langchain-ai/docs/commit/aabd1ace08f8c56dbc56b3c6097471089c4ad489) docs: add Tavily integration documentation for JavaScript tools and update provider overview - [`917ae59`](https://github.com/langchain-ai/docs/commit/917ae59b6481d26c807a16cf266ee52610ceb37f) docs: add deprecation notice for tavily retriever - [`8201b45`](https://github.com/langchain-ai/docs/commit/8201b45700b429bc1632db1fab2a658d5460d508) docs: cleanup - [`ba129a1`](https://github.com/langchain-ai/docs/commit/ba129a167f05d87e00029785778a881a3bab03e4) docs: add Tavily tools to link map and update documentation references - [`29f1ee7`](https://github.com/langchain-ai/docs/commit/29f1ee719c5e940d94b8580557fa1efae55c039a) Merge branch 'main' into tavily/fde-458-align-tavily-langchain-python-and-typescript-docs - [`3cd8d6a`](https://github.com/langchain-ai/docs/commit/3cd8d6a264c6290869defeb3aa73864e2456ffd9) Merge branch 'main' into tavily/fde-458-align-tavily-langchain-python-and-typescript-docs ### 📊 Changes **16 files changed** (+821 additions, -306 deletions) <details> <summary>View changed files</summary> 📝 `pipeline/preprocessors/link_map.py` (+6 -0) 📝 `src/oss/javascript/integrations/providers/overview.mdx` (+1 -1) ➕ `src/oss/javascript/integrations/providers/tavily.mdx` (+81 -0) 📝 `src/oss/javascript/integrations/retrievers/tavily.mdx` (+5 -1) 📝 `src/oss/javascript/integrations/tools/index.mdx` (+10 -10) 📝 `src/oss/javascript/integrations/tools/tavily_crawl.mdx` (+96 -66) 📝 `src/oss/javascript/integrations/tools/tavily_extract.mdx` (+69 -64) 📝 `src/oss/javascript/integrations/tools/tavily_map.mdx` (+77 -65) 📝 `src/oss/javascript/integrations/tools/tavily_search.mdx` (+69 -67) 📝 `src/oss/python/integrations/providers/tavily.mdx` (+59 -6) 📝 `src/oss/python/integrations/retrievers/tavily.mdx` (+6 -2) 📝 `src/oss/python/integrations/tools/index.mdx` (+3 -1) ➕ `src/oss/python/integrations/tools/tavily_crawl.mdx` (+174 -0) 📝 `src/oss/python/integrations/tools/tavily_extract.mdx` (+9 -13) ➕ `src/oss/python/integrations/tools/tavily_map.mdx` (+153 -0) 📝 `src/oss/python/integrations/tools/tavily_search.mdx` (+3 -10) </details> ### 📄 Description ## Overview This PR updates the documentation in both languages (Python, TypeScript) for [Tavily](https://tavily.com). It aligns the Tavily Python and JS integration docs so both languages cover the full `langchain-tavily` / `@langchain/tavily` surface. ## Type of change **Type:** - New documentation page - Update existing documentation - Remove outdated content ## Checklist <!-- Put an 'x' in all boxes that apply --> - [x] I have read the [contributing guidelines](README.md), including the [language policy](https://docs.langchain.com/oss/python/contributing/overview#language-policy) - [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 --- <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:53:48 -04:00
yindo closed this issue 2026-06-05 18:53:48 -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#3985