UNPKG

bot-kit

Version:

Framework for building chat bots. Currently supports Facebook Messenger and will support Amazon Lex.

27 lines (22 loc) 439 B
///////////////////////// // Intent.js // 2017 (c) Eli Levin // bot-kit ///////////////////////// 'use strict' // // Representation of action taken by AI on some data. // function Intent(label, action){ this.label = label; this.action = action; }; // // Getters // Intent.prototype.getLabel = function() { return this.label; }; Intent.prototype.getAction = function() { return this.action; };