Add interaction model

This commit is contained in:
MirnaM
2017-11-30 15:31:33 +01:00
parent 52686bd258
commit ec781c5edd
2 changed files with 105 additions and 0 deletions

105
InteractionModel.json Normal file
View File

@@ -0,0 +1,105 @@
{
"languageModel": {
"types": [
{
"name": "ACTION_SLOT_TYPE",
"values": [
{
"id": null,
"name": {
"value": "do",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "know",
"synonyms": []
}
}
]
},
{
"name": "INFO_SLOT_TYPE",
"values": [
{
"id": null,
"name": {
"value": "process",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "services",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "project",
"synonyms": []
}
},
{
"id": null,
"name": {
"value": "technologies",
"synonyms": []
}
}
]
}
],
"intents": [
{
"name": "AMAZON.CancelIntent",
"samples": []
},
{
"name": "AMAZON.HelpIntent",
"samples": []
},
{
"name": "AMAZON.StopIntent",
"samples": []
},
{
"name": "GetInfoIntent",
"samples": [
"give me {InfoSlot}",
"say something about {InfoSlot}",
"tell me about your {InfoSlot}",
"about your {InfoSlot}",
"about {InfoSlot}",
"i want to know about {InfoSlot}",
"tell me about {InfoSlot}"
],
"slots": [
{
"name": "InfoSlot",
"type": "INFO_SLOT_TYPE"
}
]
},
{
"name": "WhatIntent",
"samples": [
"what do you {ActionSlot}",
"tell me what you {ActionSlot}",
"i want to know what you {ActionSlot}"
],
"slots": [
{
"name": "ActionSlot",
"type": "ACTION_SLOT_TYPE"
}
]
}
],
"invocationName": "saburly"
}
}