I need a lot of actions and slot_was _set events in the story. My story looks like this:
- story: story1
steps:
- intent: some_intent
- slot_was_set:
- slot_from_action_session_start: True
- action: action_1
- slot_was_set:
- slot_from_action_1: Set
- action: action_2
- slot_was_set:
- slot_from_action_2: null
- action: action_3
- slot_was_set:
- slot_from_action_3: null
- action: utter_one
- action: action_4
- checkpoint: check1
- story: story1 checkpoint1
steps:
- checkpoint: check1
- slot_was_set:
- slot_from_action_4: 4
- action: utter_two
- action: utter_three
- action: utter_four
- story: story1 checkpoint1
steps:
- checkpoint: check1
- slot_was_set:
- slot_from_action_4: 5
- action: action_5
- slot_was_set:
- slot_from_action_5: 0
- slot_from_action_5: 10
- action: utter_five
- action: utter_six
- action: utter_four
And this story works fine, but almost all of the other sories, which don’t have anything in common with this story, breake. The other stories worked fine untill I added 5th action to this story.
Why this is happening? Does the sories have limit for actions or slot_was_set events?