langchain.document_loaders.gcs_file.GCSFileLoader¶

class langchain.document_loaders.gcs_file.GCSFileLoader(project_name: str, bucket: str, blob: str)[source]¶

Bases: BaseLoader

Load Documents from a GCS file.

Initialize with bucket and key name.

Parameters
  • project_name – The name of the project to load

  • bucket – The name of the GCS bucket.

  • blob – The name of the GCS blob to load.

Methods

__init__(project_name, bucket, blob)

Initialize with bucket and key name.

lazy_load()

A lazy loader for Documents.

load()

Load documents.

load_and_split([text_splitter])

Load Documents and split into chunks.

lazy_load() Iterator[Document]¶

A lazy loader for Documents.

load() List[Document][source]¶

Load documents.

load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document]¶

Load Documents and split into chunks. Chunks are returned as Documents.

Parameters

text_splitter – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns

List of Documents.

Examples using GCSFileLoader¶