Skip to content

Instantly share code, notes, and snippets.

@adam-ra
Last active February 28, 2019 21:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adam-ra/01c335833bea7da2d2797fcca5e818a4 to your computer and use it in GitHub Desktop.
Save adam-ra/01c335833bea7da2d2797fcca5e818a4 to your computer and use it in GitHub Desktop.
Alexa intent schema to force one catch-it-all intent
{
"intents": [
{
"slots": [
{
"name": "Text",
"type": "AMAZON.LITERAL"
}
],
"intent": "WhateverIntent"
},
{
"intent": "AMAZON.HelpIntent"
},
{
"intent": "AMAZON.StopIntent"
},
{
"intent": "AMAZON.CancelIntent"
}
]
}
@pavangadagi
Copy link

I have a question
will this take return the entire speech of the user ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment