Azure Blobs IStorage for the Microsoft Agents SDK
$ dotnet add package Microsoft.Agents.Storage.Blobs| Version | Date | Changelog |
|---|---|---|
| 1.2.0 | 2025-08-19 | Detailed Changelog |
| 1.3.0 | 2025-10-22 | Detailed Changelog |
{
"BlobsStorageOptions": {
"ConnectionString": "{blobs_connection_string}",
"ContainerName": "{blobs_container_name}"
}
}
builder.Services.AddSingleton<IStorage>((sp) => new BlobsStorage(
builder.Configuration["BlobsStorageOptions:ConnectionString"],
builder.Configuration["BlobsStorageOptions:ContainerName"]));
See the other BlobsStorage constructors for additional options.