Janis - Message Management
For Chatbots built with Ruby
Janis helps teams train and monitor bots and fix problems fast. Build a bot in Ruby and integrate Janis with just a few lines of code to ensure delightful conversational experiences in every messaging channel.
Train
Collaborate on what users say and your responses in a dedicated training channel. Experience exactly what your users will experience when they message you.
Monitor
Janis alerts you in Slack when your bot needs your help. Use our smart alerts, or create your own alerts to bring humans in the loop.
Fix Problems Fast
Take over for your bot and chat live to retain your users, while training your AI to learn from the conversation. Hand control back to your bot when you're done.
To learn more about Janis' capabilities, visit Janis.ai
What you need to get started:
Operational Dependencies:
- You'll need an API key and a Client Key for your Chatbot. You can get both of those (free) when you add Janis to Slack.
- If you're building a Messenger Chatbot, you'll need to setup a Facebook App, Facebook Page, get the Page Access Token from Facebook and link the Facebook App to the Facebook Page for Janis to work. This is standard for any Chatbot you build for Messenger.
- Janis can help you train your AI from Slack. Currently Dialogflow, formerly known as API.AI (http://www.api.ai) is supported.
Note: This module has been tested with Messenger, Slack, Skype, and Microsoft Webchat. Please see our examples.
Installation
$ gem install janis
Usage
Set your environmental variables for JANIS_API_KEY
, JANIS_CLIENT_KEY
, ACCESS_TOKEN
.
$ export JANIS_API_KEY=xxxxxxxxxxxxxxxxxxxx
$ export JANIS_CLIENT_KEY=xxxxxxxxxxxxxxxxxxxx
$ export ACCESS_TOKEN=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Add the janis class to your code and set the required parameter values.
require 'janis'
janis.apikey = ENV['JANIS_API_KEY']
janis.clientkey = ENV['JANIS_CLIENT_KEY']
janis.platform = "messenger"
janis.token = ENV['ACCESS_TOKEN']
Incoming Message Schema:
Throughout this documentation, you will see references to incomingMessage
. Depending on whether you have a Messenger or Slack bot, the schema will be different. The value of incomingMessage
should be equal to the message you receive directly from either the Messenger webhook response, or from the Slack RTM event response.
{
"type": "message",
"channel": "D024BE91L",
"user": "U2147483697",
"text": "Hello world",
"ts": "1355517523.000005"
}
{
"sender":{
"id":"USER_ID"
},
"recipient":{
"id":"PAGE_ID"
},
"timestamp":1458692752478,
"message":{
"mid":"mid.1457764197618:41d102a3e1ae206a38",
"seq":73,
"text":"hello, world!",
"quick_reply": {
"payload": "DEVELOPER_DEFINED_PAYLOAD"
}
}
}
Outgoing Message Schema:
Throughout this documentation, you will see references to outgoingMessage
. Depending on whether you have a Messenger or Slack bot, the schema, as defined by each platform, will be different. Every time you track an outgoing message, the schema requirements match the respective platform.
{
"channel": "C024BE91L",
"text": "Hello world"
}
{
"recipient":{
"id":"USER_ID"
},
"message":{
"text":"hello, world!"
}
}
Tracking received messages:
When your bot receives an incoming message, you'll need to log the data with janis by calling to janis.hopIn
.
Note: janis can pause your bot so that it doesn't auto response while a human has taken over. The server response from your hopIn
request will pass the paused
state. Use that to stop your bot from responding to an incoming message. Here is an example:
hopInResponse = janis.hopIn(incomingMessage)
if hopInResponse['paused'] != true
...
Tracking sent messages:
Each time your bot sends a message, make sure to log that with janis by calling to janis.hopOut
. Here is an example of a function that we're calling sendIt
that tracks an outgoing message and at the same time, has the bot say the message:
def sendIt(channel, text)
outgoingMessage = {recipient: {id: channel},message: {text: text}}
janis.hopOut(outgoingMessage)
client.say({'text': text, 'channel': channel})
...
Log Unknown Intents:
Find the spot in your code your bot processes incoming messages it does not understand. Within that block of code, call to janis.logUnkownIntent
to capture these conversational ‘dead-ends’. Here's an example:
sendIt(recipient_id, 'Huh?')
janis.logUnknownIntent(incomingMessage)
Dial 0 to Speak With a Live Human Being:
janis can trigger alerts to suggest when a human should take over for your Chatbot. To enable this, create an intent such as when a customer explicitly requests live assistance, and then include the following lines of code where your bot listens for this intent:
if text == 'help'
sendIt(recipient_id, 'Hang tight. Let me see what I can do.')
janis.assistanceRequested(incomingMessage);
Human Take Over:
To enable the ability to have a human take over your bot, add the code below to subscribe to the 'chat response' event. Alternatively, if you'd prefer to use a webhook to receive the payload, please get in touch with us at support@janis.ai and we can enable that for you.
janis.on :'chat response' do |data|
text = data['text']
channel = data['channel']
client.say({'text': text, 'channel': channel})
end
Go back to Slack and wait for alerts. That's it!
Be sure to check out our examples.
Looking for something we don't yet support?