From b5af522a48d09783e356cc99d9237e8d3c28be8e Mon Sep 17 00:00:00 2001 From: Tom Bocklisch Date: Tue, 25 Jul 2023 12:20:50 +0200 Subject: [PATCH] fixed issue --- rasa/cdu/command_generator/llm_command_generator.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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):