Rasa send empty message is it bug or not?

Hello, i am wonedring is that bug in rasa or i am doing something wrong.

in my flow i want the user whenever he says stop the conversation or any word related to the intent stop the flow, the bot ask him if he really want to stop or not as a confirmation message, if the user said yes the flow should stop and send goodbye message to the user. But if the user send no the bot keep the conversation, however if he in the form it should continue from the last slot he was filling.

i already implemented my idea through custom actions. but in first glance you think its working when the user says stop the flow and then says no, but if he said it again in the conversation the second time the bot doesn’t respond to the user. (in the interactive mode is working fine however in shell it doesnt send message)( i get empty response )

if its not bug what is the best solution to do same idea of confirmation the stopping the flow and return the user the same form in the same slot. Action_no_flow is the last step where issue occurs in the actions file

Actions file

import re
import rasa_sdk
import requests
from rasa_sdk.types import DomainDict
from rasa_sdk.executor import CollectingDispatcher
from typing import Any, Text, Dict, List
from rasa_sdk import FormValidationAction , Action, Tracker
from rasa_sdk.events import EventType, AllSlotsReset, SlotSet, FollowupAction, ActiveLoop ,Restarted ,ActionExecuted

from datetime import datetime


forms_name= ['network_complains_form']
issue_type_list ={  'voice':"Please choose the digit related to your voice problem:\n"
                            "1. Can not initiate Call (Call Block)\n"
                            "2. Can not hear other party at all since call start (Silent Call)\n"
                            "3. Can not hear other party well (Call Quality)\n"
                            "4. Calls drop in the middle of the call (Call Drop)\n"
                            "5. Others" ,
                     "data":"Please choose the digit related to your data problem:\n"
                            "1. Can not initiate any data session at all\n"
                            "2. Can not download any video or image\n"
                            "3. Slow Speed in browsing or streaming\n"
                            "4.Can not connect to certain applications/servers/links\n"
                            "5. Others\n" ,
                     "both":"Please choose the digit related to your voice problem:\n"
                            "1. Can not initiate Call (Call Block)\n"
                            "2. Can not hear other party at all since call start (Silent Call)\n"
                            "3. Can not hear other party well (Call Quality)\n"
                            "4. Calls drop in the middle of the call (Call Drop)\n"
                            "5. Others"
                  }
translate_issue_type_list ={ 'voice':"الرجاء اختيار الرقم المتعلق بمشكلة الصوت الخاصة بك: \n "
                                      "1. لا يمكن بدء الاتصال (حظر المكالمة) \n"
                                      "2. لا يمكن سماع الطرف الآخر على الإطلاق منذ بدء المكالمة (اتصال صامت) \n"
                                      "3. لا يمكن سماع الطرف الآخر جيدًا (جودة المكالمة) \n"
                                      "4. سقوط المكالمات في منتصف المكالمة (سقوط المكالمه) \n"
                                      "5. أخرى" ,
                             "data":"الرجاء اختيار الرقم المتعلق بمشكلة البانات لديك: \n"
                                    "1. لا يمكن بدء أي جلسة بيانات على الإطلاق \n"
                                    "2. لا يمكن تنزيل أي فيديو أو صورة \n"
                                    "3. سرعة بطيئة في التصفح أو البثة \n"
                                    "4. لا يمكن الاتصال بتطبيقات / خوادم / روابط معينة \n"
                                    "5. اخرى\n" ,
                            "both":"الرجاء اختيار الرقم المتعلق بمشكلة الصوت الخاصة بك:\n "
                                    "1. لا يمكن بدء الاتصال (حظر المكالمة)\n"
                                    "2. لا يمكن سماع الطرف الآخر على الإطلاق منذ بدء المكالمة (الاتصال الصامت)\n"
                                    "3. لا يمكن سماع الطرف الآخر جيدًا (جودة المكالمة)\n"
                                    "4. انخفاض المكالمات في منتصف المكالمة (سقوط مكالمه)\n"
                                    "5. اخرى"
                  }
En = 0
Ar = 0
last_correct_value = None
language_change_based_on_user_input = True

def check_language(word):
    global En
    global Ar
    if language_change_based_on_user_input == True:
        if word.isnumeric() == False:
            if word.isascii() == True:
                En = En + 1
            else:
                Ar = Ar + 1
    else:
        if word.isnumeric() == False:
            if word.isascii() == True:
                En = 1
                Ar = 0
            else:
                Ar = 1
                En = 0

form_running =""

class Validate_stop_the_flow_answer_form(FormValidationAction):

    def name(self) -> Text:
        return "validate_stop_the_flow_answer_form"

    def validate_stop_the_flow_answer(self,slot_value:str, dispatcher: CollectingDispatcher,tracker: Tracker, domain: DomainDict) -> List[Dict[Text, Any]]:
        global form_running
        # last_form_was_running = form_running
        # form_running = 'stop_the_flow_answer_form'
        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "affirm":
            return {"stop_the_flow_answer": 'yes'}

        elif last_intent == "deny":
            return {"stop_the_flow_answer": 'no'}
        #
        # elif slot_value in forms_name:
        #     return {"stop_the_flow_answer":slot_value}
        else:
            return {"stop_the_flow_answer": None}
class Validate_change_language_form(FormValidationAction):

    def name(self) -> Text:
        return "validate_change_language_form"

    def validate_language(self,slot_value:any, dispatcher: CollectingDispatcher,
                              tracker: Tracker,
                              domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:
        global En
        global Ar
        last_entity_list = tracker.latest_message['entities']
        if len(last_entity_list) > 0:
            entity_name = last_entity_list[0]['entity']
            if entity_name == 'language':
                slot_value = last_entity_list[0]['value']
        print("i am in val")
        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow" or last_intent =='negative_words':
            return {"requested_slot": None, "restart": "stop"}

        if slot_value == "En" or slot_value == "انجليزى":
            En = En + 1000
            Ar = 0
            return {"language": slot_value }
        elif slot_value == "Ar" or slot_value=="عربى":
            print("i am here")
            Ar = Ar + 1000
            En = 0
            return {"language": slot_value }
        else:
            if En > Ar:
                dispatcher.utter_message('select langague XX_OPTION_XX(En) XX_OPTION_XX(Ar)')
                return {"language": None}
            elif En <= Ar:
                dispatcher.utter_message('اختار اللغهXX_OPTION_XX(عربى) XX_OPTION_XX(انجليزى)')
                return {"language": None}
class Action_ask_language(Action):

    def name(self) -> Text:
        return "action_ask_language"

    def run(self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)

        if En > Ar:
             dispatcher.utter_message('Kindly choose the language you want XX_OPTION_XX(En) XX_OPTION_XX(Ar)')
        elif En <= Ar:
             dispatcher.utter_message('من فضلك قم باختيار اللغةXX_OPTION_XX(عربى) XX_OPTION_XX(انجليزى)')
class Action_ask_stop_the_flow_answer(Action):

    def name(self) -> Text:
        return "action_ask_stop_the_flow_answer"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)

        if En > Ar:
             dispatcher.utter_message('Want to stop the converstion XX_OPTION_XX(yes) XX_OPTION_XX(no)')
        elif En <= Ar:
             dispatcher.utter_message('عاوز توقف الحوارXX_OPTION_XX(لا) XX_OPTION_XX(نعم)')
