I am developing a bot using Microsoft bot framework. for the language processing, I use Luis so that I can ask the same question in a different way. is there a way to respond the same answer in a different way as in below-using bot framework
[
"Hi, How is it going?",
"Good"
],
[
"Hi, How is it going?",
"Fine"
],
[
"Hi, How is it going?",
"Okay"
],
[
"Hi, How is it going?",
"Great"
],
[
"Hi, How is it going?",
"Could be better."
],
[
"Hi, How is it going?",
"Not so great."
]
I am using Node.js to develop this