New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cherry-wit

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cherry-wit

cherry plugin to interact with wit.ai

1.0.2
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

cherry-wit

config

"witd_url": "http://192.168.1.68:8080",
"wit_token": "MY_TOKEN",

api

Produces "from: wit" messages. e.g.

cherry.handle({
  wit: function (message) {
    var plugins = cherry.plugins();
    var intent = message.outcomes[0].intent;

    if (intent === 'lights_on') {
      plugins.hue({on: true});
    } else if (intent === 'lights_off') {
      plugins.hue({on: false});
    } else {
      console.log("unkown intent " + intent);
    }
  }
});

Keywords

cherry

FAQs

Package last updated on 24 Oct 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts