Skip to content

connected-web/elda-ai

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

elda-ai

A natural language interface for storing and retrieving information.

Development

To run tests:

npm install
npm test

Command Line Interface

To interact with a local copy of Elda:

npm install
node cli.js

To exit the interface, type one of exit, quit, stop, or bye:

I'm listening
: quit
Ok, bye!

Design

Elda AI Design

Use as a library

To use Elda as a library, run:

npm install elda-ai --save

Then create the script example.js as follows:

var elda = require('elda-ai');
var messages = [
  'hello',
  'what is this for?',
  'help!',
  'lets take this from the top'
];

elda().then(function(instance) {
  messages.forEach(function(message) {
    instance.respondTo(message).then(console.log);
  });
});

Run the example using the command:

node example.js

Library Structure

api.js

This is the public interface to Elda.

elda(config)

This method configures and returns an API object, which can then be used to interact with Elda.

var elda = require('elda-ai');
var config = {};
var api = elda(config);

api.respondTo(message)

This method interprets a message, and forms a response.

var elda = require('elda-ai');
var message = 'Add event Kate\'s birthday party, at 5pm tomorrow';
elda().respondTo(message).then(console.log);

About

A natural language interface for storing and retrieving information.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published