Skip to content

Instantly share code, notes, and snippets.

@ThomasPe
Created November 14, 2017 08:02
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 ThomasPe/c67d829619371dda8c7d0db60d9ba963 to your computer and use it in GitHub Desktop.
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
{
"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