Skip to content

thegafo/convo-integrator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Conversation Integrator

Low-level API to facilitate natural language interfaces.

Example usage

var Convo = require('convo-integrator');

var config = {
  actions: {
    say: (phrase) => {
      console.log(phrase);
    }
  },
  intents: {
    HelloIntent: {
      triggers: ['hi', 'hey', 'hello'],
      actions: [
        {say: 'hello! this worked'}
      ]
    }
  }
}

var convo = new Convo(config);
convo.prompt();

About

Simple tool to facilitate natural language interfaces.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published