class Validate_network_complains_form(FormValidationAction):

    def name(self) -> Text:
        return "validate_network_complains_form"

    def validate_issue_number(self,slot_value:str, dispatcher: CollectingDispatcher,tracker: Tracker, domain: DomainDict) -> List[Dict[Text, Any]]:
        global form_running
        global last_correct_value
        form_running = 'network_complains_form'

        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow" :
            return {"requested_slot": None, "restart": "stop"}

        if slot_value != '1' and slot_value != '2' and slot_value != '3' and slot_value != '١' and slot_value != '٢' and slot_value != '٣':
            if En > Ar:
                dispatcher.utter_message('please choose number from list')
                return {"issue_number": None}
            elif En <= Ar:
                dispatcher.utter_message("اختار رقم من القائمه")
                return {"issue_number": None}
        else:
                return {"issue_number": slot_value}

    def validate_issue_date(self,slot_value:any, dispatcher: CollectingDispatcher,
                              tracker: Tracker,
                              domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:
        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow" :
            return {"requested_slot": None, "restart": "stop" }
        if slot_value == "":
            if En > Ar:
                dispatcher.utter_message("you need to put issue date")
                return {"issue_date": None}
            elif En <= Ar:
                dispatcher.utter_message("محتاج تقول تاريخ ")
                return {"issue_date": None}
        else:
            return {'issue_date': slot_value}

    def validate_issue_type(self,slot_value:any, dispatcher: CollectingDispatcher,
                      tracker: Tracker,
                      domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:

        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow" :
            return {"requested_slot": None, "restart": "stop"}

        last_entity_list = tracker.latest_message['entities']
        if len(last_entity_list) > 0:
            entity_name = last_entity_list[0]['entity']
            if entity_name == 'issue_type':
                slot_value = last_entity_list[0]['value']
        slot_value = slot_value.lower()
        if slot_value == 'data' or slot_value == 'voice' :
            return {'issue_type': slot_value , 'number_2': "" , 'comment_2': ""}
        elif slot_value == '1' or slot_value == '١' :
            return {'issue_type': "voice" , 'number_2': "" , 'comment_2': ""}
        elif slot_value == '2' or slot_value == '٢' :
            return {'issue_type': "data"  , 'number_2': "" , 'comment_2': ""}
        elif slot_value == 'both':
            return {'issue_type': slot_value}
        elif slot_value == '3' or slot_value == '٣' :
            return {'issue_type': 'both'}
        else:
            if En > Ar:
                dispatcher.utter_message(text="you need to put issue type ")
                return {"issue_type": None}
            elif En <= Ar:
                dispatcher.utter_message(text="محتاج تقول نوع المشكله")
                return {"issue_type": None}

    def validate_number_1(self,slot_value:any, dispatcher: CollectingDispatcher,
                      tracker: Tracker,
                      domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:

        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow" :
            return {"requested_slot": None, "restart": "stop"}

        issue_type = tracker.get_slot("issue_type")
        if (slot_value =='5' or slot_value =="٥") and issue_type == 'voice':
            return {'number_1':slot_value}
        elif (slot_value =='4' or slot_value =='5' or slot_value == '٤' or slot_value =="٥") and issue_type == 'data':
            return {'number_1': slot_value}
        elif (slot_value =='5' or slot_value =="٥") and issue_type == 'both':
            return {'number_1': slot_value}
        elif (slot_value == "1" or slot_value == '2' or slot_value == '3' or slot_value == '4' or slot_value == "١" or slot_value == '٢' or slot_value == '٣' or slot_value == '٤') and issue_type == 'both':
            return {'number_1': slot_value, 'comment_1': ""}
        elif slot_value == "1" or slot_value == '2' or slot_value == '3' or slot_value == '4' or slot_value == "١" or slot_value == '٢' or slot_value == '٣' or slot_value == '٤':
            return {'number_1':slot_value, 'comment_1':""}
        else:
            if En > Ar:
                dispatcher.utter_message(text="you need to put number")
                return {"number_1": None}
            elif En <= Ar:
                dispatcher.utter_message(text="محتاج تقول رقم")
                return {"number_1": None}
    def validate_comment_1(self,slot_value:any, dispatcher: CollectingDispatcher,
                      tracker: Tracker,
                      domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:
        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow":
            return {"requested_slot": None, "restart": "stop"}
        else:
            return {"comment_1": slot_value}
    def validate_number_2(self,slot_value:any, dispatcher: CollectingDispatcher,
                      tracker: Tracker,
                      domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:
        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow" :
            return {"requested_slot": None, "restart": "stop"}

        if slot_value == '1' or slot_value == '2' or slot_value == '3'  or slot_value == "١" or slot_value == '٢' or slot_value == '٣':
            return {'number_2': slot_value , 'comment_2':""}
        elif slot_value == '4' or slot_value == '5'  or slot_value == "٤" or slot_value == '٥':
            return {'number_2': slot_value}
        else:
            if En > Ar:
                dispatcher.utter_message(text="you need to put number ")
                return {"number_2": None}
            elif En <= Ar:
                dispatcher.utter_message(text="محتاج تقول رقم")
                return {"number_2": None}
    def validate_comment_2(self,slot_value:any, dispatcher: CollectingDispatcher,
                      tracker: Tracker,
                      domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:
        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow" :
            return {"requested_slot": None, "restart": "stop"}
        else:
            return {"comment_2": slot_value}
    def validate_location(self,slot_value:any, dispatcher: CollectingDispatcher,
                      tracker: Tracker,
                      domain: Dict[Text, Any]) -> List[Dict[Text, Any]]:
        last_intent = tracker.get_intent_of_latest_message()
        if last_intent == "stop_the_flow" :
            return {"requested_slot": None, "restart": "stop"}


        slot_value = slot_value.split(",")
        if 'latitude' in slot_value[0] and 'longitude' in slot_value[1]:
            slot_value = (f"({slot_value[0][9:]},{slot_value[1][10:]})")
            return {'location': slot_value}
        else:
            if En > Ar:
                dispatcher.utter_message(text="you need to put current location")
                return {"location": None}
            elif En <= Ar:
                dispatcher.utter_message(text="محتاج تبعت المكان الحالى")
                return {"location": None}


class Action_ask_issue_number(Action):

    def name(self) -> Text:
        return "action_ask_issue_number"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
             dispatcher.utter_message(text='Please choose the digit related to your'
                                           ' problem (1,2,3)\n'
                                           '1.Indoor Only\n'
                                           '2.Outdoor Only\n'
                                           '3.Both\n'
                                           ' XX_OPTION_XX(1) XX_OPTION_XX(2) XX_OPTION_XX(3)')
        elif En <= Ar:
             dispatcher.utter_message(text='من فضلك اختار رقم له علاقه بمشكلتك (1,2,3) \n'
                                           '1-مشكله داخليه فقط\n'
                                           '2-مشكله خارجيه فقط\n'
                                           '3-الاتنين\n'
                                           'XX_OPTION_XX(1) XX_OPTION_XX(2) XX_OPTION_XX(3)')
        return []
class Action_ask_issue_date(Action):

    def name(self) -> Text:
        return "action_ask_issue_date"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
             dispatcher.utter_message(text='what is the issue date ?')
        elif En <= Ar:
             dispatcher.utter_message(text='ايه هو تاريخ المشكله ؟')
        return []


class Action_ask_issue_type(Action):

    def name(self) -> Text:
        return "action_ask_issue_type"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
             dispatcher.utter_message(text='write the issue type (voice,data,both)'
                                           ' XX_OPTION_XX(voice) XX_OPTION_XX(data) XX_OPTION_XX(both)')
        elif En <= Ar:
             dispatcher.utter_message(text='اكتب نوع المشكله(صوتى ولا معلومات ولا الاتنين)XX_OPTION_XX'
                                           '(صوتى) XX_OPTION_XX(داتا) XX_OPTION_XX(الاتنين)')
        return []

class Action_ask_number_1(Action):

    def name(self) -> Text:
        return "action_ask_number_1"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)
        issue_type= tracker.get_slot('issue_type')
        if En > Ar:
             dispatcher.utter_message(issue_type_list[issue_type])
        elif En <= Ar:
             dispatcher.utter_message(translate_issue_type_list[issue_type])
        return []

class Action_ask_comment_1(Action):

    def name(self) -> Text:
        return "action_ask_comment_1"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)
        number = tracker.get_slot('number_1')
        issue_type = tracker.get_slot('issue_type')
        if number == '5' and issue_type =="voice":
            if En > Ar:
                 dispatcher.utter_message(text='Please provide voice problem type')
            elif En <= Ar:
                 dispatcher.utter_message(text='اكتب المشكله الصوت لو سمحت ')
        elif number == '5'  and issue_type =="data":
            if En > Ar:
                 dispatcher.utter_message(text='Please provide data problem type')
            elif En <= Ar:
                 dispatcher.utter_message(text='اكتب المشكله الصوت لو سمحت ')
        elif number == '5' :
            if En > Ar:
                 dispatcher.utter_message(text='Please provide voice problem type')
            elif En <= Ar:
                 dispatcher.utter_message(text='اكتب المشكله الصوت لو سمحت ')
        elif number == "4":
            if En > Ar:
                 dispatcher.utter_message(text='Please specify application/server/link name')
            elif En <= Ar:
                 dispatcher.utter_message(text='اكتب المواقع او اللينكات اللى مش شغاله ')
class Action_ask_number_2(Action):

    def name(self) -> Text:
        return "action_ask_number_2"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)
        # issue_type= tracker.get_slot('issue_type')
        if En > Ar:
             dispatcher.utter_message(issue_type_list['data'])
        elif En <= Ar:
             dispatcher.utter_message(translate_issue_type_list['data'])
        return []
class Action_ask_comment_2(Action):

    def name(self) -> Text:
        return "action_ask_comment_2"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)
        number = tracker.get_slot('number_2')
        if number == '5':
            if En > Ar:
                 dispatcher.utter_message(text='Please provide data problem type')
            elif En <= Ar:
                 dispatcher.utter_message(text='اكتب مشكله البيانات لو سمحت ')
        elif number == "4":
            if En > Ar:
                 dispatcher.utter_message(text='Please specify application/server/link name')
            elif En <= Ar:
                 dispatcher.utter_message(text='اكتب المواقع او اللينكات اللى مش شغاله ')
class Action_ask_location(Action):

    def name(self) -> Text:
        return "action_ask_location"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)

        if En > Ar:
             dispatcher.utter_message('Please share the problem location as a final step')
        elif En <= Ar:
             dispatcher.utter_message('لو سمحت شارك معانا مكانك كخطوه اخيره')

class Action_response_final_answer(Action):

    def name(self) -> Text:
        return "response_final_answer"

    def run(
            self, dispatcher: CollectingDispatcher, tracker: Tracker, domain: Dict
    ) -> List[EventType]:
        sentence = tracker.latest_message['text']
        check_language(sentence)
        restart = tracker.get_slot("restart")
        last_intent = tracker.get_intent_of_latest_message()
        if restart == "stop" and last_intent=="stop_the_flow":
            return [FollowupAction("stop_the_flow_answer_form")]
        elif restart == "stop" and last_intent=="negative_words":
            return [FollowupAction("response_negative_words")]
        if En > Ar:
             dispatcher.utter_message('Sorry for any inconvenience and thanks for submitting your network complaint.'
                                           ' We will come back to you the soonest with our feedback to your problem.XX_OPTION_XX(network issue)')
             return [AllSlotsReset()]
        elif En <= Ar:
             dispatcher.utter_message('آسف على أي إزعاج وشكرا على تقديم شكوى الشبكة الخاصة بك. سنعود إليك في أقرب وقت مع ملاحظاتنا لمشكلتك XX_OPTION_XX(مشكله شبكه)')
             return [AllSlotsReset()]
class Action_confirm_network_complains_slots(Action):

    def name(self) -> Text:
        return "response_confirm_network_complains_slots"

    def run(self, dispatcher, tracker, domain):
        sentence = tracker.latest_message['text']
        check_language(sentence)
        issue_number = tracker.get_slot('issue_number')
        issue_date   = tracker.get_slot('issue_date')
        issue_type   = tracker.get_slot('issue_type')
        if En > Ar:
            return dispatcher.utter_message(f'The issue_number is  {issue_number},and the date'
                                            f'{issue_date},and the type {issue_type} .')
        elif En <= Ar:
            return dispatcher.utter_message(f'رقم المشكله هو {issue_number}'
                                            f'{issue_date} و تاريخ المشكله هو '
                                            f'و نوع المشكله هو {issue_type}')
class ActionGreet(Action):

    def name(self) -> Text:
        return "response_greet"

    def run(self, dispatcher, tracker, domain):
        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
            print(tracker.sender_id)
            return dispatcher.utter_message('Hi, this is Lissa from Etisalat Technical team '
                                            'May I assist you in your network complaint? '
                                            'XX_OPTION_XX(yes) XX_OPTION_XX(no)')

        elif En <= Ar:
            return dispatcher.utter_message('اهلا انا ليزا من اتصالات تيكنكال تيم '
                                            'اقدر اساعد حضرتك فى مشكله الشبكه ؟'
                                            ' XX_OPTION_XX(نعم) XX_OPTION_XX(لا)')
class ActionGoodbye(Action):

    def name(self) -> Text:
        return "response_goodbye"

    def run(self, dispatcher, tracker, domain):
        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
            return dispatcher.utter_message('Thank you for using Etisalat')
        elif En <= Ar:
            return dispatcher.utter_message('شكرا لاستخدامك اتصالات')
class Action_response_rephrase(Action):

    def name(self) -> Text:
        return "response_rephrase"

    def run(self, dispatcher, tracker, domain):
        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
            return dispatcher.utter_message('please re-phrase')
        elif En <= Ar:
            return dispatcher.utter_message('عيد الجمله من فضلك')
class ActionReset_all_slots(Action):

    def name(self) -> Text:
        return "reset_all_slots"

    def run(self, dispatcher, tracker, domain):

        return [AllSlotsReset()]
class ActionRefill(Action):

    def name(self) -> Text:
        return "response_refill"

    def run(self, dispatcher, tracker, domain):
        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
            return dispatcher.utter_message('please re-filli the form.')
        elif En <= Ar:
            return dispatcher.utter_message('ابد العمليه من جديد.')
class ActionConfrim(Action):

    def name(self) -> Text:
        return "response_confrim"

    def run(self, dispatcher, tracker, domain):
        sentence = tracker.latest_message['text']
        check_language(sentence)
        intent = tracker.get_intent_of_latest_message()
        if intent == 'affirm':
            if En > Ar:
                dispatcher.utter_message('ok sending the form')
                return [AllSlotsReset()]
            elif En <= Ar:
                dispatcher.utter_message('تمام ببعت الفورم دلوقتى')
                return [AllSlotsReset()]
        if intent == 'deny':
            if En > Ar:
                dispatcher.utter_message('please re-fill the form.')
                return [AllSlotsReset(),rasa_sdk.events.FollowupAction(form_running)]
            elif En <= Ar:
                dispatcher.utter_message('ابد العمليه من جديد.')
                return [AllSlotsReset(),rasa_sdk.events.FollowupAction(form_running)]
class ActionIssue_type_list(Action):

    def name(self) -> Text:
        return "response_Issue_type_list"

    def run(self, dispatcher, tracker, domain):
        sentence = tracker.latest_message['text']
        check_language(sentence)
        issue_type   = tracker.get_slot('issue_type')
        if En > Ar:
            return dispatcher.utter_message(issue_type_list[issue_type])
        elif En <= Ar:
            return dispatcher.utter_message(translate_issue_type_list[issue_type])
class Action_time(Action):

    def name(self) -> Text:
        return "response_time"

    def run(self, dispatcher, tracker, domain):

        sentence = tracker.latest_message['text']
        check_language(sentence)
        now = datetime.now()
        if En > Ar:
            return dispatcher.utter_message("the time and date is : " + now.strftime('%Y/%m/%d %I:%M:%S'))
        elif En <= Ar:
            return dispatcher.utter_message("الوقت و التاريح هو : "+ now.strftime('%Y/%m/%d %I:%M:%S'))
        return []
class Action_who_are_you(Action):

    def name(self) -> Text:
        return "response_who_are_you"

    def run(self, dispatcher, tracker, domain):

        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
            return dispatcher.utter_message("My name is Chatbot, I am built on Artificial Intelligence technologies"
                                            "to serve etisalat employees. I am not a human, So I don't really have any certain physical"
                                            "features")
        elif En <= Ar:
            return dispatcher.utter_message("اسمي شات بوت ،اتبنيت على تقنيات الذكاء الاصطناعي لخدمة موظفي اتصالات. "
                                            "أنا مش إنسانًا ، علشان كدا مليش أي سمات جسدية معينة")

class Action_no_flow(Action):

    def name(self) -> Text:
        return "response_no_flow"

    def run(self, dispatcher, tracker, domain):
        stop_the_flow_answer = tracker.get_slot('stop_the_flow_answer')

        if stop_the_flow_answer == 'no' or stop_the_flow_answer == 'لا' :
            return [FollowupAction(form_running)]
        elif stop_the_flow_answer == 'yes' or stop_the_flow_answer == 'نعم':
            return [FollowupAction("response_goodbye"),AllSlotsReset()]



class Action_language_changed(Action):

    def name(self) -> Text:
        return "response_language_changed"

    def run(self, dispatcher, tracker, domain):

        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
            return dispatcher.utter_message("The chat langauge has been changed to English")
        elif En <= Ar:
            return dispatcher.utter_message("تم تغير اللغة الى العربيه")



class Action_out_of_scope(Action):

    def name(self) -> Text:
        return "response_out_of_scope"

    def run(self, dispatcher, tracker, domain):

        sentence = tracker.latest_message['text']
        check_language(sentence)
        print(tracker.latest_message)
        if En > Ar:
            return dispatcher.utter_message("sorry i didn't understand you")
        elif En <= Ar:
            return dispatcher.utter_message("اسف لم افهم ما قلت")


class Action_negative_words(Action):

    def name(self) -> Text:
        return "response_negative_words"

    def run(self, dispatcher, tracker, domain):

        sentence = tracker.latest_message['text']
        print(sentence)
        check_language(sentence)
        if En > Ar:
            dispatcher.utter_message("I am sorry you feel that way, how I can help you ?XX_OPTION_XX(network issue)")
            return [Restarted()]
        elif En <= Ar:
            dispatcher.utter_message("انا اسف لو مفهمتش حضرتك اقدر اساعدك ازاى ؟XX_OPTION_XX(مشكله شبكه)")
            return [Restarted()]

class Action_change(Action):

    def name(self) -> Text:
        return "action_changing_language"

    def run(self, dispatcher, tracker, domain):

        return[AllSlotsReset(),FollowupAction("response_language_changed")]

class Action_how_i_can_help(Action):

    def name(self) -> Text:
        return "response_how_i_can_help"

    def run(self, dispatcher, tracker, domain):

        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
            return dispatcher.utter_message("how I can help ? XX_OPTION_XX(network issue)")
        elif En <= Ar:
            return dispatcher.utter_message("اقدر اساعدك حضرتك ازاى ؟XX_OPTION_XX(مشكله شبكه)")

class Action_which_company(Action):

    def name(self) -> Text:
        return "response_which_company"

    def run(self, dispatcher, tracker, domain):

        sentence = tracker.latest_message['text']
        check_language(sentence)
        if En > Ar:
            dispatcher.utter_message("i am working for Etisalat")

        elif En <= Ar:
            dispatcher.utter_message("انا اعمل لشركه اتصالات")



Domain file

version: '3.0'
session_config:
  session_expiration_time: 60
  carry_over_slots_to_new_session: false
intents:
- affirm
- stop_the_flow
- greet
- goodbye
- deny
- network_complains
- digits
- out_of_scope
- what_is_the_time
- who_are_you
- negative_words
- network_complains_issue
- change_language
- which_company
entities:
- comment_1
- comment_2
- issue_date
- issue_number
- issue_type
- location
- number
- number_1
- number_2
- restart
- stop_the_flow_answer
- language
slots:
  issue_number:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      entity: issue_number
      conditions:
      - active_loop: network_complains_form
        requested_slot: issue_number
  issue_date:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      entity: issue_date
      conditions:
      - active_loop: network_complains_form
        requested_slot: issue_date
  issue_type:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      entity: issue_type
      conditions:
      - active_loop: network_complains_form
        requested_slot: issue_type
  number_1:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      entity: number
      conditions:
      - active_loop: network_complains_form
        requested_slot: number_1
  number_2:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      entity: number
      conditions:
      - active_loop: network_complains_form
        requested_slot: number_2
  comment_1:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      conditions:
      - active_loop: network_complains_form
        requested_slot: comment_1
  comment_2:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      conditions:
      - active_loop: network_complains_form
        requested_slot: comment_2
  location:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      conditions:
      - active_loop: network_complains_form
        requested_slot: location
  restart:
    type: text
    influence_conversation: false
    mappings:
    - type: from_entity
      entity: restart
  stop_the_flow_answer:
    type: text
    influence_conversation: true
    mappings:
    - type: from_text
      conditions:
      - active_loop: stop_the_flow_answer_form
        requested_slot: stop_the_flow_answer
  language:
    type: text
    influence_conversation: true
    mappings:
      - type: from_text
        entity: language
        conditions:
          - active_loop: change_language_form
            requested_slot: language
  requested_slot:
    type: any
    influence_conversation: false
    mappings: []
actions:
- action_ask_stop_the_flow_answer
- action_ask_comment_1
- action_ask_comment_2
- action_ask_issue_date
- action_ask_issue_number
- action_ask_issue_type
- action_ask_location
- action_ask_number_1
- action_ask_number_2
- action_ask_language
- action_changing_language
- response_Issue_type_list
- response_confirm_network_complains_slots
- response_confrim
- response_final_answer
- response_goodbye
- response_greet
- response_no_flow
- response_refill
- response_rephrase
- response_time
- response_which_company
- response_who_are_you
- response_language_changed
- response_out_of_scope
- response_negative_words
- response_how_i_can_help
- stop_the_flow
- validate_network_complains_form
- validate_stop_the_flow_answer_form
- validate_change_language_form
forms:
  network_complains_form:
    required_slots:
    - issue_number
    - issue_date
    - issue_type
    - number_1
    - comment_1
    - number_2
    - comment_2
    - location
  stop_the_flow_answer_form:
    required_slots:
      - stop_the_flow_answer
  change_language_form:
    required_slots:
      - language

stories file
version: "3.0"
stories:
- story: network_complain_issue_1
  steps:
    - intent: greet
    - action: response_greet
    - intent: affirm
    - action: network_complains_form
    - active_loop: network_complains_form
    - slot_was_set:
      - requested_slot: null
    - active_loop: null
    - action: response_final_answer


- story: network_complain
  steps:
    - intent: network_complains_issue
    - action: network_complains_form
    - active_loop: network_complains_form
    - slot_was_set:
      - requested_slot: null
    - active_loop: null
    - action: response_final_answer

- story: goodbye_2
  steps:
    - intent: greet
    - action: response_greet
    - intent: deny
    - action: response_goodbye

- story: goodbye
  steps:
    - intent: greet
    - action: response_greet
    - intent: goodbye
    - action: response_goodbye

- story: digits with no reason
  steps:
    - intent: digits
    - action: response_rephrase

- story: affirm with no reason
  steps:
    - intent: affirm
    - action: response_rephrase


- story: affirm with no reason
  steps:
    - intent: network_complains
    - action: response_rephrase

- story: ask for time
  steps:
    - intent: what_is_the_time
    - action: response_time

- story: who are you
  steps:
    - intent: who_are_you
    - action: response_who_are_you

- story: digits with no reason 2
  steps:
    - intent: greet
    - action: response_greet
    - intent: digits
    - action: response_rephrase

- story: network_complain_2
  steps:
    - intent: network_complains_issue
    - action: network_complains_form
    - active_loop: network_complains_form
    - slot_was_set:
      - requested_slot: null
    - active_loop: null
    - action: response_final_answer

- story: which_company
  steps:
    - intent: which_company
    - action: response_which_company


rule file 

version: "3.0"

rules:
#- rule: network complains Activate form
#  steps:
#    - action: network_complains_form
#    - active_loop: network_complains_form
#
#- rule: network complains submit
#  condition:
#    - active_loop: network_complains_form
#  steps:
#    - action: network_complains_form
#    - slot_was_set:
#      - requested_slot: null
#    - active_loop: null
#    - action: response_final_answer

#- rule: Ask the user to rephrase whenever they send a message with low NLU confidence
#  steps:
#  - action: action_default_fallback
#  - action: response_rephrase
#
#- rule: trigger human handoff with action_unlikely_intent
#  steps:
#    - intent: nlu_fallback
#    - action: response_rephrase
#
#- rule: trigger human handoff with action_unlikely_intent
#  steps:
#    - action: action_unlikely_intent
#    - action: response_rephrase


- rule: out-of-scope2
  steps:
  - intent: out_of_scope
  - action: response_out_of_scope

- rule: negative_words
  steps:
  - intent: negative_words
  - action: response_negative_words

- rule: Restart
  steps:
    - intent: stop_the_flow
    - action: response_goodbye
- rule: Restart1
  condition:
  - slot_was_set:
    - restart: "stop"
  steps:
    - action: response_no_flow

- rule: stop_the_flow_answer
  condition:
    - active_loop: stop_the_flow_answer_form
  steps:
  - action: stop_the_flow_answer_form
  - slot_was_set:
    - requested_slot: null
  - active_loop: null
  - action: response_no_flow

- rule: change_language
  steps:
    - intent: change_language
    - action: change_language_form
    - active_loop: change_language_form

- rule: change_language_submit
  condition:
  - active_loop: change_language_form
  steps:
  - action: change_language_form
  - slot_was_set:
    - requested_slot: null
  - active_loop: null
  - action: action_changing_language

- rule: out-of-scope
  steps:
  - intent: nlu_fallback
  - action: response_out_of_scope

nlu file 

version: "3.0"
nlu:
- intent: greet
  examples: |
    - hey
    - hello
    - hi
    - hello there
    - good morning
    - good evening
    - moin
    - hey there
    - let's go
    - hey dude
    - goodmorning
    - goodevening
    - good afternoon
    - ازيك
    - صباح الخير
    - صباح النور
    - مساء النور
    - مساء الخير
    - صباحك بيضحك
    - صباحك عسل
    - هلو
    - اهلا
    - مرحبا
    - عامل ايه
    - هاى
    - سلام عليكم
    - سلام عليكم و رحمه الله و بركاته
- intent: goodbye
  examples: |
    - cu
    - good by
    - cee you later
    - good night
    - bye
    - goodbye
    - have a nice day
    - see you around
    - bye bye
    - see you later
    - thanks
    - thank you
    - سلام
    - باى
    - مع السلامه
- intent: affirm
  examples: |
    - yes
    - y
    - indeed
    - of course
    - that sounds good
    - correct
    - ok 
    - okay
    - k
    - affirm
    - fine
    - proceed
    - ماشى
    - تمام
    - فل
    - اوكيه
    - اوك
    - مظبوط
    - اه
    - نعم
- intent: deny
  examples: |
    - no
    - n
    - never
    - I don't think so
    - don't like that
    - no way
    - not really
    - deny
    - لا
    - نو
    - مستحيل
    - تؤ
    - لا شكرا
    - لا لا
- intent: network_complains
  examples: |
    - [data](issue_type)
    - [voice](issue_type)
    - [both](issue_type)
    - [oth](issue_type)
    - [الاتنين](issue_type)
    - [صوتى](issue_type)
    - [داتا](issue_type)
    - [اتا](issue_type)
    - [صوت](issue_type)
    - [اتنين](issue_type)
- intent: what_is_the_time
  examples: |
    - what is the time?
    - what is the date?
    - time now ?
    - how much oclock
    - tell me the time
    - what is the date of today
    - what is the time now
    - الوقت كام
    - الساعه كام دلوقتى
    - النهاردا يوم ايه
    - قولى الساعه كام
    - كام الساعه
    - النهاردا يوم كام
    - وقت
    -الوقت
- intent: network_complains_issue
  examples: |
    - i have network issue
    - network issue
    - i have data issue
    - i have issue in my data
    - have trouble in my voice network
    - voice and data issues
    - there is problem in my data
    - my network data is not working
    - voice issue
    - voice problems
    - i have issuse in both my data and network
    - عندى مشكله داتا
    - عندى مشكله صوت
    - عندى مشكله صوتيه
    - مشكله شبكه
    - فيه مشكله فى الشبكه و الداتا
    - نتورك
    - نتورك اشيوى
    - عندى مشكله نتورك
- intent: digits
  examples: |
    - [1](number)
    - [3](number)
    - [4](number)
    - [5](number)
    - [6](number)
    - [7](number)
    - [8](number)
    - [9](number)
    - [10](number)
- intent: change_language
  examples: |
    - i want to change language
    - in what language can i talk to you ?
    - change language
    - are you bilingual?
    - which languages do you speak?
    - what languages do you speak?
    - can you talk in arabic?
    - how many languages can you speak?
    - can you talk in other languages?
    - do you speak english?
    - want to make [English](language) my default
    - want to make [Arabic](language) my default
    - [English](language)
    - [Arabic](language)
    - [EN](language)
    - [en](language)
    - [Ar](language)
    - [ar](language)
    - تحويل اللغه الى [الانجليزيه](language)
    - تغير اللغه
    - غاوز اخلى اللغه [عربى](language)
    - عاوز اخلى اللغه عربى
    - عاوز اخلى اللغه انجليزى
    - كلمنى عربى
    - عربى
    - عربيه
    - عربي
    - عربية
    - كلمنى انجليزى
    - بتتكلم كام لغه ؟
    - تعرف تكلمنى عربى؟
    - كلمنى لغه افهمها
    - لغتك ايه
    - اللغه
    - لغه
- intent: who_are_you
  examples: |
    - who are you
    - who with me
    - Are you human ?
    - Are you ai bot ?
    - مين معايا
    - مين انت
    - انت بنى ادم
    - انت الى
    - هل انت انسان؟
- intent: which_company
  examples: |
    - which institute you talking in the name of?
    - which company do you belong to?
    - what company do you present?
    - who are you working for ?
    - do you work for Etisalat?
- intent: stop_the_flow
  examples: |
    - [let me exit the flow](restart)
    - [stop the flow](restart)
    - انهى الحديث
    - [stop](restart)
    - [stop the flow](restart)
    - I have to leave 
    - Stop talking to me
    - exit this chat
    - Go away
    - close bot
    - I have got to go
    - Stop doing this
    - log out
    - Go off
    - Going 
    - Im done
    - end the conversation
    - stop 
    - End trial
    - Shut up
    - I want to quit
    - I d like to stop doing this
    - That is all
    - Get lost
    - I am out of here
    - exit
    - kill you
    - i will kill you
    - I am leaving
    - close
    - I'm done
    - Enough 
    - Hey bot go away
    - Ending this session
    - I'm leaving 
    - علي المغادرة الآن
    - انهي
    - ما عندي طلبات أخرى
    - اسكت
    - انا رايح دلوقتي
    - يكفي هذا
    - حان الوقت لأذهب
    - انهاء هذا الحديث
    - ما عندي طلبات اخرى
    - خروج
    - حان الوقت لاذهب
    - أنا ذاهب من هنا
    - إنهاء هذا الحديث
    - انصرف
    - انهاء
    - إنهي
    - انا ذاهب من هنا
    - ما تحكيش معي اكثر
    - يا روبوت، روح من هون.
    - إنهاء التجربة
    - انه اء المحادثة
    - انهاء التجربة
    - انهي المحادثة
    - توقف 
    - كفى مع هذا
    - انهاؤ
    - روح ع الجهنم
    - فيش عندي شيء ثاني
    - علي المغادرة الان
    - روح مني
    - انهأ
    - اريد وقف العملية
    - أنا رايح دلوقتي
    - أريد وقف العملية
    - ما تحكيش معي أكثر
    - لقد انتهيت
    - لا انهي الشات
    - مش عاوز اكمل الحوار

- intent: out_of_scope
  examples: |
    - i want to order food
    - what is 2+2?
    - who is the us president ?
    - sorry
    - a
    - s
    - q
    - d
    - f
    - h
    - g
    - ,
    - .
    - b
    - v
    - x
    - c
    - z
    - j
    - k
    - l 
    - u
    - t
    - ا
    - ض
    - ص
    - ث
    - ق
    - ف
    - غ
    - ع
    - ه
    - خ
    - ح
    - ج
    - د
    - ش
    - س
    - ي
    - ب
    - ل
    - ت
    - ت
    - ن
    - م
    - ط
    - ئ
    - ء
    - ؤ
    - ر
    - ى
    - ة
    - و
    - ز
    - ظ
    - ياعم بقى
    - شسبررشير
    

- intent: negative_words
  examples: |
    - fuck off
    - fuck you
    - fuck your ass
    - you sucker
    - suck my dick
    - monkey
    - donkey
    - btich
    - donkey 
    - stupid    
    - bitch
    - kangro
    - nigga
    - dog
    - cat
    - mother fucker
    - sucker
    - idiot
    - noob
    - fucker
    - fuck off
    - a7a
    - A7A
    - kosom
    - kosmok
    - laboa
    - ass 
    - manyok
    - لبوه
    - كسمك
    - كسم
    - احا
    - متناك
    - عربجى
    - حيوان
    - بضان
    - عرص
    - خول
    - انت خرا
    - انت غبى
    - غبى
    - انت عبيط
    - عبيط
    - حمار
    - متخلف
    - شمام
    - مجنون
    - خريان
    - انت خريان
    

- synonym: data
  examples: |
    - data
    - date
    - atta
    - dat
    - datta
    - ata
    - dsta
    - داتا
    - دتا
    - دااتا
- synonym: voice
  examples: |
    - voice
    - voce
    - ioce
    - foice
    - vose
    - voise
    - صوتى
    - صوت
    - صوط
    - سوتى
- synonym: both
  examples: |
    - both
    - bth
    - bath
    - bosth
    - boh
    - oth
    - الاتنين
    - اتنين
    - انتنين
- synonym: stop
  examples: |
    - let me exit the flow
    - stop the flow
    - انهى الحديث
    - stop
- synonym: Ar
  examples: |
    - Ar
    - Arabic
    - العربيه
    - ar
    - عربى
    - ARABIC
    - arabia
- synonym: En
  examples: |
    - English
    - En
    - en
    - ENGLISH
    - انجليزى
    - الانجليزيه

domain.yml (3.8 KB) nlu.yml (8.9 KB) rules.yml (1.9 KB) stories.yml (1.9 KB) actions.py (32.5 KB)

You’ll find an example of this in the financial demo bot.

Hi Stephens, first of all thanks for your comment. second what do you think about the empty messages in the screenshots ?

@ChrisRahme Hello chris do you have any idea about : 1-why rasa send empty message ? 2-How to make confirmation message? 3-Make the user back on the same form with last slot he was filling?

Enable debug and review the dialogue prediction related messages.

The flow was like this:

  • User: hi

  • Bot: Hi, this is Lissa from Etisalat Technical team May I assist you in your network complaint? XX_OPTION_XX(yes) XX_OPTION_XX(no)

  • User: yes

  • Bot: please choose number from list Please choose the digit related to your problem (1,2,3) 1.Indoor Only 2.Outdoor Only 3.Both XX_OPTION_XX(1) XX_OPTION_XX(2) XX_OPTION_XX(3)

  • User: stop

  • Bot: Want to stop the conversation ? XX_OPTION_XX(yes) XX_OPTION_XX(no)

  • User: no

  • Bot: please choose number from list Please choose the digit related to your problem (1,2,3) 1.Indoor Only 2.Outdoor Only 3.Both XX_OPTION_XX(1) XX_OPTION_XX(2) XX_OPTION_XX(3)

  • User: stop

  • Bot:
Your input ->  hi                                                                                                                                                     
2022-07-03 14:18:17 DEBUG    rasa.core.lock_store  - Issuing ticket for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:17 DEBUG    rasa.core.lock_store  - Acquiring lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:17 DEBUG    rasa.core.lock_store  - Acquired lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:17 DEBUG    rasa.core.tracker_store  - Could not find tracker for conversation ID '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:17 DEBUG    rasa.core.processor  - Starting a new session for conversation ID '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:17 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:17 DEBUG    rasa.core.processor  - Action 'action_session_start' ended with events '[<rasa.shared.core.events.SessionStarted object at 0x00000189AD42
BF08>, ActionExecuted(action: action_listen, policy: None, confidence: None)]'.
2022-07-03 14:18:17 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: None
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: None
        stop_the_flow_answer: None
        language: None
        requested_slot: None
        session_started_metadata: None
