diff --git a/lambda/src/com/amazon/ask/githubtemplates/handlers/LaunchRequestHandler.java b/lambda/src/com/amazon/ask/githubtemplates/handlers/LaunchRequestHandler.java index 80bdadd..12ba210 100644 --- a/lambda/src/com/amazon/ask/githubtemplates/handlers/LaunchRequestHandler.java +++ b/lambda/src/com/amazon/ask/githubtemplates/handlers/LaunchRequestHandler.java @@ -28,10 +28,11 @@ public class LaunchRequestHandler implements RequestHandler { @Override public Optional handle(HandlerInput input) { - String speechText = "Welcome to GitHub templates! Let's create a repository!"; + String speechText = "Welcome to GitHub templates! What would you want to do today!"; + String repromptText = "Github Templates here, what shall I do?!"; return input.getResponseBuilder() .withSpeech(speechText) - .withReprompt(speechText) + .withReprompt(repromptText) .build(); } diff --git a/lambda/src/com/amazon/ask/githubtemplates/handlers/github/GithubAPI.java b/lambda/src/com/amazon/ask/githubtemplates/handlers/github/GithubAPI.java index a03102f..aee8731 100644 --- a/lambda/src/com/amazon/ask/githubtemplates/handlers/github/GithubAPI.java +++ b/lambda/src/com/amazon/ask/githubtemplates/handlers/github/GithubAPI.java @@ -14,6 +14,7 @@ public class GithubAPI { "java", new Pair<>("Spring-Boot-Framework", "Spring-Boot-Application-Template"), "typescript", new Pair<>("carsonfarmer", "ts-template"), "javascript", new Pair<>("jlengrand", "openwc-template"), + "HTML", new Pair<>("jlengrand", "openwc-template"), "elm", new Pair<>("jlengrand", "elm-firebase") );