langchain_community.document_loaders.gcs_directory.GCSDirectoryLoader¶

class langchain_community.document_loaders.gcs_directory.GCSDirectoryLoader(project_name: str, bucket: str, prefix: str = '', loader_func: Optional[Callable[[str], BaseLoader]] = None)[source]¶

Load from GCS directory.

Initialize with bucket and key name.

Parameters
  • project_name – The ID of the project for the GCS bucket.

  • bucket – The name of the GCS bucket.

  • prefix – The prefix of the GCS bucket.

  • loader_func – A loader function that instantiates a loader based on a file_path argument. If nothing is provided, the GCSFileLoader would use its default loader.

Methods

__init__(project_name, bucket[, prefix, ...])

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.

__init__(project_name: str, bucket: str, prefix: str = '', loader_func: Optional[Callable[[str], BaseLoader]] = None)[source]¶

Initialize with bucket and key name.

Parameters
  • project_name – The ID of the project for the GCS bucket.

  • bucket – The name of the GCS bucket.

  • prefix – The prefix of the GCS bucket.

  • loader_func – A loader function that instantiates a loader based on a file_path argument. If nothing is provided, the GCSFileLoader would use its default loader.

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 GCSDirectoryLoader¶