Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
giannis2two committed Jul 11, 2024
1 parent d7ccc70 commit 2d61d10
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/backend/tools/google_drive/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,8 @@ async def call(self, parameters: dict, **kwargs: Any) -> List[Dict[str, Any]]:
return [{"text": ""}]

# post process files
print("processed_files")
processed_files = process_shortcut_files(service, files)
print("web_view_links")
web_view_links = extract_web_view_links(processed_files)
print("titles")
titles = extract_titles(processed_files)

id_to_texts = {}
Expand All @@ -168,7 +165,6 @@ async def call(self, parameters: dict, **kwargs: Any) -> List[Dict[str, Any]]:
x for x in processed_files if x["mimeType"] in NATIVE_SEARCH_MIME_TYPES
]
id_to_urls = extract_links(native_files)
print("async_download.async_perform")
if id_to_urls:
id_to_texts = await async_download.async_perform(id_to_urls, creds.token)

Expand Down

0 comments on commit 2d61d10

Please sign in to comment.