2022-07-03 14:18:17 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__message__': [<rasa.core.channels.channel.UserMessage object at 0x00000189ACF35E
48>]}, targets: ['run_RegexMessageHandler'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:17 DEBUG    rasa.engine.graph  - Node 'nlu_message_converter' running 'NLUMessageConverter.convert_user_message'.
2022-07-03 14:18:17 DEBUG    rasa.engine.graph  - Node 'run_WhitespaceTokenizer0' running 'WhitespaceTokenizer.process'.
2022-07-03 14:18:18 DEBUG    rasa.engine.graph  - Node 'run_RegexFeaturizer1' running 'RegexFeaturizer.process'.
2022-07-03 14:18:18 DEBUG    rasa.engine.graph  - Node 'run_LexicalSyntacticFeaturizer2' running 'LexicalSyntacticFeaturizer.process'.
2022-07-03 14:18:18 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer3' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:18 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer4' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:18 DEBUG    rasa.engine.graph  - Node 'run_DIETClassifier5' running 'DIETClassifier.process'.
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'run_EntitySynonymMapper6' running 'EntitySynonymMapper.process'.
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'run_ResponseSelector7' running 'ResponseSelector.process'.
2022-07-03 14:18:19 DEBUG    rasa.nlu.classifiers.diet_classifier  - There is no trained model for 'ResponseSelector': The component is either not trained or didn't r
eceive enough training data.
2022-07-03 14:18:19 DEBUG    rasa.nlu.selectors.response_selector  - Adding following selector key to message property: default
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'run_FallbackClassifier8' running 'FallbackClassifier.process'.
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'run_RegexMessageHandler' running 'RegexMessageHandler.process'.
2022-07-03 14:18:19 DEBUG    rasa.core.processor  - Received user message 'hi' with intent '{'name': 'greet', 'confidence': 0.9999958276748657}' and entities '[]'    
2022-07-03 14:18:19 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 4 events.
2022-07-03 14:18:19 DEBUG    rasa.core.actions.action  - Validating extracted slots: 
2022-07-03 14:18:19 DEBUG    rasa.core.processor  - Default action 'action_extract_slots' was executed, resulting in 0 events:
2022-07-03 14:18:19 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
9858ADF88>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:19 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
2022-07-03 14:18:19 DEBUG    rasa.core.policies.memoization  - There is a memorised next action 'response_greet'
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:19 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user text: hi | previous action name: action_listen
2022-07-03 14:18:19 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:19 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
2022-07-03 14:18:19 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:19 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'response_greet' based on user intent.
2022-07-03 14:18:19 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:20 DEBUG    rasa.core.policies.unexpected_intent_policy  - Querying for intent `greet`.
2022-07-03 14:18:20 DEBUG    rasa.core.policies.unexpected_intent_policy  - Score for intent `greet` is `0.9334049224853516`, while threshold is `0.708655834197998`. 
2022-07-03 14:18:20 DEBUG    rasa.core.policies.unexpected_intent_policy  - Top 5 intents (in ascending order) that are likely here are: `[('who_are_you', 0.27868724)
, ('which_company', 0.28001565), ('what_is_the_time', 0.38101438), ('network_complains', 0.39986655), ('greet', 0.9334049)]`.
2022-07-03 14:18:20 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:20 DEBUG    rasa.core.policies.ensemble  - Made prediction using user intent.
2022-07-03 14:18:20 DEBUG    rasa.core.policies.ensemble  - Added `DefinePrevUserUtteredFeaturization(False)` event.
2022-07-03 14:18:20 DEBUG    rasa.core.policies.ensemble  - Predicted next action using MemoizationPolicy.
2022-07-03 14:18:20 DEBUG    rasa.core.processor  - Predicted next action 'response_greet' with confidence 1.00.
2022-07-03 14:18:20 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'response_greet'.
2022-07-03 14:18:21 DEBUG    rasa.core.processor  - Policy prediction ended with events '[<rasa.shared.core.events.DefinePrevUserUtteredFeaturization object at 0x0000
0189847909C8>]'.
2022-07-03 14:18:21 DEBUG    rasa.core.processor  - Action 'response_greet' ended with events '[BotUttered('Hi, this is Lissa from Etisalat Technical team May I assis
t you in your network complaint? XX_OPTION_XX(yes) XX_OPTION_XX(no)', {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "c
ustom": null}, {}, 1656850701.639711)]'.
2022-07-03 14:18:21 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: None
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: None
        stop_the_flow_answer: None
        language: None
        requested_slot: None
        session_started_metadata: None
2022-07-03 14:18:21 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
9858ADF88>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:21 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:21 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:21 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:21 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
2022-07-03 14:18:21 DEBUG    rasa.core.policies.memoization  - There is a memorised next action 'action_listen'
2022-07-03 14:18:21 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:21 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
2022-07-03 14:18:21 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:21 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:22 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'action_listen' based on user intent.
2022-07-03 14:18:22 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:22 DEBUG    rasa.core.policies.unexpected_intent_policy  - Skipping predictions for UnexpecTEDIntentPolicy as either there is no event of type `UserU
ttered`, event's intent is new and not in domain or there is an event of type `ActionExecuted` after the last `UserUttered`.
2022-07-03 14:18:22 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:22 DEBUG    rasa.core.policies.ensemble  - Predicted next action using MemoizationPolicy.
2022-07-03 14:18:22 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2022-07-03 14:18:22 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:22 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'.
2022-07-03 14:18:22 DEBUG    rasa.core.lock_store  - Deleted lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
Hi, this is Lissa from Etisalat Technical team May I assist you in your network complaint? XX_OPTION_XX(yes) XX_OPTION_XX(no)
Your input ->  yes                                                                                                                                                    
2022-07-03 14:18:23 DEBUG    rasa.core.lock_store  - Issuing ticket for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:23 DEBUG    rasa.core.lock_store  - Acquiring lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:23 DEBUG    rasa.core.lock_store  - Acquired lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:23 DEBUG    rasa.core.tracker_store  - Recreating tracker for id '2634ef14ab7a4350b76a21a23b65900e'
2022-07-03 14:18:23 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__message__': [<rasa.core.channels.channel.UserMessage object at 0x00000189AD381C
48>]}, targets: ['run_RegexMessageHandler'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'nlu_message_converter' running 'NLUMessageConverter.convert_user_message'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_WhitespaceTokenizer0' running 'WhitespaceTokenizer.process'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_RegexFeaturizer1' running 'RegexFeaturizer.process'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_LexicalSyntacticFeaturizer2' running 'LexicalSyntacticFeaturizer.process'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer3' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer4' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_DIETClassifier5' running 'DIETClassifier.process'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_EntitySynonymMapper6' running 'EntitySynonymMapper.process'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_ResponseSelector7' running 'ResponseSelector.process'.
2022-07-03 14:18:23 DEBUG    rasa.nlu.classifiers.diet_classifier  - There is no trained model for 'ResponseSelector': The component is either not trained or didn't r
eceive enough training data.
2022-07-03 14:18:23 DEBUG    rasa.nlu.selectors.response_selector  - Adding following selector key to message property: default
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_FallbackClassifier8' running 'FallbackClassifier.process'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_RegexMessageHandler' running 'RegexMessageHandler.process'.
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Received user message 'yes' with intent '{'name': 'affirm', 'confidence': 0.9996943473815918}' and entities '[]'  
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 9 events.
2022-07-03 14:18:23 DEBUG    rasa.core.actions.action  - Validating extracted slots:
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Default action 'action_extract_slots' was executed, resulting in 0 events:
2022-07-03 14:18:23 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
985EC2D88>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
2022-07-03 14:18:23 DEBUG    rasa.core.policies.memoization  - There is a memorised next action 'network_complains_form'
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user text: yes | previous action name: action_listen
2022-07-03 14:18:23 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
2022-07-03 14:18:23 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'network_complains_form' based on user intent.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.unexpected_intent_policy  - Querying for intent `affirm`.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.unexpected_intent_policy  - Score for intent `affirm` is `0.20115526020526886`, while threshold is `0.1285491138696670
5`.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.unexpected_intent_policy  - Top 5 intents (in ascending order) that are likely here are: `[('which_company', -0.849148
4), ('digits', 0.14077336), ('goodbye', 0.19896692), ('affirm', 0.20115526), ('deny', 0.4834184)]`.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.ensemble  - Made prediction using user intent.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.ensemble  - Added `DefinePrevUserUtteredFeaturization(False)` event.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.ensemble  - Predicted next action using MemoizationPolicy.
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Predicted next action 'network_complains_form' with confidence 1.00.
2022-07-03 14:18:23 DEBUG    rasa.core.actions.forms  - Activated the form 'network_complains_form'.
2022-07-03 14:18:23 DEBUG    rasa.core.actions.forms  - No pre-filled required slots to validate.
2022-07-03 14:18:23 DEBUG    rasa.core.actions.forms  - Request next slot 'issue_number'
2022-07-03 14:18:23 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'action_ask_issue_number'.
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Policy prediction ended with events '[<rasa.shared.core.events.DefinePrevUserUtteredFeaturization object at 0x0000
018985ECF788>]'.
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Action 'network_complains_form' ended with events '[<rasa.shared.core.events.ActiveLoop object at 0x0000018985ED06
48>, <rasa.shared.core.events.SlotSet object at 0x0000018985ED1B88>, BotUttered('Please choose the digit related to your problem (1,2,3)
1.Indoor Only
2.Outdoor Only
3.Both
 XX_OPTION_XX(1) XX_OPTION_XX(2) XX_OPTION_XX(3)', {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, {}, 
1656850703.8574476)]'.
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: None
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: None
        stop_the_flow_answer: None
        language: None
        requested_slot: issue_number
        session_started_metadata: None
