class AzureBlobStorageFileLoaderClass representing a document loader that loads a specific file from Azure Blob Storage. It extends the BaseDocumentLoader class and implements the DocumentLoader interface.
const loader = new AzureBlobStorageFileLoader({
azureConfig: {
connectionString: "{connectionString}",
container: "{containerName}",
blobName: "{blobName}",
},
});
const docs = await loader.load();