CloudVisionLoader#
- class langchain_google_community.vision.CloudVisionLoader(file_path: str, project: str | None = None)[source]#
Methods
__init__
(file_path[,Β project])A lazy loader for Documents.
aload
()Load data into Document objects.
A lazy loader for Documents.
load
()Loads an image from GCS path to a Document, only the text.
load_and_split
([text_splitter])Load Documents and split into chunks.
- Parameters:
file_path (str) β
project (str | None) β
- __init__(file_path: str, project: str | None = None)[source]#
- Parameters:
file_path (str) β
project (str | None) β
- async alazy_load() AsyncIterator[Document] #
A lazy loader for Documents.
- Return type:
AsyncIterator[Document]
- load() List[Document] [source]#
Loads an image from GCS path to a Document, only the text.
- Return type:
List[Document]
- load_and_split(text_splitter: TextSplitter | None = None) List[Document] #
Load Documents and split into chunks. Chunks are returned as Documents.
Do not override this method. It should be considered to be deprecated!
- Parameters:
text_splitter (Optional[TextSplitter]) β TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.
- Returns:
List of Documents.
- Return type:
List[Document]