In Self the learn() function takes a response category object that has a pattern and template.
For example:
learn( { pattern : "hello", template : "How are you today?" } );
or,
var response = new Object(); response.pattern = "hi"; response.template = "bye"; learn( response );
|