From 52e6e989ecfa6feb2fc9acc214b6317233cfe1e4 Mon Sep 17 00:00:00 2001 From: westey <164392973+westey-m@users.noreply.github.com> Date: Wed, 7 Jan 2026 16:59:22 +0000 Subject: [PATCH] Make A2AAgent public, so that it's concrete implementation methods can be used. --- dotnet/src/Microsoft.Agents.AI.A2A/A2AAgent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/Microsoft.Agents.AI.A2A/A2AAgent.cs b/dotnet/src/Microsoft.Agents.AI.A2A/A2AAgent.cs index cf88a89177..42f92be1b1 100644 --- a/dotnet/src/Microsoft.Agents.AI.A2A/A2AAgent.cs +++ b/dotnet/src/Microsoft.Agents.AI.A2A/A2AAgent.cs @@ -24,7 +24,7 @@ namespace Microsoft.Agents.AI.A2A; /// Support for tasks will be added later as part of the long-running /// executions work. /// -internal sealed class A2AAgent : AIAgent +public sealed class A2AAgent : AIAgent { private readonly A2AClient _a2aClient; private readonly string? _id;