Я пытаюсь настроить навык, который работает с несколькими устройствами Alexa, и я хочу настроить его так, чтобы, когда пользователь находится в одной комнате, разговаривая с Alexa, Alexa мог сообщить пользователю, что они ошибаются.
Если я не могу сделать это, то есть ли способ настроить это через веб-портал, который будет общаться с устройством Alexa?
const findTheKitchen = function() {
if (this.event.request.dialogState === 'COMPLETED') {
console.log("explore Kitchen done");
const kitchenClue1 = this.event.request.intent.slots.kitchenClue1.resolutions.resolutionsPerAuthority[0];
var speechOutput = "what schoops out soup out of a bowl?";
}
else (this.event.request.dialogState === 'NOTCOMPLETE') {
const kitchenClue1 = this.event.request.intent.slots.kitchenClue1.resolutions.resolutionsPerAuthority[0];
var speechOutput = "this is the " + this.event.request.intent.slots.room.value + " wern't you looking for the kitchent"
}
const findTheSpoonsInTheKitchen = function() {
}