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-07-17 21:03:46 +00:00
|
|
|
public const string AGENT_REDIRECTION_REASON = "agent_redirection_reason";
|
2024-05-13 13:58:26 +00:00
|
|
|
|
|
|
|
|
public const string LANGUAGE = "language";
|
2025-02-10 23:28:03 +00:00
|
|
|
|
|
|
|
|
public const string SUB_CONVERSATION_ID = "sub_conversation_id";
|
2024-03-29 16:46:48 +00:00
|
|
|
}
|