16 lines
625 B
C#
16 lines
625 B
C#
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";
|
|
public const string NEXT_ACTION_AGENT = "next_action_agent";
|
|
public const string NEXT_ACTION_REASON = "next_action_reason";
|
|
public const string USER_GOAL_AGENT = "user_goal_agent";
|
|
public const string AGENT_REDIRECTION_REASON = "agent_redirection_reason";
|
|
|
|
public const string LANGUAGE = "language";
|
|
|
|
public const string SUB_CONVERSATION_ID = "sub_conversation_id";
|
|
}
|