I’m trying to create a simple form that asks the user their name and extracts it into a slot using a form. I followed the simple guidelines for a form here.
The form action “name_form” is successfully triggered upon the intent, but then the bot simply goes to the default fallback message instead of asking the question in “utter_ask_first_name”. Why isn’t the utter_ask response being triggered?
My rule:
- rule: Get name
steps:
- intent: findout_personal_message
- action: name_form
- active_loop: name_form
The form:
forms:
name_form:
first_name:
- type: from_text
The “utter” in my responses:
utter_ask_first_name:
- text: "What is your first name?"
This is the debugger state: