manthanhd / talkify

Talkify is an open source framework with an aim to standardize and model conversational AI enabling development of personal assistants and chat bots. The mission of this framework is to make developing chat bots and personal assistants as easy as spinning up a simple website in html.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Types for binding static text responses to topics

manthanhd opened this issue · comments

This will allow people to have a static responses set for topcis like help, hello etc.

Currently, I'm imagining this to be a wrapper around the skill class, similar to how SingleLineMessage and MultiLineMessage classes work.

Implementation might look like this:

var staticSkill = new StaticResponseSkill('help', 'I can help you with many things like booking an appointment, checking mail etc');
bot.addSkill(staticSkill);