Skip to content

Instantly share code, notes, and snippets.

@ChrisNeff
Last active February 17, 2022 15:11
Show Gist options
  • Save ChrisNeff/bd7b75cd077f7156ac952c6592f56c68 to your computer and use it in GitHub Desktop.
Save ChrisNeff/bd7b75cd077f7156ac952c6592f56c68 to your computer and use it in GitHub Desktop.
Alexa pass-through
{
"interactionModel": {
"languageModel": {
"invocationName": "<REPLACE ME>",
"intents": [
{
"name": "GetUserIntent",
"slots": [
{
"name": "phrase",
"type": "phrase"
}
],
"samples": [
"{phrase}"
]
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "AMAZON.NavigateHomeIntent",
"samples": []
}
],
"types": [
{
"name": "phrase",
"values": [
{
"name": {
"value": "run azure"
}
},
{
"name": {
"value": "run skill"
}
},
{
"name": {
"value": "run bots"
}
}
]
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment