diff --git a/rasa/cdu/command_generator/llm_command_generator.py b/rasa/cdu/command_generator/llm_command_generator.py index cdfd5d6af63a..a3711f0df9b7 100644 --- a/rasa/cdu/command_generator/llm_command_generator.py +++ b/rasa/cdu/command_generator/llm_command_generator.py @@ -13,8 +13,6 @@ CancelFlowCommand, StartFlowCommand, HumanHandoffCommand, - ListenCommand, - CorrectSlotCommand, ) from rasa.core.policies.flow_policy import FlowStack @@ -189,7 +187,7 @@ def parse_commands(cls, actions: Optional[str]) -> List[Command]: chitchat_re = re.compile(r"ChitChat\(\)") knowledge_re = re.compile(r"KnowledgeAnswer\(\)") humand_handoff_re = re.compile(r"HumandHandoff\(\)") - listen_re = re.compile(r"Listen\(\)") + # listen_re = re.compile(r"Listen\(\)") for action in actions.strip().splitlines(): if m := slot_set_re.search(action):