Use IBM Watson's Assistant service to chat with your Botkit-powered Bot!
This middleware plugin for Botkit allows developers to easily integrate a Watson Assistant workspace with multiple social channels like Slack, Facebook, and Twilio. Customers can have simultaneous, independent conversations with a single workspace through different channels.
Middleware Overview
- Automatically manages context in multi-turn conversations to keep track of where the user left off in the conversation.
- Allows greater flexibility in message handling.
- Handles external databases for context storage.
- Easily integrates with third-party services.
- Exposes the following functions to developers:
Function Overview
Installation
$ npm install botkit-middleware-watson --save
Prerequisites
-
Sign up for an IBM Cloud account.
-
Create an instance of the Watson Assistant service and get your credentials:
- Go to the Watson Assistant page in the IBM Cloud Catalog.
- Log in to your IBM Cloud account.
- Click Create.
- Copy the
apikey
value, or copy the username
and password
values if your service instance doesn't provide an apikey
. - Copy the
url
value.
-
Create a workspace using the Watson Assistant service and copy the workspace_id
. If you don't know how to create a workspace follow the Getting Started tutorial.
Acquire channel credentials
This document shows code snippets for using a Slack bot with the middleware. (If you want examples for the other channels, see the examples/multi-bot folder.
The multi-bot example app shows how to connect to Slack, Facebook, and Twilio IPM bots running on a single Express server.)
You need a Slack token for your Slack bot to talk to Watson Assistant.
If you have an existing Slack bot, then copy the Slack token from your Slack settings page.
Otherwise, follow Botkit's instructions to create your Slack bot from scratch. When your bot is ready, you are provided with a Slack token.
Bot setup
This section walks you through code snippets to set up your Slack bot. If you want, you can jump straight to the full example.
In your app, add the following lines to create your Slack controller using Botkit:
const slackController = Botkit.slackbot();
Spawn a Slack bot using the controller:
const slackBot = slackController.spawn({
token: YOUR_SLACK_TOKEN
});
Create the middleware object which you'll use to connect to the Watson Assistant service.
If your credentials are username
and password
use:
const watsonMiddleware = require('botkit-middleware-watson')({
username: YOUR_ASSISTANT_USERNAME,
password: YOUR_ASSISTANT_PASSWORD,
url: YOUR_ASSISTANT_URL,
workspace_id: YOUR_WORKSPACE_ID,
version: '2018-07-10',
minimum_confidence: 0.50,
});
If your credentials is apikey
use:
const watsonMiddleware = require('botkit-middleware-watson')({
iam_apikey: YOUR_API_KEY,
url: YOUR_ASSISTANT_URL,
workspace_id: YOUR_WORKSPACE_ID,
version: '2018-07-10',
minimum_confidence: 0.50,
});
Tell your Slackbot to use the watsonMiddleware for incoming messages:
slackController.middleware.receive.use(watsonMiddleware.receive);
slackBot.startRTM();
Finally, make your bot listen to incoming messages and respond with Watson Assistant:
slackController.hears(['.*'], ['direct_message', 'direct_mention', 'mention'], function(bot, message) {
if (message.watsonError) {
bot.reply(message, "I'm sorry, but for technical reasons I can't respond to your message");
} else {
bot.reply(message, message.watsonData.output.text.join('\n'));
}
});
The middleware attaches the watsonData
object to message. This contains the text response from Assistant.
If any error happened in middleware, error is assigned to watsonError
property of the message.
Then you're all set!
Features
Message filtering
When middleware is registered, the receive function is triggered on every message.
If you would like to make your bot to only respond to direct messages using Assistant, you can achieve this in 2 ways:
Using interpret function instead of registering middleware
slackController.hears(['.*'], ['direct_message'], function(bot, message) {
middleware.interpret(bot, message, function() {
if (message.watsonError) {
bot.reply(message, "I'm sorry, but for technical reasons I can't respond to your message");
} else {
bot.reply(message, message.watsonData.output.text.join('\n'));
}
});
});
Using middleware wrapper
const receiveMiddleware = function (bot, message, next) {
if (message.type === 'direct_message') {
watsonMiddleware.receive(bot, message, next);
} else {
next();
}
};
slackController.middleware.receive.use(receiveMiddleware);
Minimum Confidence
To use the setup parameter minimum_confidence
, you have multiple options:
Use it manually in your self-defined controller.hears() function(s)
For example:
controller.hears(['.*'], ['direct_message', 'direct_mention', 'mention', 'message_received'], function(bot, message) {
if (message.watsonError) {
bot.reply(message, "Sorry, there are technical problems.");
} else {
if (message.watsonData.intents.length == 0) {
bot.reply(message, "Sorry, I could not understand the message.");
} else if (message.watsonData.intents[0].confidence < watsonMiddleware.minimum_confidence) {
bot.reply(message, "Sorry, I am not sure what you have said.");
} else {
bot.reply(message, message.watsonData.output.text.join('\n'));
}
}
});
Use the middleware's hear() function
You can find the default implementation of this function here. If you want, you can redefine this function in the same way that watsonMiddleware.before and watsonMiddleware.after can be redefined. Refer to the Botkit Middleware documentation for an example. Then, to use this function instead of Botkit's default pattern matcher (that does not use minimum_confidence), plug it in using:
controller.changeEars(watsonMiddleware.hear)
Note: if you want your own hear()
function to implement pattern matching like Botkit's default one, you will likely need to implement that yourself. Botkit's default set of 'ears' is the hears_regexp
function which is implemented here.
Implementing app actions
Watson Assistant side of app action is documented in Developer Cloud
A common scenario of processing actions is:
- Send message to user "Please wait while I ..."
- Perform action
- Persist results in conversation context
- Send message to Watson with updated context
- Send result message(s) to user.
using sendToWatson to update context (possible since v1.5.0)
Using sendToWatson to update context simplifies the bot code compared to solution using updateContext below.
function checkBalance(context, callback) {
const contextDelta = {
validAccount: true,
accountBalance: 95.33
};
callback(null, context);
}
const checkBalanceAsync = Promise.promisify(checkBalance);
const processWatsonResponse = function (bot, message) {
if (message.watsonError) {
return bot.reply(message, "I'm sorry, but for technical reasons I can't respond to your message");
}
if (typeof message.watsonData.output !== 'undefined') {
bot.reply(message, message.watsonData.output.text.join('\n'));
if (message.watsonData.output.action === 'check_balance') {
const newMessage = clone(message);
newMessage.text = 'balance result';
checkBalanceAsync(message.watsonData.context).then(function (contextDelta) {
return watsonMiddleware.sendToWatsonAsync(bot, newMessage, contextDelta);
}).catch(function (error) {
newMessage.watsonError = error;
}).then(function () {
return processWatsonResponse(bot, newMessage);
});
}
}
};
controller.on('message_received', processWatsonResponse);
Using updateContext in controller (available since v1.4.0)
Since 1.4.0 it is possible to update context from controller code.
function checkBalance(context, callback) {
context.validAccount = true;
context.accountBalance = 95.33;
callback(null, context);
}
const checkBalanceAsync = Promise.promisify(checkBalance);
const processWatsonResponse = function (bot, message) {
if (message.watsonError) {
return bot.reply(message, "I'm sorry, but for technical reasons I can't respond to your message");
}
if (typeof message.watsonData.output !== 'undefined') {
bot.reply(message, message.watsonData.output.text.join('\n'));
if (message.watsonData.output.action === 'check_balance') {
const newMessage = clone(message);
newMessage.text = 'balance result';
checkBalanceAsync(message.watsonData.context).then(function (context) {
return watsonMiddleware.updateContextAsync(message.user, context);
}).then(function () {
return watsonMiddleware.sendToWatsonAsync(bot, newMessage);
}).catch(function (error) {
newMessage.watsonError = error;
}).then(function () {
return processWatsonResponse(bot, newMessage);
});
}
}
};
controller.on('message_received', processWatsonResponse);
Using middleware.after and controller
Before v1.4.0 only middleware.after callback can update context, and only controller can send replies to user.
The downside is that it is impossible to send "Please wait message".
function checkBalance(watsonResponse, callback) {
watsonResponse.context.validAccount = true;
watsonResponse.context.accountBalance = 95.33;
callback(null, watsonResponse);
}
watsonMiddleware.after = function(message, watsonResponse, callback) {
if (typeof watsonResponse !== 'undefined' && typeof watsonResponse.output !== 'undefined') {
if (watsonResponse.output.action === 'check_balance') {
return checkBalance(watsonResponse, callback);
}
}
callback(null, watsonResponse);
};
const processWatsonResponse = function(bot, message) {
if (message.watsonError) {
return bot.reply(message, "I'm sorry, but for technical reasons I can't respond to your message");
}
if (typeof message.watsonData.output !== 'undefined') {
bot.reply(message, message.watsonData.output.text.join('\n'));
if (message.watsonData.output.action === 'check_balance') {
const newMessage = clone(message);
newMessage.text = 'balance result';
watsonMiddleware.interpret(bot, newMessage, function() {
processWatsonResponse(bot, newMessage);
});
}
}
};
controller.on('message_received', processWatsonResponse);
Implementing event handlers
Events are messages having type different than message
.
Example of handler:
controller.on('facebook_postback', function(bot, message) {
bot.reply(message, 'Great Choice!!!! (' + message.payload + ')');
});
Since they usually have no text, events aren't processed by middleware and have no watsonData attribute.
If event handler wants to make use of some data from context, it has to read it first.
Example:
controller.on('facebook_postback', function(bot, message) {
watsonMiddleware.readContext(message.user, function(err, context) {
if (!context) {
context = {};
}
myFunction(context.field1, context.field2, function(err, result) {
const newMessage = clone(message);
newMessage.text = 'postback result';
watsonMiddleware.sendToWatson(bot, newMessage, {postbackResult: 'success'}, function(err) {
if (err) {
newMessage.watsonError = error;
}
processWatsonResponse(bot, newMessage);
});
});
});
});
Intent matching
The Watson middleware also includes a hear()
function which provides a mechanism to
developers to fire handler functions based on the most likely intent of the user.
This allows a developer to create handler functions for specific intents in addition
to using the data provided by Watson to power the conversation.
The hear()
function can be used on individual handler functions, or can be used globally.
Used on an individual handler:
slackController.hears(['hello'], ['direct_message', 'direct_mention', 'mention'], watsonMiddleware.hear, function(bot, message) {
bot.reply(message, message.watsonData.output.text.join('\n'));
});
Used globally:
slackController.changeEars(watsonMiddleware.hear);
slackController.hears(['hello'], ['direct_message', 'direct_mention', 'mention'], function(bot, message) {
bot.reply(message, message.watsonData.output.text.join('\n'));
});
before
and after
The before and after callbacks can be used to perform some tasks before and after Assistant is called. One may use it to modify the request/response payloads, execute business logic like accessing a database or making calls to external services.
They can be customized as follows:
middleware.before = function(message, assistantPayload, callback) {
callback(null, customizedPayload);
}
middleware.after = function(message, assistantResponse, callback) {
callback(null, assistantResponse);
}
Dynamic workspace
If you need to make use of multiple workspaces in a single bot, workspace_id can be changed dynamically by setting workspace_id property in context.
Example of setting workspace_id to id provided as a property of hello message:
function handleHelloEvent(bot, message) {
message.type = 'welcome';
const contextDelta = {};
if (message.workspaceId) {
contextDelta.workspace_id = message.workspaceId;
}
watsonMiddleware.sendToWatsonAsync(bot, message, contextDelta).catch(function (error) {
message.watsonError = error;
}).then(function () {
bot.reply(message, message.watsonData.output.text.join('\n'));
});
}
controller.on('hello', handleHelloEvent);
License
This library is licensed under Apache 2.0. Full license text is available in LICENSE.