Ah, nice observation
If you’re talking about the confirm
intent that is followed by different actions each time, this is different from what you mentioned - There, the confirm
intent is preceded by different actions each time, whether in your example, there is nothing preceding Kids_refuse_to_do_the_work
.
For example, this wouldn’t work
- story: story 1
- intent: first_intent
- action: utter_first
- story: story 2
- intent: first_intent
- action: utter_first_bis
but this would
- story: story 1
- intent: greet
- action: utter_greet
- intent: first_intent
- action: utter_first
- story: story 2
- intent: inform
- action: utter_thanks
- intent: first_intent
- action: utter_first_bis
and again, this wouldn’t
- story: story 1
- intent: greet
- action: utter_greet_first
- intent: first_intent
- action: utter_first
- story: story 2
- intent: greet
- action: utter_greet_second
- intent: first_intent
- action: utter_first_bis