Skip to content

Commit

Permalink
enhance source path in PebbloSafeLoaer for GoogleDriveLoader Documents.
Browse files Browse the repository at this point in the history
Signed-off-by: Rahul Tripathi <[email protected]>
  • Loading branch information
Rahul Tripathi committed Apr 8, 2024
1 parent 039b7a4 commit 0948ff1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion libs/community/langchain_community/utilities/pebblo.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,11 @@ def get_loader_full_path(loader: BaseLoader) -> str:
if location and "channel" in loader_dict:
channel = loader_dict["channel"]
if channel:
location = f"{location}/{channel}"
location = f"{location}/{str(channel)}"
if "title" in loader_dict: # For GoogleDriveLoader
title = loader_dict["title"]
if title:
location = f"{location}: {str(title)}"
elif "path" in loader_dict:
location = loader_dict["path"]
elif "file_path" in loader_dict:
Expand Down

0 comments on commit 0948ff1

Please sign in to comment.