I have Main Story as below
-
story: step:
- intent: user_intent
- checkpoint: user_form_checkpoint
- checkpoint: user_form2_checkpoint
- action: action_followup
-
story: step:
- checkpoint: user_form_checkpoint
- action: user_form
- active_loop: user_form
- slot_was_set:
- slot_name: value
- active_loop: null
-
story: step:
- checkpoint: user_form2_checkpoint
- action: user_form2
- active_loop: user_form2
- slot_was_set:
- slot_name2: value
- active_loop: null
Question:
- If I have only 1 check point then flow never goes back to action_followup in main story
- If I have 2 check point then it executes 2nd check point and again flow never goes back to action_followup in main story
I may have wrong understanding about checkpoints. In that case is there anything in rasa through which I can achieve above mention main story flow?