How VirtualAlexa Gets Configured
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
let alexa = virtualAlexa.VirtualAlexa.Builder() | |
.handler("src/index.handler") // Lambda function file and name | |
.intentSchemaFile("./speechAssets/IntentSchema.json") // Path to IntentSchema.json | |
.sampleUtterancesFile("./speechAssets/SampleUtterances.txt") // Path to SampleUtterances | |
.create(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment