langchain.js
    Preparing search index...

    Class representing a document loader that loads documents from an Azure Blob Storage container. It extends the BaseDocumentLoader class.

    Hierarchy (View Summary)

    Index

    Constructors

    Accessors

    Methods

    Constructors

    • Parameters

      • __namedParameters: AzureBlobStorageContainerLoaderConfig

      Returns AzureBlobStorageContainerLoader

    Accessors

    • get lc_secrets(): { [key: string]: string }

      Returns { [key: string]: string }

    Methods

    • Method to load documents from an Azure Blob Storage container. It creates a BlobServiceClient using the connection string, gets the container client using the container name, and iterates over the blobs in the container. For each blob, it creates an instance of AzureBlobStorageFileLoader and loads the documents using the loader. The loaded documents are concatenated to the docs array and returned.

      Returns Promise<Document[]>

      An array of loaded documents.