Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
recastbot
helps you build applications that understand natural language using Recast.AI's Natural Language Processing & Understanding API.
Handle intents using expressive words such as hears
, fails
, any
, and otherwise
to make your code meaningful and readable.
You can integrate recastbot
anywhere. It does not make any assumptions about frameworks or platforms.
recastbot
is useful for building conversational interfaces. Some examples include chatbots (e.g. Slack, Twitter bots, HipChat bots), virtual assistants, cross-platform conversational interfaces, and many more.
import RecastBot from 'recastbot'
const ai = new RecastBot(API_TOKEN)
ai.process(textToProcess, userData, respondFn)
.hears('weather', (res, userData, respondFn) => {
if (res.sentences[0] && res.sentences[0].entities) {
let entities = res.sentences[0].entities
// defaults...
let location = userData.location
let datetime = 'today'
// get entities from Recast.AI
if (entities.location) location = entities.location[0].value
if (entities.datetime) time = entities.datetime[0].value
// get weather status as {string}
let weather = getWeather(location, datetime)
// send response to user
respondFn('The weather in ' + location + ' ' + datetime + ' is ' + weather)
} else {
// ask user for time and place
respondFn('Hi, ' + userData.firstName + '! Weather? where?')
}
})
.hears('greetings', (res, userData, respondFn) => {
respondFn('Hello, ' + userData.firstName + '!')
})
.otherwise((res, userData, respondFn) => {
respondFn('Sorry, I didn\'t get that... ')
})
.fails((err) => {
respondFn('Sorry, there was an error. Try again later.')
console.error(err.message)
})
Input:
"How is the weather in San Juan today?"
Output:
"The weather in San Juan is cloudy, 77ºC, 79% humidity"
To use recastbot
you need to sign up to Recast.AI and create a Recast.AI app. This allows you to make API requests from your application/bot.
This documentation assumes that you know how Recast.AI works. See the Recast.AI docs for more information.
Note: Recast.AI is currently (as of the writing of this document) in private beta. That means you won't have immediate access to the API; be patient.
Installing recastbot
is as simple as installing any other npm module:
$ npm install recastbot --save
First, you need to initialize a new RecastBot instance with your API_TOKEN
and store it somewhere (ai
is a good name for it, but you can call it whatever you want):
// ES6+
import RecastBot from 'recastbot'
const ai = new RecastBot(API_TOKEN)
// or, in ES5
var RecastBot = require('recastbot')
var ai = new RecastBot(APITOKEN)
When you have your RecastBot instance ready, you can process a string using the .process()
method. This method should be called for each string you process.
.process()
returns an object with several methods that allow you to register handlers for each intent, catch API errors, handle any event at once, and catch unhandled intents.
The first parameter is the string to be processed and the remaining arguments will be passed to the handlers you register for each intent.
import RecastBot from 'recastbot'
const ai = new RecastBot(API_TOKEN)
// ...
let bot = ai.process(text, optArgument1, ...optArgumentN)
bot.hears(intentName, handlerFn)
Use the .hears()
method to register an intent handler. The first argument is the name of the intent and the second argument is the handler (a callback function). The handler function is called when the specified intent is matched.
One or more arguments are passed to the callback function: the first one is always the response from Recast.AI and the rest (if any) are the ones passed through .process()
Real-world Example:
// ...
let bot = ai.process('Hi, RecastBot!', userData, respondFn)
bot.hears('greetings', (response, userData, respondFn) => {
// handler function for 'greetings' intent
respondFn('Hello, ' + userData.firstName + '!')
})
In the example above, we passed three arguments to .process()
, the first one is used by the Recast.AI API and the last two are used in the handler function passed to .hears()
:
'Hi, RecastBot!'
{string} [required]: The text to be processeduserData
{object} [arbitrary; optional]: The user's data (used in the handler function)respondFn
{function} [arbitrary; optional]: The function that will be used to respond back to the user (also used in the handler function)bot.otherwise(handlerFn)
When the intent does not match any handlers, the .otherwise()
method is called. The .otherwise()
method works the same way as .hears()
but with a small difference: it takes only a handler (callback function). The handler function is called when no handler function was provided for that intent or when no intents were registered.
Real-world Example:
// ...
let bot = ai.process('Open the pod bay doors.', userData, respondFn)
bot.hears('greetings', (response, userData, respondFn) => {
respondFn('Hello, ' + userData.firstName + '!')
})
bot.otherwise((response, userData, respondFn) => {
respondFn('I\'m sorry, ' + userData.firstname + ' I don\'t understand.')
})
bot.fails(errorHandlerFn)
When an error with the Recast.AI API occurs, the method .fails()
is called. The .fails()
method takes a callback function as an argument. When an error occurs, it calls your defined callback function. It passes a new Error()
object along with the additional methods passed through .process()
.
Example:
ai.process('Hi', userData, respondFn)
.hears('greeting', greetingFn)
.otherwise(otherwiseFn)
.fails((err, userData, respondFn) => {
console.error(err.message)
respondFn('There is a problem with my brain. Please try again later.')
})
You can chain multiple methods to make your code look simpler and meaningful. This is useful because it allows you visualize how data flows through different handler functions.
ai.process('Hi, RecastBot!', userData, respondFn)
.hears('greetings', (response, userData, respondFn) => {
respondFn('Hello, ' + userData.firstName + '!')
})
.otherwise((response, userData, respondFn) => {
respondFn('Sorry,' + userData.firstname + ' I do not understand')
})
.fails((err, userData, respondFn) => {
console.error(err.message)
respondFn('There is a problem with my brain. Please try again later.')
})
If you prefer an alternate way for registering handler functions for your intents in bulk, you can use the .setHandlers()
method. This method takes an object containing the handler functions and registers each of them for you. Make sure your object's properties match your app's intent names.
const myHandlers = {
'greetings': (response, userData, respondFn) => {
respondFn('Hello, ' + userData.firstName + '!')
},
'get status': (response, userData, respondFn) => {
respondFn('I\'m feeling great :)')
}
}
ai.process('How are you?', userData, respondFn)
.setHandlers(myHandlers)
.fails((err, userData, respondFn) => {
respondFn('There is a problem with my brain. Please try again later.')
console.error(err.message)
})
Something does not work as expected or perhaps you think this module needs a feature? Please open an issue using GitHub's issue tracker.
Pull Requests (PRs) are welcome. Make sure you follow the same basic stylistic conventions as the original code (i.e. "JavaScript standard code style")
Copyright (c) 2016 Kristian Muñiz
Inspired by Mike Brevoort's witbot
: an adaptation of Wit – a NLP service similar to Recast.AI
I am not affiliated in any way to Recast.AI and this is not an official library.
FAQs
Semantic interface for Natural Language Processing via Recast.AI
The npm package recastbot receives a total of 6 weekly downloads. As such, recastbot popularity was classified as not popular.
We found that recastbot demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.