I want to iterate over my story until a slot_value condition is met. Below is my story -
- story: spending form story
steps:
- action: utter_examine_spending
- action: fixed_spending_form
- active_loop: fixed_spending_form
- active_loop: null
- action: spending_form
- active_loop: spending_form
- active_loop: null
- action: action_submit_form
I want to iterate over this story until a particular slot value in the spending_form is true.
Can I do this in the stories.yml itself, or do I need to implement custom actions, if yes, what kind of custom action?
I appreciate any help. Thanks