Created
January 30, 2018 19:24
-
-
Save Ravenstine/c1bc5d90dd9e48ce292c31bdd4a5b59d to your computer and use it in GitHub Desktop.
UBER FOR DOGS
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
{ | |
"interactionModel": | |
{ | |
"languageModel": { | |
"types": [ | |
{ | |
"name": "WoofCount", | |
"values": [ | |
{ | |
"id": "woof2", | |
"name": { | |
"value": "woof", | |
"synonyms": [ | |
"2" | |
] | |
} | |
}, | |
{ | |
"id": "woof3", | |
"name": { | |
"value": "woof woof", | |
"synonyms": [ | |
"3" | |
] | |
} | |
}, | |
{ | |
"id": "woof4", | |
"name": { | |
"value": "woof woof woof", | |
"synonyms": [ | |
"4" | |
] | |
} | |
}, | |
{ | |
"id": "woof5", | |
"name": { | |
"value": "woof woof woof woof", | |
"synonyms": [ | |
"5" | |
] | |
} | |
}, | |
{ | |
"id": "woof6", | |
"name": { | |
"value": "woof woof woof woof woof", | |
"synonyms": [ | |
"6" | |
] | |
} | |
} | |
] | |
} | |
], | |
"intents": [ | |
{ | |
"name": "AMAZON.CancelIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "AMAZON.HelpIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "AMAZON.StopIntent", | |
"samples": [] | |
}, | |
{ | |
"name": "RuffIntent", | |
"samples": [ | |
"ruff", | |
"ruff ruff", | |
"ruff ruff ruff" | |
], | |
"slots": [] | |
}, | |
{ | |
"name": "WoofIntent", | |
"samples": [ | |
"woof {count}", | |
"woof" | |
], | |
"slots": [ | |
{ | |
"name": "count", | |
"type": "WoofCount" | |
} | |
] | |
} | |
], | |
"invocationName": "woof" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment