Align skill naming (#1207)

Fixing what looks like a simple copy-paste naming issue
This commit is contained in:
Andrew Nikolin
2025-10-06 03:43:04 -04:00
committed by GitHub
Unverified
parent 8bd3e11d3e
commit 4c5c6d0f98
@@ -89,7 +89,7 @@ internal static class HostAgentFactory
PushNotifications = false,
};
var invoiceQuery = new AgentSkill()
var policyQuery = new AgentSkill()
{
Id = "id_policy_agent",
Name = "PolicyAgent",
@@ -109,7 +109,7 @@ internal static class HostAgentFactory
DefaultInputModes = ["text"],
DefaultOutputModes = ["text"],
Capabilities = capabilities,
Skills = [invoiceQuery],
Skills = [policyQuery],
};
}