⚠️ Deprecated ⚠️

This feature is deprecated and will be removed in the future.

It is not recommended for use.

  • Import from "@langchain/community/document_loaders/web/s3" instead. This entrypoint will be removed in 0.3.0.

A class that extends the BaseDocumentLoader class. It represents a document loader for loading files from an S3 bucket.

Example

const loader = new S3Loader({
bucket: "my-document-bucket-123",
key: "AccountingOverview.pdf",
s3Config: {
region: "us-east-1",
credentials: {
accessKeyId: "<YourAccessKeyId>",
secretAccessKey: "<YourSecretAccessKey>",
},
},
unstructuredAPIURL: "<YourUnstructuredAPIURL>",
unstructuredAPIKey: "<YourUnstructuredAPIKey>",
});
const docs = await loader.load();

Hierarchy (view full)

Constructors

Methods

Constructors

Methods

  • Loads the file from the S3 bucket, saves it to a temporary directory, and then uses the UnstructuredLoader to load the file as a document.

    Returns Promise<Document[]>

    An array of Document objects representing the loaded documents.

Generated using TypeDoc