BotSharp/src/Infrastructure/BotSharp.Abstraction/Infrastructures/Enums/StateConst.cs

11 lines
428 B
C#
Raw Normal View History

2024-03-29 16:46:48 +00:00
namespace BotSharp.Abstraction.Infrastructures.Enums;
public class StateConst
{
public const string EXPECTED_ACTION_AGENT = "expected_next_action_agent";
public const string EXPECTED_GOAL_AGENT = "expected_user_goal_agent";
2024-03-31 00:48:13 +00:00
public const string NEXT_ACTION_AGENT = "next_action_agent";
2024-04-08 03:15:51 +00:00
public const string NEXT_ACTION_REASON = "next_action_reason";
2024-03-31 00:48:13 +00:00
public const string USER_GOAL_AGENT = "user_goal_agent";
2024-03-29 16:46:48 +00:00
}