I am working on a skill where one of the intents is to send a message. I would like to have as many options as possible (speech to text would be ideal if it was possible). The intent would be:
Tell {NAME} {MESSAGE}.
To make the widest possible array of message options I was thinking about doing multiple variations of the intent with something like:
Tell {NAME} {MESSAGE_SLOT_1} {MESSAGE_SLOT_2} {MESSAGE_SLOT_3} {MESSAGE_SLOT_4}
Each slot would would then be optional and I could fill each slot with a lot of common words.
Otherwise, the main option I am seeing is just:
Tell {NAME} {MESSAGE}
with the MESSAGE slot populated with a list of common phrases or sentences.
Does anyone have any advice on how to handle something like this?