Skip to content

Instantly share code, notes, and snippets.

@LucioMSP
Last active July 7, 2022 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LucioMSP/03daf49dac5c4fa643eb0eadaec5985c to your computer and use it in GitHub Desktop.
Save LucioMSP/03daf49dac5c4fa643eb0eadaec5985c to your computer and use it in GitHub Desktop.
Example JSON file to connect a Bot created in Azure to an Alexa Skill
{
"interactionModel": {
"languageModel": {
"invocationName": "maria bot",
"intents": [
{
"name": "GetUserIntent",
"slots": [
{
"name": "phrase",
"type": "phrase"
}
],
"samples": [
"{phrase}"
]
},
{
"name": "AMAZON.StopIntent",
"samples": [
"para",
"detente",
"alto"
]
}
],
"types": [
{
"name": "phrase",
"values": [
{
"name": {
"value": "dame detalles de maria bot"
}
},
{
"name": {
"value": "dame mas informacion de maria bot"
}
}
]
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment