Multiple utterances inside a story

Does writing multiple utterances in a story works? or is there any other way to do it?

any help would be appreciated

@ritik872000 ,

The ‘raw’ utterances are first interpreted by NLU, to determine the intent of an utterance. Then, stories provide the training data for the bot to predict what the next action of the bot should be. These stories contain a sequence of conversation turns, typically user intent -> bot action -> user intent -> bot action -> etc.

When you say does writing multiple utterances in a story works?, can you maybe give an example of what you’re trying to solve?

following is an example of what I am trying to do

story1

  • intent
    • utter_1
    • utter_2

@ritik872000 ,

Yes, this will work.

I assume that utter_1 and utter_2 are the bot utterances that you want to predict.

1 Like