From ec781c5edd65e0519c8bba181944e80016f641ad Mon Sep 17 00:00:00 2001 From: MirnaM Date: Thu, 30 Nov 2017 15:31:33 +0100 Subject: [PATCH] Add interaction model --- InteractionModel.json | 105 +++++++++++++++++++++++++++++ saburlySkill.js => SaburlySkill.js | 0 2 files changed, 105 insertions(+) create mode 100644 InteractionModel.json rename saburlySkill.js => SaburlySkill.js (100%) diff --git a/InteractionModel.json b/InteractionModel.json new file mode 100644 index 0000000..f6bbdb4 --- /dev/null +++ b/InteractionModel.json @@ -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" + } +} \ No newline at end of file diff --git a/saburlySkill.js b/SaburlySkill.js similarity index 100% rename from saburlySkill.js rename to SaburlySkill.js