Nlu fallback how to handle

I want to send message that acts as an User message automatically when my custom fallback action is called. Code snippet: My Custom fallback action class CustomActionFallbackAction(Action): def name(self): return “action_default_fallback” def run(self, dispatcher, tracker, domain): return [UserUttered(text=‘create a payment from x to y’, parse_data={ “intent”: {‘confidence’: 0.9, ‘name’: “create_payment”}, “entities”: [] })] So, whenever custom fallback action is executed, then automatically it sends a message which is written in UserUttered text and then it should extract the entities and run the appropriate action based on the user text/message.

please format your code with ``` so this is legible :slight_smile: