Hi all!
Can I call my utter which I declare in my domain.yml from my 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)]”
Or do
dispatcher.utter_template(‘utter_submit’, tracker)
in your submit function.
Thanks a lot!!