address copilot initial feedback

This commit is contained in:
SergeyMenshykh
2026-04-22 12:51:51 +01:00
Unverified
parent 373482427c
commit 8d208f3bb3
10 changed files with 366 additions and 11 deletions
@@ -159,14 +159,14 @@ internal static class HostAgentFactory
agentInterfaces.AddRange(agentUrls.Select(url => new AgentInterface
{
Url = url,
ProtocolBinding = "JSONRPC",
ProtocolBinding = ProtocolBindingNames.JsonRpc,
ProtocolVersion = "1.0",
}));
agentInterfaces.AddRange(agentUrls.Select(url => new AgentInterface
{
Url = url,
ProtocolBinding = "HTTP+JSON",
ProtocolBinding = ProtocolBindingNames.HttpJson,
ProtocolVersion = "1.0",
}));
@@ -1,6 +1,5 @@
// Copyright (c) Microsoft. All rights reserved.
using A2A.AspNetCore;
using AgentWebChat.AgentHost;
using AgentWebChat.AgentHost.Custom;
using AgentWebChat.AgentHost.Utilities;