Hi Team, I have a query about form with story. I have created rasa2.0 app, it contains 4 form fields. ex:name,number,email and gender. all are text. below is my story.
-
story: Activate form
steps:
-
intent: greet
-
action: utter_name
-
action: contact_form
-
active_loop: contact_form
-
active_loop: null
-
slot_was_set:
- requested_slot: null
-
action: action_submit
-
after submit also can i give intents and actions in the same story? like below or - action: action_submit always in the last step in story?
-
story: Activate form
steps:
-
intent: greet
-
action: utter_name
-
action: contact_form
-
active_loop: contact_form
-
active_loop: null
-
slot_was_set:
- requested_slot: null
-
action: action_submit
-
intent: decision
entities:
- decision_type: Accept
-
action: utter_sym
-
can any one help me on this query? thanks.