Created
November 14, 2017 08:02
-
-
Save ThomasPe/c67d829619371dda8c7d0db60d9ba963 to your computer and use it in GitHub Desktop.
This is a model for getting a complete sentence from Alexa Skills Service
This file contains hidden or 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
{ | |
"languageModel": { | |
"types": [ | |
{ | |
"name": "CatchAllSlotType", | |
"values": [ | |
{ | |
"id": null, | |
"name": { | |
"value": "test", | |
"synonyms": [] | |
} | |
} | |
] | |
} | |
], | |
"intents": [ | |
{ | |
"name": "AMAZON.CancelIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "AMAZON.HelpIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "AMAZON.StopIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "CatchAllIntent", | |
"samples": [ | |
"{phrase}" | |
], | |
"slots": [ | |
{ | |
"name": "phrase", | |
"type": "CatchAllSlotType" | |
} | |
] | |
} | |
], | |
"invocationName": "skilinvocationname" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment