Giter Club home page Giter Club logo

botkit-middleware-witai's Introduction

Use Wit.ai's natural language tools in your Botkit-powered Bot!

This middleware plugin for Botkit allows you to seamlessly integrate Wit.ai natural language intent APIs into your Botkit bot.

Wit.ai provides a service that uses machine learning to help developers handle natural language input. The Wit API receives input from the user, and translates it into one or more "intents" which map to known actions or choices. The power of Wit is that it can continually be trained to understand more and more responses without changing the underlying bot code!

Setup

Create a Wit application here. Then, set up and train at least one intent.

From your app's settings page, snag the Server Access Token. You will need this to use Wit's API.

Add botkit-middleware-witai as a dependency to your Botkit bot!

npm install --save botkit-middleware-witai

Enable the middleware:


var wit = require('botkit-middleware-witai')({
    token: <my_wit_token>
});

controller.middleware.receive.use(wit.receive);

controller.hears(['hello'],'direct_message',wit.hears,function(bot, message) {

    // ...
});

For a full example example_bot.js

What it does

Using the Wit receive middleware with Botkit causes every message that is sent to your bot to be first sent to Wit.ai for processing. The results of the call to Wit.ai are added into the incoming message as message.intents, and will match the results of this Wit.ai API call.

Using the Wit hears middleware tells Botkit to look for Wit.ai intents information, and match using this information instead of the built in pattern matching function.

You must make an intent entity in the understandings area of wit.ai and train it to register certain expressions.

I.e "intent" -> "weather"

Expression: "What is the weather?" and that maps to the weather intent.

Unless you want to directly access the information returned by wit, you can use this transparently by enabling bot the receive and hears middlewares.

botkit-middleware-witai's People

Contributors

dfischer avatar anonrig avatar robinjayaswal avatar ouadie-lahdioui avatar

Watchers

James Cloos avatar Artur Barseghyan avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.