Merge pull request #352 from hchen2020/master

RouteToAgentRoutingHandler
This commit is contained in:
C. Oceania 2024-03-20 10:39:59 -05:00 committed by GitHub
commit 2dc00006a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,7 +10,7 @@ public class RouteToAgentRoutingHandler : RoutingHandlerBase, IRoutingHandler
public List<ParameterPropertyDef> Parameters => new List<ParameterPropertyDef>
{
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
},