我们已完成 1.25 亿美元的 B 轮融资,用于构建代理工程平台。阅读更多。
TypeScript
npm install @langchain/community @langchain/core @azure/storage-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: "https://:8000/general/v0/general", apiKey: "", // this will be soon required }, }); const docs = await loader.load(); console.log(docs);
此页面有帮助吗?