From 4c89dd49416b90e8b8a288e7e570505d61aeb54e Mon Sep 17 00:00:00 2001
From: Yacklin Wong <139425274+Yacklin@users.noreply.github.com>
Date: Fri, 29 May 2026 20:06:21 -0300
Subject: [PATCH 1/2] Add warning for community integration of document loaders
Added a warning about community document loaders being unverified.
---
src/oss/python/integrations/document_loaders/index.mdx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/oss/python/integrations/document_loaders/index.mdx b/src/oss/python/integrations/document_loaders/index.mdx
index ee778cb4e1..0b8e47bba6 100644
--- a/src/oss/python/integrations/document_loaders/index.mdx
+++ b/src/oss/python/integrations/document_loaders/index.mdx
@@ -9,7 +9,9 @@ Document loaders provide a **standard interface** for reading data from differen
This ensures that data can be handled consistently regardless of the source.
All document loaders implement the @[`BaseLoader`] interface.
-
+
+Community document loaders are user-contributed and unverified. LangChain does not review or endorse these integrations; use them at your own risk.
+
## Interface
Each document loader may define its own parameters, but they share a common API:
From c70ea490d125fa223b086adc75f2cad4f2f394c3 Mon Sep 17 00:00:00 2001
From: Naomi Pentrel <5212232+npentrel@users.noreply.github.com>
Date: Mon, 1 Jun 2026 19:31:27 +0200
Subject: [PATCH 2/2] add js
---
src/oss/javascript/integrations/document_loaders/index.mdx | 4 ++++
src/oss/python/integrations/document_loaders/index.mdx | 2 ++
2 files changed, 6 insertions(+)
diff --git a/src/oss/javascript/integrations/document_loaders/index.mdx b/src/oss/javascript/integrations/document_loaders/index.mdx
index e693201c74..68ae8ce14d 100644
--- a/src/oss/javascript/integrations/document_loaders/index.mdx
+++ b/src/oss/javascript/integrations/document_loaders/index.mdx
@@ -10,6 +10,10 @@ This ensures that data can be handled consistently regardless of the source.
All document loaders implement the @[BaseLoader] interface.
+
+Community document loaders are user-contributed and unverified. LangChain does not review or endorse these integrations; use them at your own risk.
+
+
## Interface
Each document loader may define its own parameters, but they share a common API:
diff --git a/src/oss/python/integrations/document_loaders/index.mdx b/src/oss/python/integrations/document_loaders/index.mdx
index 0b8e47bba6..01614957dc 100644
--- a/src/oss/python/integrations/document_loaders/index.mdx
+++ b/src/oss/python/integrations/document_loaders/index.mdx
@@ -9,9 +9,11 @@ Document loaders provide a **standard interface** for reading data from differen
This ensures that data can be handled consistently regardless of the source.
All document loaders implement the @[`BaseLoader`] interface.
+
Community document loaders are user-contributed and unverified. LangChain does not review or endorse these integrations; use them at your own risk.
+
## Interface
Each document loader may define its own parameters, but they share a common API: