Skip to content

Instantly share code, notes, and snippets.

@leoaiassistant
Last active August 3, 2020 08:09
Show Gist options
  • Save leoaiassistant/cb767fefe0f2217b039172e33db90755 to your computer and use it in GitHub Desktop.
Save leoaiassistant/cb767fefe0f2217b039172e33db90755 to your computer and use it in GitHub Desktop.
const LaunchRequestHandler = {
canHandle(handlerInput) {
return handlerInput.requestEnvelope.request.type === 'LaunchRequest';
},
handle(handlerInput) {
const speechText = 'Welcome to the Language Teacher! Lets start building your program, pick a Language!';
return handlerInput.responseBuilder
.speak(speechText)
.reprompt(speechText)
.withSimpleCard('Hello World', speechText)
.getResponse();
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment