[docs]defload(self,gcs_uri:str)->Document:"""Loads an image from GCS path to a Document, only the text."""fromgoogle.cloudimportvision# type: ignore[attr-defined]image=vision.Image(source=vision.ImageSource(image_uri=gcs_uri))text_detection_response=self._client.text_detection(image=image)annotations=text_detection_response.text_annotationsifannotations:text=annotations[0].descriptionelse:text=""returnDocument(page_content=text,metadata={"source":gcs_uri})
[docs]defload(self)->List[Document]:"""Loads an image from GCS path to a Document, only the text."""fromgoogle.cloudimportvision# type: ignore[attr-defined]image=vision.Image(source=vision.ImageSource(image_uri=self._file_path))text_detection_response=self._client.text_detection(image=image)annotations=text_detection_response.text_annotationsifannotations:text=annotations[0].descriptionelse:text=""return[Document(page_content=text,metadata={"source":self._file_path})]