2022-07-03 14:18:23 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
985EC2D88>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | active loop: {'name': 'network_complains_form'}
2022-07-03 14:18:23 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.rule_policy  - Predicted 'action_listen' after loop 'network_complains_form'.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'response_final_answer' based on user intent.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.unexpected_intent_policy  - Skipping predictions for UnexpecTEDIntentPolicy as either there is no event of type `UserU
ttered`, event's intent is new and not in domain or there is an event of type `ActionExecuted` after the last `UserUttered`.
2022-07-03 14:18:23 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:23 DEBUG    rasa.core.policies.ensemble  - Predicted next action using RulePolicy.
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:23 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'.
2022-07-03 14:18:23 DEBUG    rasa.core.lock_store  - Deleted lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
Please choose the digit related to your problem (1,2,3)
1.Indoor Only
2.Outdoor Only
3.Both
 XX_OPTION_XX(1) XX_OPTION_XX(2) XX_OPTION_XX(3)
Your input ->  stop                                                                                                                                                   
2022-07-03 14:18:27 DEBUG    rasa.core.lock_store  - Issuing ticket for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:27 DEBUG    rasa.core.lock_store  - Acquiring lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:27 DEBUG    rasa.core.lock_store  - Acquired lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:27 DEBUG    rasa.core.tracker_store  - Recreating tracker for id '2634ef14ab7a4350b76a21a23b65900e'
2022-07-03 14:18:27 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__message__': [<rasa.core.channels.channel.UserMessage object at 0x0000018985EB49
C8>]}, targets: ['run_RegexMessageHandler'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'nlu_message_converter' running 'NLUMessageConverter.convert_user_message'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_WhitespaceTokenizer0' running 'WhitespaceTokenizer.process'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_RegexFeaturizer1' running 'RegexFeaturizer.process'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_LexicalSyntacticFeaturizer2' running 'LexicalSyntacticFeaturizer.process'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer3' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer4' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_DIETClassifier5' running 'DIETClassifier.process'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_EntitySynonymMapper6' running 'EntitySynonymMapper.process'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_ResponseSelector7' running 'ResponseSelector.process'.
2022-07-03 14:18:27 DEBUG    rasa.nlu.classifiers.diet_classifier  - There is no trained model for 'ResponseSelector': The component is either not trained or didn't r
eceive enough training data.
2022-07-03 14:18:27 DEBUG    rasa.nlu.selectors.response_selector  - Adding following selector key to message property: default
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_FallbackClassifier8' running 'FallbackClassifier.process'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_RegexMessageHandler' running 'RegexMessageHandler.process'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Received user message 'stop' with intent '{'name': 'stop_the_flow', 'confidence': 1.0}' and entities '[{'entity': 
'restart', 'start': 0, 'end': 4, 'confidence_entity': 0.7453531622886658, 'value': 'stop', 'extractor': 'DIETClassifier'}]'
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: None
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: None
        stop_the_flow_answer: None
        language: None
        requested_slot: issue_number
        session_started_metadata: None
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 16 events.
2022-07-03 14:18:27 DEBUG    rasa.core.actions.action  - Validating extracted slots: issue_number
restart
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Default action 'action_extract_slots' was executed, resulting in 2 events: SlotSet(key: issue_number, value: stop)
SlotSet(key: restart, value: stop)
2022-07-03 14:18:27 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
985EE4E48>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | active loop: {'name': 'network_complains_form'}
[state 5] user intent: stop_the_flow | user entities: ('restart',) | previous action name: action_listen | active loop: {'name': 'network_complains_form'} | slots: {'
issue_number': (1.0,)}
2022-07-03 14:18:27 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | active loop: {'name': 'network_complains_form'}
[state 5] user text: stop | previous action name: action_listen | active loop: {'name': 'network_complains_form'} | slots: {'issue_number': (1.0,)}
2022-07-03 14:18:27 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.rule_policy  - Predicted loop 'network_complains_form'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'response_goodbye' based on user intent.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.unexpected_intent_policy  - Querying for intent `stop_the_flow`.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.unexpected_intent_policy  - Query intent index 14 not found in label thresholds - {0: 0.12854911, 3: 0.48341835, 4: 0.
110828936, 5: 0.19896677, 6: 0.70865583, 8: 0.26895455, 9: 0.02382204, 15: 0.1725459, 16: 0.1626298, 17: 0.13051373}. Check for `action_unlikely_intent` prediction wi
ll be skipped.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.ensemble  - Made prediction using user intent.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.ensemble  - Added `DefinePrevUserUtteredFeaturization(False)` event.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.ensemble  - Predicted next action using RulePolicy.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Predicted next action 'network_complains_form' with confidence 1.00.
2022-07-03 14:18:27 DEBUG    rasa.core.actions.forms  - Validating user input 'UserUttered(text: stop, intent: stop_the_flow, entities: stop (Type: restart, Role: Non
e, Group: None), use_text_for_featurization: False)'.
2022-07-03 14:18:27 DEBUG    rasa.core.actions.forms  - Validating extracted slots: {'issue_number': 'stop'}
2022-07-03 14:18:27 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'validate_network_complains_form'.
2022-07-03 14:18:27 DEBUG    rasa.core.actions.forms  - Deactivating the form 'network_complains_form'
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Policy prediction ended with events '[<rasa.shared.core.events.DefinePrevUserUtteredFeaturization object at 0x0000
0189B83CD048>]'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Action 'network_complains_form' ended with events '[<rasa.shared.core.events.SlotSet object at 0x00000189B84296C8>
, <rasa.shared.core.events.SlotSet object at 0x00000189B842AFC8>, <rasa.shared.core.events.SlotSet object at 0x00000189B842BC08>, <rasa.shared.core.events.SlotSet obj
ect at 0x00000189B8429788>, <rasa.shared.core.events.ActiveLoop object at 0x0000018985EE2048>]'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: stop
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: stop
        stop_the_flow_answer: None
        language: None
        requested_slot: None
        session_started_metadata: None
