Single word anwers

Could anyone please share working example to capture single word answers in rasa? for eg in the below chat user said “core”.How to capture that. Please share domain file,data file and story .

Bot : Have you used Rasa before?

user: yes

Bot : Ok, would you like to know more about Core or NLU?

User: core

Bot : Here’s a talk we held at PyData explaining the details of Core

Is there anything else I can help you with?

it’s easiest to have an inform intent for these cases. The story for that specific conversation is here btw: rasa-demo/get_started.md at master · RasaHQ/rasa-demo · GitHub

Thank you Akelad. So inform intent should look like ## intent:how_to_get_started in the below link. rasa-demo/nlu.md at master · RasaHQ/rasa-demo · GitHub. Could you please confirm,

or should it look like intent:enter_data??

I understand that inform intent should have all the single words that user can type in. Is that right??

Also you can try this approach to classify your entities in the single-word user responses.