Done_Done

Done

Hi @mishra-atul5001!

I don’t use rasa X much :sweat_smile:.

Though by the looks of it, it seems that the bot is responding correctly. Let me explain:

So if you define your utterances like this:

utter_slot_a:
- text: Some text.
- text: Some more text.
- text: Some more more text. 

Then the bot will pick any one of those texts at random for that utterance.

So if you want all your utterances to be asked with buttons, you need to define buttons in all the text key. Something like this:

utter_slot_a:
- text: Some text.
  buttons:
  - title: Title 1
    payload: /some_intent_1{"some_entity_1": "some value 1"}
  - title: Title 2
    payload: /some_intent_2{"some_entity_2": "some value 2"}
- text: Some more text.
  buttons:
  - title: Title 1
    payload: /some_intent_1{"some_entity_1": "some value 1"}
  - title: Title 2
    payload: /some_intent_2{"some_entity_2": "some value 2"}
- text: Some more more text.
  buttons:
  - title: Title 1
    payload: /some_intent_1{"some_entity_1": "some value 1"}
  - title: Title 2
    payload: /some_intent_2{"some_entity_2": "some value 2"} 

Hope that helps :slightly_smiling_face:.

@mishra-atul5001, Did you retrain the model after correcting the utterances? Retraining is required if you make any changes in the domain.

Done

@mishra-atul5001 did you also mark the model as active from the Rasa X UI?

Done

I’ll be honest, Rasa X is designed to run on a server so we can’t guarantee that it will run smoothly locally. But have you tried doing a hard refresh on your browser, or trying it in incognito mode? Because that’s indeed very strange behaviour