2022-07-03 14:18:27 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
985EE4E48>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
2022-07-03 14:18:27 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
2022-07-03 14:18:27 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'response_final_answer' based on user intent.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.unexpected_intent_policy  - Skipping predictions for UnexpecTEDIntentPolicy as either there is no event of type `UserU
ttered`, event's intent is new and not in domain or there is an event of type `ActionExecuted` after the last `UserUttered`.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.ensemble  - Predicted next action using TEDPolicy.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Predicted next action 'response_final_answer' with confidence 0.99.
2022-07-03 14:18:27 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'response_final_answer'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Action 'response_final_answer' ended with events '[<rasa.shared.core.events.FollowupAction object at 0x00000189860
96F88>]'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: stop
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: stop
        stop_the_flow_answer: None
        language: None
        requested_slot: None
        session_started_metadata: None
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Predicted next action 'stop_the_flow_answer_form' with confidence 1.00.
2022-07-03 14:18:27 DEBUG    rasa.core.actions.forms  - Activated the form 'stop_the_flow_answer_form'.
2022-07-03 14:18:27 DEBUG    rasa.core.actions.forms  - No pre-filled required slots to validate.
2022-07-03 14:18:27 DEBUG    rasa.core.actions.forms  - Request next slot 'stop_the_flow_answer'
2022-07-03 14:18:27 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'action_ask_stop_the_flow_answer'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Action 'stop_the_flow_answer_form' ended with events '[<rasa.shared.core.events.ActiveLoop object at 0x00000189860
968C8>, <rasa.shared.core.events.SlotSet object at 0x0000018985EE8108>, BotUttered('Want to stop the converstion XX_OPTION_XX(yes) XX_OPTION_XX(no)', {"elements": nul
l, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, {}, 1656850707.7628813)]'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: stop
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: stop
        stop_the_flow_answer: None
        language: None
        requested_slot: stop_the_flow_answer
        session_started_metadata: None
