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