PragmaticAgents.Runtime
0.1.11
dotnet add package PragmaticAgents.Runtime --version 0.1.11
NuGet\Install-Package PragmaticAgents.Runtime -Version 0.1.11
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="PragmaticAgents.Runtime" Version="0.1.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PragmaticAgents.Runtime" Version="0.1.11" />
<PackageReference Include="PragmaticAgents.Runtime" />
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 PragmaticAgents.Runtime --version 0.1.11
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: PragmaticAgents.Runtime, 0.1.11"
#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.
#:package PragmaticAgents.Runtime@0.1.11
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=PragmaticAgents.Runtime&version=0.1.11
#tool nuget:?package=PragmaticAgents.Runtime&version=0.1.11
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
StrandsAgents.Runtime
Deploy any Strands Agents .NET agent to Amazon Bedrock AgentCore Runtime with one line. Optionally use AgentCore managed services — Memory, Browser, and Code Interpreter — as tools your agent can invoke.
dotnet add package StrandsAgents.Runtime
Your agent code is unchanged
using StrandsAgents.Runtime.Hosting;
using StrandsAgents.Runtime.Extensions;
using StrandsAgents.Extensions.DI;
var builder = WebApplication.CreateBuilder(args);
builder.Services
.AddBedrockModel("us-east-1")
.AddAgentCoreBrowser()
.AddAgentCoreCodeInterpreter()
.AddAgentCoreSessionManager(
Environment.GetEnvironmentVariable("AGENTCORE_MEMORY_ID") ?? "")
.AddStrandsAgent("You are a helpful assistant.");
var app = builder.Build();
app.MapAgentCoreEndpoints(); // POST /invocations + GET /health
app.UseAgentCorePort(8080); // AgentCore Runtime expects port 8080
app.Run();
AgentCore Gateway
Connect your agent to tools hosted on an Amazon Bedrock AgentCore Gateway:
await using var gateway = await AgentCoreGatewayToolProvider.CreateAsync(
gatewayUrl: new Uri("https://...gateway-url.../mcp"),
auth: new AgentCoreGatewayAuth.Iam(region: "us-east-1"));
var tools = await gateway.ListToolsAsync();
var agent = new Agent(model, tools: tools);
Three auth modes: AgentCoreGatewayAuth.Iam, AgentCoreGatewayAuth.Bearer, AgentCoreGatewayAuth.None.
With DI:
builder.Services
.AddBedrockModel("us-east-1")
.AddAgentCoreGatewayTools(gatewayUrl, auth: new AgentCoreGatewayAuth.Iam("us-east-1"))
.AddStrandsAgent();
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- AWSSDK.BedrockAgentCore (>= 3.7.513.3)
- AWSSDK.Core (>= 3.7.501)
- PragmaticAgents.Core (>= 0.1.11)
- PragmaticAgents.Tools (>= 0.1.11)
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.1.11 | 92 | 5/20/2026 |