2022-07-03 14:18:27 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
985EE4E48>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
[state 6] user intent: affirm | previous action name: stop_the_flow_answer_form | slots: {'issue_number': (1.0,)}
2022-07-03 14:18:27 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.rule_policy  - Predicted 'action_listen' after loop 'stop_the_flow_answer_form'.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'action_listen' based on user intent.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.unexpected_intent_policy  - Skipping predictions for UnexpecTEDIntentPolicy as either there is no event of type `UserU
ttered`, event's intent is new and not in domain or there is an event of type `ActionExecuted` after the last `UserUttered`.
2022-07-03 14:18:27 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:27 DEBUG    rasa.core.policies.ensemble  - Predicted next action using RulePolicy.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:27 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'.
2022-07-03 14:18:27 DEBUG    rasa.core.lock_store  - Deleted lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
Want to stop the converstion XX_OPTION_XX(yes) XX_OPTION_XX(no)
Your input ->  no                                                                                                                                                     
2022-07-03 14:18:34 DEBUG    rasa.core.lock_store  - Issuing ticket for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:34 DEBUG    rasa.core.lock_store  - Acquiring lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:34 DEBUG    rasa.core.lock_store  - Acquired lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:34 DEBUG    rasa.core.tracker_store  - Recreating tracker for id '2634ef14ab7a4350b76a21a23b65900e'
2022-07-03 14:18:34 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__message__': [<rasa.core.channels.channel.UserMessage object at 0x00000189B84199
C8>]}, targets: ['run_RegexMessageHandler'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'nlu_message_converter' running 'NLUMessageConverter.convert_user_message'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_WhitespaceTokenizer0' running 'WhitespaceTokenizer.process'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_RegexFeaturizer1' running 'RegexFeaturizer.process'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_LexicalSyntacticFeaturizer2' running 'LexicalSyntacticFeaturizer.process'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer3' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer4' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_DIETClassifier5' running 'DIETClassifier.process'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_EntitySynonymMapper6' running 'EntitySynonymMapper.process'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_ResponseSelector7' running 'ResponseSelector.process'.
2022-07-03 14:18:34 DEBUG    rasa.nlu.classifiers.diet_classifier  - There is no trained model for 'ResponseSelector': The component is either not trained or didn't r
eceive enough training data.
2022-07-03 14:18:34 DEBUG    rasa.nlu.selectors.response_selector  - Adding following selector key to message property: default
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_FallbackClassifier8' running 'FallbackClassifier.process'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_RegexMessageHandler' running 'RegexMessageHandler.process'.
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Received user message 'no' with intent '{'name': 'deny', 'confidence': 0.9989487528800964}' and entities '[]'     
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 33 events.
2022-07-03 14:18:34 DEBUG    rasa.core.actions.action  - Validating extracted slots: stop_the_flow_answer
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Default action 'action_extract_slots' was executed, resulting in 1 events: SlotSet(key: stop_the_flow_answer, valu
e: no)
2022-07-03 14:18:34 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
98615B4C8>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
[state 6] user intent: affirm | previous action name: stop_the_flow_answer_form | slots: {'issue_number': (1.0,)}
[state 7] user intent: deny | previous action name: action_listen | slots: {'issue_number': (1.0,), 'stop_the_flow_answer': (1.0,)}
2022-07-03 14:18:34 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
[state 6] user intent: affirm | previous action name: stop_the_flow_answer_form | active loop: {'name': 'stop_the_flow_answer_form'} | slots: {'issue_number': (1.0,)}
[state 7] user text: no | previous action name: action_listen | active loop: {'name': 'stop_the_flow_answer_form'} | slots: {'issue_number': (1.0,), 'stop_the_flow_an
swer': (1.0,)}
2022-07-03 14:18:34 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.rule_policy  - Predicted loop 'stop_the_flow_answer_form'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'response_goodbye' based on user intent.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.unexpected_intent_policy  - Querying for intent `deny`.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.unexpected_intent_policy  - Score for intent `deny` is `-1.029104471206665`, while threshold is `0.483418345451355`.  
2022-07-03 14:18:34 DEBUG    rasa.core.policies.unexpected_intent_policy  - Top 5 intents (in ascending order) that are likely here are: `[('who_are_you', 0.108833924
), ('digits', 0.12568459), ('affirm', 0.14176232), ('network_complains', 0.19758998), ('greet', 0.5515748)]`.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.unexpected_intent_policy  - Intent `deny-3` unlikely to occur here.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.ensemble  - Made prediction using user intent.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.ensemble  - Added `DefinePrevUserUtteredFeaturization(False)` event.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.ensemble  - Predicted next action using RulePolicy.
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Predicted next action 'stop_the_flow_answer_form' with confidence 1.00.
2022-07-03 14:18:34 DEBUG    rasa.core.actions.forms  - Validating user input 'UserUttered(text: no, intent: deny, use_text_for_featurization: False)'.
2022-07-03 14:18:34 DEBUG    rasa.core.actions.forms  - Validating extracted slots: {'stop_the_flow_answer': 'no'}
2022-07-03 14:18:34 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'validate_stop_the_flow_answer_form'.
2022-07-03 14:18:34 DEBUG    rasa.core.actions.forms  - Deactivating the form 'stop_the_flow_answer_form'
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Policy prediction ended with events '[<rasa.shared.core.events.DefinePrevUserUtteredFeaturization object at 0x0000
01898617E5C8>]'.
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Action 'stop_the_flow_answer_form' ended with events '[<rasa.shared.core.events.SlotSet object at 0x0000018986189C
C8>, <rasa.shared.core.events.SlotSet object at 0x0000018986189548>, <rasa.shared.core.events.ActiveLoop object at 0x0000018986096488>]'.
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: stop
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: stop
        stop_the_flow_answer: no
        language: None
        requested_slot: None
        session_started_metadata: None
2022-07-03 14:18:34 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
98615B4C8>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
[state 6] user intent: affirm | previous action name: stop_the_flow_answer_form | slots: {'issue_number': (1.0,), 'stop_the_flow_answer': (1.0,)}
2022-07-03 14:18:34 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
[state 6] user intent: affirm | previous action name: stop_the_flow_answer_form | slots: {'issue_number': (1.0,), 'stop_the_flow_answer': (1.0,)}
2022-07-03 14:18:34 DEBUG    rasa.core.policies.rule_policy  - There is a rule for the next action 'response_no_flow'.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'action_listen' based on user intent.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.unexpected_intent_policy  - Skipping predictions for UnexpecTEDIntentPolicy as either there is no event of type `UserU
ttered`, event's intent is new and not in domain or there is an event of type `ActionExecuted` after the last `UserUttered`.
2022-07-03 14:18:34 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:34 DEBUG    rasa.core.policies.ensemble  - Predicted next action using RulePolicy.
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Predicted next action 'response_no_flow' with confidence 1.00.
2022-07-03 14:18:34 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'response_no_flow'.
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Action 'response_no_flow' ended with events '[<rasa.shared.core.events.FollowupAction object at 0x00000189B843AD88
>]'.
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: stop
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: stop
        stop_the_flow_answer: no
        language: None
        requested_slot: None
        session_started_metadata: None
2022-07-03 14:18:34 DEBUG    rasa.core.processor  - Predicted next action 'network_complains_form' with confidence 1.00.
2022-07-03 14:18:34 DEBUG    rasa.core.actions.forms  - Activated the form 'network_complains_form'.
2022-07-03 14:18:34 DEBUG    rasa.core.actions.forms  - Validating pre-filled required slots: {'issue_number': 'stop'}
2022-07-03 14:18:34 DEBUG    rasa.core.actions.forms  - Validating extracted slots: {'issue_number': 'stop'}
2022-07-03 14:18:34 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'validate_network_complains_form'.
2022-07-03 14:18:35 DEBUG    rasa.core.actions.forms  - Request next slot 'issue_number'
2022-07-03 14:18:35 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'action_ask_issue_number'.
2022-07-03 14:18:35 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:35 DEBUG    rasa.core.processor  - Action 'network_complains_form' ended with events '[<rasa.shared.core.events.ActiveLoop object at 0x00000189B8431F
48>, BotUttered('please choose number from list', {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, {}, 1
656850715.005735), <rasa.shared.core.events.SlotSet object at 0x00000189B843A408>, <rasa.shared.core.events.SlotSet object at 0x00000189B83F8848>, BotUttered('Please 
choose the digit related to your problem (1,2,3)
1.Indoor Only
2.Outdoor Only
3.Both
 XX_OPTION_XX(1) XX_OPTION_XX(2) XX_OPTION_XX(3)', {"elements": null, "quick_replies": null, "buttons": null, "attachment": null, "image": null, "custom": null}, {}, 
1656850715.0527651)]'.
2022-07-03 14:18:35 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: None
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: stop
        stop_the_flow_answer: no
        language: None
        requested_slot: issue_number
        session_started_metadata: None
