langchain.document_loaders.gcs_directory.GCSDirectoryLoader¶
- class langchain.document_loaders.gcs_directory.GCSDirectoryLoader(project_name: str, bucket: str, prefix: str = '')[source]¶
Bases:
BaseLoaderLoads Documents from GCS.
Initialize with bucket and key name.
- Parameters
project_name – The name of the project for the GCS bucket.
bucket – The name of the GCS bucket.
prefix – The prefix of the GCS bucket.
Methods
__init__(project_name, bucket[, prefix])Initialize with bucket and key name.
A lazy loader for Documents.
load()Load documents.
load_and_split([text_splitter])Load Documents and split into chunks.
- 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.