From ca2296b543a4534ff9e121764e4fd30a0e2761c3 Mon Sep 17 00:00:00 2001 From: Rajendra Kadam Date: Tue, 9 Jul 2024 18:15:56 +0530 Subject: [PATCH] [Pebblo] Loader source type mismatch --- libs/community/langchain_community/utilities/pebblo.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/libs/community/langchain_community/utilities/pebblo.py b/libs/community/langchain_community/utilities/pebblo.py index 9d8ffb13e4723e..568efae7b68ef8 100644 --- a/libs/community/langchain_community/utilities/pebblo.py +++ b/libs/community/langchain_community/utilities/pebblo.py @@ -45,16 +45,17 @@ ] in_memory = ["DataFrameLoader"] -remote_db = [ +cloud_folder = [ "NotionDBLoader", "GoogleDriveLoader", + "SharePointLoader", ] LOADER_TYPE_MAPPING = { "file": file_loader, "dir": dir_loader, "in-memory": in_memory, - "remote_db": remote_db, + "cloud-folder": cloud_folder, } SUPPORTED_LOADERS = (*file_loader, *dir_loader, *in_memory)