agent-state-service.ts 241 B

1234567
  1. import ActionType from "#/types/action-type";
  2. import AgentState from "#/types/agent-state";
  3. export const generateAgentStateChangeEvent = (state: AgentState) => ({
  4. action: ActionType.CHANGE_AGENT_STATE,
  5. args: { agent_state: state },
  6. });