A class that extends the BaseDocumentLoader class. It represents a document loader for loading files from a google cloud storage bucket.
const loader = new GoogleCloudStorageLoader({ bucket: "<my-bucket-name>", file: "<file-path>", storageOptions: { keyFilename: "<key-file-name-path>" } unstructuredConfig: { apiUrl: "<unstructured-API-URL>", apiKey: "<unstructured-API-key>" }});const docs = await loader.load(); Copy
const loader = new GoogleCloudStorageLoader({ bucket: "<my-bucket-name>", file: "<file-path>", storageOptions: { keyFilename: "<key-file-name-path>" } unstructuredConfig: { apiUrl: "<unstructured-API-URL>", apiKey: "<unstructured-API-key>" }});const docs = await loader.load();
Loads the documents.
A Promise that resolves with an array of Document instances.
Optional
A Promise that resolves with an array of Document instances, each split according to the provided TextSplitter.
Use this.load() and splitter.splitDocuments() individually. Loads the documents and splits them using a specified text splitter.
this.load()
splitter.splitDocuments()
A class that extends the BaseDocumentLoader class. It represents a document loader for loading files from a google cloud storage bucket.
Example