2022-07-03 14:18:35 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
98615B4C8>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:35 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:35 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:35 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:35 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
2022-07-03 14:18:35 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2022-07-03 14:18:35 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:35 DEBUG    rasa.core.policies.rule_policy  - Predicted 'action_listen' after loop 'network_complains_form'.
2022-07-03 14:18:35 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:35 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'action_listen' based on user intent.
2022-07-03 14:18:35 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:35 DEBUG    rasa.core.policies.unexpected_intent_policy  - Skipping predictions for UnexpecTEDIntentPolicy as either there is no event of type `UserU
ttered`, event's intent is new and not in domain or there is an event of type `ActionExecuted` after the last `UserUttered`.
2022-07-03 14:18:35 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:35 DEBUG    rasa.core.policies.ensemble  - Predicted next action using RulePolicy.
2022-07-03 14:18:35 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 1.00.
2022-07-03 14:18:35 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:35 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'.
2022-07-03 14:18:35 DEBUG    rasa.core.lock_store  - Deleted lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
please choose number from list
Please choose the digit related to your problem (1,2,3)
1.Indoor Only
2.Outdoor Only
3.Both
 XX_OPTION_XX(1) XX_OPTION_XX(2) XX_OPTION_XX(3)
Your input ->  stop                                                                                                                                                   
2022-07-03 14:18:37 DEBUG    rasa.core.lock_store  - Issuing ticket for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:37 DEBUG    rasa.core.lock_store  - Acquiring lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:37 DEBUG    rasa.core.lock_store  - Acquired lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
2022-07-03 14:18:37 DEBUG    rasa.core.tracker_store  - Recreating tracker for id '2634ef14ab7a4350b76a21a23b65900e'
2022-07-03 14:18:37 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__message__': [<rasa.core.channels.channel.UserMessage object at 0x00000189B85208
88>]}, targets: ['run_RegexMessageHandler'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'nlu_message_converter' running 'NLUMessageConverter.convert_user_message'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_WhitespaceTokenizer0' running 'WhitespaceTokenizer.process'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_RegexFeaturizer1' running 'RegexFeaturizer.process'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_LexicalSyntacticFeaturizer2' running 'LexicalSyntacticFeaturizer.process'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer3' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_CountVectorsFeaturizer4' running 'CountVectorsFeaturizer.process'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_DIETClassifier5' running 'DIETClassifier.process'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_EntitySynonymMapper6' running 'EntitySynonymMapper.process'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_ResponseSelector7' running 'ResponseSelector.process'.
2022-07-03 14:18:37 DEBUG    rasa.nlu.classifiers.diet_classifier  - There is no trained model for 'ResponseSelector': The component is either not trained or didn't r
eceive enough training data.
2022-07-03 14:18:37 DEBUG    rasa.nlu.selectors.response_selector  - Adding following selector key to message property: default
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_FallbackClassifier8' running 'FallbackClassifier.process'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_RegexMessageHandler' running 'RegexMessageHandler.process'.
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Received user message 'stop' with intent '{'name': 'stop_the_flow', 'confidence': 1.0}' and entities '[{'entity': 
'restart', 'start': 0, 'end': 4, 'confidence_entity': 0.7453531622886658, 'value': 'stop', 'extractor': 'DIETClassifier'}]'
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Current slot values: 
        issue_number: None
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: stop
        stop_the_flow_answer: no
        language: None
        requested_slot: issue_number
        session_started_metadata: None
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Logged UserUtterance - tracker now has 49 events.
2022-07-03 14:18:37 DEBUG    rasa.core.actions.action  - Validating extracted slots: issue_number
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Default action 'action_extract_slots' was executed, resulting in 1 events: SlotSet(key: issue_number, value: stop)
2022-07-03 14:18:37 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
9B8520B08>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
[state 6] user intent: stop_the_flow | user entities: ('restart',) | previous action name: stop_the_flow_answer_form | active loop: {'name': 'network_complains_form'}
 | slots: {'issue_number': (1.0,), 'stop_the_flow_answer': (1.0,)}
2022-07-03 14:18:37 DEBUG    rasa.core.policies.memoization  - There is no memorised next action
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_RulePolicy1' running 'RulePolicy.predict_action_probabilities'.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.rule_policy  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
[state 6] user intent: affirm | previous action name: stop_the_flow_answer_form | slots: {'issue_number': (1.0,), 'stop_the_flow_answer': (1.0,)}
[state 7] user intent: affirm | previous action name: response_no_flow | slots: {'issue_number': (1.0,), 'stop_the_flow_answer': (1.0,)}
[state 8] user intent: affirm | previous action name: network_complains_form | active loop: {'name': 'network_complains_form'} | slots: {'stop_the_flow_answer': (1.0,
)}
[state 9] user text: stop | previous action name: action_listen | active loop: {'name': 'network_complains_form'} | slots: {'issue_number': (1.0,), 'stop_the_flow_ans
wer': (1.0,)}
2022-07-03 14:18:37 DEBUG    rasa.core.policies.rule_policy  - There is no applicable rule.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.rule_policy  - Predicted loop 'network_complains_form'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_TEDPolicy3' running 'TEDPolicy.predict_action_probabilities'.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.ted_policy  - TED predicted 'action_listen' based on user intent.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_UnexpecTEDIntentPolicy2' running 'UnexpecTEDIntentPolicy.predict_action_probabilities'.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.unexpected_intent_policy  - Querying for intent `stop_the_flow`.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.unexpected_intent_policy  - Query intent index 14 not found in label thresholds - {0: 0.12854911, 3: 0.48341835, 4: 0.
110828936, 5: 0.19896677, 6: 0.70865583, 8: 0.26895455, 9: 0.02382204, 15: 0.1725459, 16: 0.1626298, 17: 0.13051373}. Check for `action_unlikely_intent` prediction wi
ll be skipped.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'select_prediction' running 'DefaultPolicyPredictionEnsemble.combine_predictions_from_kwargs'.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.ensemble  - Made prediction using user intent.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.ensemble  - Added `DefinePrevUserUtteredFeaturization(False)` event.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.ensemble  - Predicted next action using RulePolicy.
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Predicted next action 'network_complains_form' with confidence 1.00.
2022-07-03 14:18:37 DEBUG    rasa.core.actions.forms  - Validating user input 'UserUttered(text: stop, intent: stop_the_flow, entities: stop (Type: restart, Role: Non
e, Group: None), use_text_for_featurization: False)'.
2022-07-03 14:18:37 DEBUG    rasa.core.actions.forms  - Validating extracted slots: {'issue_number': 'stop'}
2022-07-03 14:18:37 DEBUG    rasa.core.actions.action  - Calling action endpoint to run action 'validate_network_complains_form'.
2022-07-03 14:18:37 DEBUG    rasa.core.actions.forms  - Deactivating the form 'network_complains_form'
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Policy prediction ended with events '[<rasa.shared.core.events.DefinePrevUserUtteredFeaturization object at 0x0000
0189B8533EC8>]'.
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Action 'network_complains_form' ended with events '[<rasa.shared.core.events.SlotSet object at 0x00000189B8515788>
, <rasa.shared.core.events.SlotSet object at 0x00000189B853E888>, <rasa.shared.core.events.SlotSet object at 0x00000189B853ED48>, <rasa.shared.core.events.SlotSet obj
ect at 0x00000189B853CC48>, <rasa.shared.core.events.ActiveLoop object at 0x00000189B853CEC8>]'.
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Current slot values:
        issue_number: stop
        issue_date: None
        issue_type: None
        number_1: None
        number_2: None
        comment_1: None
        comment_2: None
        location: None
        restart: stop
        stop_the_flow_answer: no
        language: None
        requested_slot: None
        session_started_metadata: None
2022-07-03 14:18:37 DEBUG    rasa.engine.runner.dask  - Running graph with inputs: {'__tracker__': <rasa.shared.core.trackers.DialogueStateTracker object at 0x0000018
9B8520B08>}, targets: ['select_prediction'] and ExecutionContext(model_id='36d94f741fed4527920b82bf6b583faf', should_add_diagnostic_data=False, is_finetuning=False, n
ode_name=None).
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'rule_only_data_provider' running 'RuleOnlyDataProvider.provide'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'domain_provider' running 'DomainProvider.provide_inference'.
2022-07-03 14:18:37 DEBUG    rasa.engine.graph  - Node 'run_MemoizationPolicy0' running 'MemoizationPolicy.predict_action_probabilities'.
2022-07-03 14:18:37 DEBUG    rasa.core.policies.memoization  - Current tracker state:
[state 1] user intent: greet | previous action name: action_listen
[state 2] user intent: greet | previous action name: response_greet
[state 3] user intent: affirm | previous action name: action_listen
[state 4] user intent: affirm | previous action name: network_complains_form | slots: {'issue_number': (1.0,)}
[state 5] user intent: affirm | previous action name: response_final_answer | slots: {'issue_number': (1.0,)}
[state 6] user intent: affirm | previous action name: stop_the_flow_answer_form | slots: {'issue_number': (1.0,), 'stop_the_flow_answer': (1.0,)}
2022-07-03 14:18:37 DEBUG    rasa.core.policies.ensemble  - Predicted next action using TEDPolicy.
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Predicted next action 'action_listen' with confidence 0.99.
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Policy prediction ended with events '[]'.
2022-07-03 14:18:37 DEBUG    rasa.core.processor  - Action 'action_listen' ended with events '[]'.
2022-07-03 14:18:37 DEBUG    rasa.core.lock_store  - Deleted lock for conversation '2634ef14ab7a4350b76a21a23b65900e'.
Your input ->                                                                       

@Juste any help please?