Skip to content

Instantly share code, notes, and snippets.

@kinisoftware
Created July 19, 2019 16:11
Show Gist options
  • Select an option

  • Save kinisoftware/25a7dfcb56397457f7064de0d424f8e9 to your computer and use it in GitHub Desktop.

Select an option

Save kinisoftware/25a7dfcb56397457f7064de0d424f8e9 to your computer and use it in GitHub Desktop.
{
"interactionModel": {
"languageModel": {
"invocationName": "conferencia muy 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"
},
{
"name": "track",
"type": "TrackType",
"samples": [
"en {track}",
"en el {track}",
"del {track}",
"{track}"
]
}
],
"samples": [
"que charlas hay sobre {talkTopic} en {track}",
"las charlas del {track}",
"las charlas que hay en {track}",
"que hay en {track}",
"que hay a las {slotTime} en {track}",
"la charla que hay a las {slotTime} en {track}",
"la agenda del {track}"
]
}
],
"types": [
{
"name": "TrackType",
"values": [
{
"name": {
"value": "2",
"synonyms": [
"segundo",
"segundo track",
"auditorio"
]
}
},
{
"name": {
"value": "1",
"synonyms": [
"primero",
"primer tack",
"sala ágora",
"sala agora"
]
}
}
]
},
{
"name": "TalkTopicType",
"values": [
{
"id": "JS",
"name": {
"value": "javascript",
"synonyms": [
"vue",
"angular",
"react",
"node"
]
}
},
{
"id": "JVM",
"name": {
"value": "jvm",
"synonyms": [
"groovy",
"kotlin",
"java"
]
}
},
{
"id": "AGILE",
"name": {
"value": "agile",
"synonyms": [
"daily",
"retrospectiva",
"ágil",
"kanban",
"scrum"
]
}
}
]
}
]
},
"dialog": {
"intents": [
{
"name": "ScheduleIntent",
"confirmationRequired": false,
"prompts": {},
"slots": [
{
"name": "slotTime",
"type": "AMAZON.TIME",
"confirmationRequired": false,
"elicitationRequired": false,
"prompts": {}
},
{
"name": "talkTopic",
"type": "TalkTopicType",
"confirmationRequired": false,
"elicitationRequired": false,
"prompts": {}
},
{
"name": "track",
"type": "TrackType",
"confirmationRequired": false,
"elicitationRequired": true,
"prompts": {
"elicitation": "Elicit.Slot.1386551590624.1431773897280"
}
}
]
}
],
"delegationStrategy": "ALWAYS"
},
"prompts": [
{
"id": "Elicit.Slot.1386551590624.1431773897280",
"variations": [
{
"type": "PlainText",
"value": "¿en qué track?"
},
{
"type": "PlainText",
"value": "¿de qué track?"
}
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment