bot-kit
Version:
Framework for building chat bots. Currently supports Facebook Messenger and will support Amazon Lex.
27 lines (22 loc) • 439 B
JavaScript
/////////////////////////
// Intent.js
// 2017 (c) Eli Levin
// bot-kit
/////////////////////////
//
// 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;
};