Microsoft.Agents.Storage.CosmosDb 0.2.171-alpha

Prefix Reserved
This is a prerelease version of Microsoft.Agents.Storage.CosmosDb.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Microsoft.Agents.Storage.CosmosDb --version 0.2.171-alpha
                    
NuGet\Install-Package Microsoft.Agents.Storage.CosmosDb -Version 0.2.171-alpha
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Microsoft.Agents.Storage.CosmosDb" Version="0.2.171-alpha" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Agents.Storage.CosmosDb" Version="0.2.171-alpha" />
                    
Directory.Packages.props
<PackageReference Include="Microsoft.Agents.Storage.CosmosDb" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Agents.Storage.CosmosDb --version 0.2.171-alpha
                    
#r "nuget: Microsoft.Agents.Storage.CosmosDb, 0.2.171-alpha"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Microsoft.Agents.Storage.CosmosDb&version=0.2.171-alpha&prerelease
                    
Install Microsoft.Agents.Storage.CosmosDb as a Cake Addin
#tool nuget:?package=Microsoft.Agents.Storage.CosmosDb&version=0.2.171-alpha&prerelease
                    
Install Microsoft.Agents.Storage.CosmosDb as a Cake Tool

Microsoft.Agents.Storage.CosmosDb

About

  • A bot is inherently stateless. Once your bot is deployed, it may not run in the same process or on the same machine from one turn to the next. However, your bot may need to track the context of a conversation so that it can manage its behavior and remember answers to previous questions. The state and storage features of the Agents SDK allow you to add state to your bot.
  • Microsoft.Agents.State use Storage to persist state to memory, Azure Blobs, or CosmosDb.

Main Types

  • CosmosDbPartitionedStorage
  • CosmosDbPartitionedStorageOptions

Registering CosmosDbPartitionedStorage

appsettings.json

{
  "CosmosDbPartitionedStorageOptions": {
    "CosmosDbEndpoint": "{db_endpoint}",
    "DatabaseId": "{db_id}",
    "ContainerId": "{container_id}"
  }
}

Program.cs

builder.Services.AddSingleton<IStorage>((sp) => new CosmosDbPartitionedStorage(
    builder.Configuration.GetSection(nameof(CosmosDbPartitionedStorageOptions))
        .Get<CosmosDbPartitionedStorageOptions>()));

CosmosDbPartitionedStorageOptions.AuthKey or CosmosDbPartitionedStorageOptions.TokenCredential should be defined.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.290-alpha 0 4/8/2025
0.2.287-alpha 48 4/5/2025
0.2.286-alpha 86 4/4/2025
0.2.282-alpha 128 4/3/2025
0.2.277-alpha 119 4/1/2025
0.2.271-alpha 70 3/29/2025
0.2.267-alpha 96 3/28/2025
0.2.257-alpha 107 3/27/2025
0.2.180-alpha 438 3/26/2025
0.2.171-alpha 84 3/21/2025
0.2.162-alpha 119 3/19/2025
0.2.154-alpha 116 3/18/2025
0.2.153-alpha 46 3/15/2025
0.2.151-alpha 86 3/14/2025
0.2.146-alpha 131 3/12/2025
0.2.141-alpha 144 3/8/2025
0.2.137-alpha 182 3/7/2025