Last active
February 28, 2019 21:51
-
-
Save adam-ra/01c335833bea7da2d2797fcca5e818a4 to your computer and use it in GitHub Desktop.
Alexa intent schema to force one catch-it-all intent
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
{ | |
"intents": [ | |
{ | |
"slots": [ | |
{ | |
"name": "Text", | |
"type": "AMAZON.LITERAL" | |
} | |
], | |
"intent": "WhateverIntent" | |
}, | |
{ | |
"intent": "AMAZON.HelpIntent" | |
}, | |
{ | |
"intent": "AMAZON.StopIntent" | |
}, | |
{ | |
"intent": "AMAZON.CancelIntent" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have a question
will this take return the entire speech of the user ?