Azure Blob 存储文件
兼容性
仅在 Node.js 上可用。
这涵盖了如何将 Azure 文件加载到 LangChain 文档中。
设置
要使用此加载器,您需要已设置 Unstructured 并准备好在可用的 URL 终结点使用它。 它也可以配置为在本地运行。
查看文档 此处 获取有关如何执行此操作的信息。
您还需要安装官方 Azure Storage 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 { AzureBlobStorageFileLoader } from "@langchain/community/document_loaders/web/azure_blob_storage_file";
const loader = new AzureBlobStorageFileLoader({
azureConfig: {
connectionString: "",
container: "container_name",
blobName: "example.txt",
},
unstructuredConfig: {
apiUrl: "http://localhost:8000/general/v0/general",
apiKey: "", // this will be soon required
},
});
const docs = await loader.load();
console.log(docs);
API 参考
- AzureBlobStorageFileLoader 来自
@langchain/community/document_loaders/web/azure_blob_storage_file