8 lines
235 B
C#
8 lines
235 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";
|
||
|
|
}
|