From d2ac3b375c410403c54b38999f0368930f8cbd76 Mon Sep 17 00:00:00 2001 From: William Espegren <131612909+WilliamEspegren@users.noreply.github.com> Date: Mon, 11 Aug 2025 23:23:03 +0200 Subject: [PATCH] fix(docs): add Spider as a webpage loader (#32453) [Spider](https://spider.cloud/) is a webpage loader and should be listed under the ["Webpages"](https://python.langchain.com/docs/integrations/document_loaders/#webpages) table on the Document loaders page. Twitter: https://x.com/WilliamEspegren --------- Co-authored-by: Mason Daugherty --- docs/src/theme/FeatureTables.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/src/theme/FeatureTables.js b/docs/src/theme/FeatureTables.js index 5aeb5fba86d..a8e579f56d3 100644 --- a/docs/src/theme/FeatureTables.js +++ b/docs/src/theme/FeatureTables.js @@ -822,10 +822,17 @@ const FEATURE_TABLES = { api: "Package", apiLink: "https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.sitemap.SitemapLoader.html" }, + { + name: "Spider", + link: "spider", + source: "Crawler and scraper that returns LLM-ready data.", + api: "API", + apiLink: "https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.spider.SpiderLoader.html" + }, { name: "Firecrawl", link: "firecrawl", - source: "API service that can be deployed locally, hosted version has free credits.", + source: "API service that can be deployed locally.", api: "API", apiLink: "https://python.langchain.com/api_reference/community/document_loaders/langchain_community.document_loaders.firecrawl.FireCrawlLoader.html" },