Action Execute and Action Listen

Hello! I have a question :blush:

When the chatbot init, execute by HTTP POST “action_help” to get “button_template”. Example: http://localhost:5005/conversations/default/execute data '{“action”: “action_help”}.

Then when the user put a message: I use HTTP POST respond: Example: http://localhost:5005/conversations/default/respond data '{“query”: “hello”}.

But predit ‘action_listen’.

I must to put in stories.md

- action_help
 *greet
 -utter_greet

? Exist other solutions? Thanks!

Solution: In action_help: return [ActionReverted()]

Thanks!