diff --git a/src/backend/tools/google_drive/tool.py b/src/backend/tools/google_drive/tool.py index c65c0fadb7..ff5f3e8da8 100644 --- a/src/backend/tools/google_drive/tool.py +++ b/src/backend/tools/google_drive/tool.py @@ -199,9 +199,6 @@ async def call(self, parameters: dict, **kwargs: Any) -> List[Dict[str, Any]]: if not id_to_texts: return [{"text": ""}] - print("id_to_texts") - print(id_to_texts) - """ Compass logic """ @@ -211,7 +208,6 @@ async def call(self, parameters: dict, **kwargs: Any) -> List[Dict[str, Any]]: parameters={"index": index_name}, ) - print("heyyyyy") # handle creation/update of each file for file_id in id_to_texts: fetched_doc = None @@ -289,7 +285,6 @@ async def call(self, parameters: dict, **kwargs: Any) -> List[Dict[str, Any]]: parameters={"index": index_name}, ) - print("hereeeeee") # fetch documents from index hits = compass.invoke( action=Compass.ValidActions.SEARCH, @@ -309,4 +304,6 @@ async def call(self, parameters: dict, **kwargs: Any) -> List[Dict[str, Any]]: for chunk in hit["chunks"] ] + print("chunks") + print(chunks) return chunks