Last active
June 16, 2018 07:10
-
-
Save ankkal/4827ea3c9e1274a3bdfc68884a637f25 to your computer and use it in GitHub Desktop.
ASK Chennai
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Place this inside the getnewfacthandler code inside the handler function | |
const request = handlerInput.requestEnvelope.request; | |
// SLOT: planet | |
if (request.intent.slots.planet && | |
request.intent.slots.planet.value && | |
request.intent.slots.planet.value !== '?' | |
) { | |
const planet = request.intent.slots.planet; | |
console.log(' slot item was heard as ' + planet.value); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment