Call utter from custom action

Hi all!

Can I call my utter which I declare in my domain.yml from my custom action?

yes, just return at the end of your action “return [FollowupAction(name_of_action_utter_form)]”

1 Like

Or do

dispatcher.utter_template(‘utter_submit’, tracker)

in your submit function.

1 Like

Thanks a lot!!