Last active
October 3, 2019 18:14
-
-
Save kinisoftware/0f99d7c689d257f05f330a0f4189c65c to your computer and use it in GitHub Desktop.
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": { | |
| "invocationName": "conferencia molona", | |
| "intents": [ | |
| { | |
| "name": "AMAZON.CancelIntent", | |
| "samples": [] | |
| }, | |
| { | |
| "name": "AMAZON.HelpIntent", | |
| "samples": [] | |
| }, | |
| { | |
| "name": "AMAZON.StopIntent", | |
| "samples": [] | |
| }, | |
| { | |
| "name": "AMAZON.NavigateHomeIntent", | |
| "samples": [] | |
| }, | |
| { | |
| "name": "ScheduleIntent", | |
| "slots": [ | |
| { | |
| "name": "slotTime", | |
| "type": "AMAZON.TIME" | |
| }, | |
| { | |
| "name": "talkTopic", | |
| "type": "TalkTopicType" | |
| } | |
| ], | |
| "samples": [ | |
| "que charlas hay sobre {talkTopic}", | |
| "las charlas", | |
| "las charlas que hay", | |
| "que hay", | |
| "que hay a las {slotTime}", | |
| "la charla que hay a las {slotTime}", | |
| "la agenda" | |
| ] | |
| } | |
| ], | |
| "types": [ | |
| { | |
| "name": "TalkTopicType", | |
| "values": [ | |
| { | |
| "id": "BUSINESS", | |
| "name": { | |
| "value": "negocio", | |
| "synonyms": [ | |
| "industria", | |
| "venta", | |
| "empresa", | |
| "cultura" | |
| ] | |
| } | |
| }, | |
| { | |
| "id": "DEV", | |
| "name": { | |
| "value": "desarrollo", | |
| "synonyms": [ | |
| "servicios distribuidos", | |
| "equipos", | |
| "inteligencia artificial", | |
| "programación" | |
| ] | |
| } | |
| }, | |
| { | |
| "id": "MAKERS", | |
| "name": { | |
| "value": "makers", | |
| "synonyms": [ | |
| "diseño", | |
| "wearables", | |
| "bioimpresión" | |
| ] | |
| } | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment