Azure Blob 存储容器
兼容性
仅适用于 Node.js。
这涵盖了如何将 Azure Blob 存储中的容器加载到 LangChain 文档中。
设置
要运行此加载器,您需要在可用的 URL 端点处设置好 Unstructured 并准备使用。它也可以配置为在本地运行。
有关如何执行此操作的信息,请参见此处 文档。
您还需要安装官方 Azure 存储 Blob 客户端库
- npm
- Yarn
- pnpm
npm install @langchain/community @langchain/core @azure/storage-blob
yarn add @langchain/community @langchain/core @azure/storage-blob
pnpm add @langchain/community @langchain/core @azure/storage-blob
用法
配置好 Unstructured 后,您可以使用 Azure Blob 存储容器加载器来加载文件,然后将其转换为文档。
import { AzureBlobStorageContainerLoader } from "@langchain/community/document_loaders/web/azure_blob_storage_container";
const loader = new AzureBlobStorageContainerLoader({
azureConfig: {
connectionString: "",
container: "container_name",
},
unstructuredConfig: {
apiUrl: "http://localhost:8000/general/v0/general",
apiKey: "", // this will be soon required
},
});
const docs = await loader.load();
console.log(docs);
API 参考
- AzureBlobStorageContainerLoader 来自
@langchain/community/document_loaders/web/azure_blob_storage_container