From 06090116504d009e4f77577f1771e8aac0b51ef2 Mon Sep 17 00:00:00 2001 From: Haiping Chen Date: Wed, 20 Mar 2024 10:38:56 -0500 Subject: [PATCH] RouteToAgentRoutingHandler --- .../Routing/Handlers/RouteToAgentRoutingHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Infrastructure/BotSharp.Core/Routing/Handlers/RouteToAgentRoutingHandler.cs b/src/Infrastructure/BotSharp.Core/Routing/Handlers/RouteToAgentRoutingHandler.cs index 462ee076..1b8cb284 100644 --- a/src/Infrastructure/BotSharp.Core/Routing/Handlers/RouteToAgentRoutingHandler.cs +++ b/src/Infrastructure/BotSharp.Core/Routing/Handlers/RouteToAgentRoutingHandler.cs @@ -10,7 +10,7 @@ public class RouteToAgentRoutingHandler : RoutingHandlerBase, IRoutingHandler public List Parameters => new List { - new ParameterPropertyDef("next_action_reason", "the reason why route to this agent, if user is replying last agent's question, you must route to this agent") + new ParameterPropertyDef("next_action_reason", "the reason why route to this agent") { Required = true }, @@ -22,7 +22,7 @@ public class RouteToAgentRoutingHandler : RoutingHandlerBase, IRoutingHandler { Required = true }, - new ParameterPropertyDef("user_goal_agent", "agent who can achieve user original goal") + new ParameterPropertyDef("user_goal_agent", "user original goal") { Required = true },