Long slots alexa skill


#1

Hi, is there a way to say a few sentences for the slot and alexa to seperate them with " . "
example:
we are testing alexa skill. this is a test


#2

There is a Search Query slot type, but typically, long sentences don’t work very well on Alexa. Especially when it’s more than one sentence.


#3

This is my solution:
A “loop” into text intent.
DurationOfSpotIntent() {
this.ask("say a sentece)
}
TextSpotIntent() {
this.ask(say another sentence or continue with color)
}
TextSpotIntent is triggered when user say sentence. I can format the user input and seperate sentences.