Chatbot Overview
Conversational Bots
Intents & Entities
Intelligent Bots
Kore.ai's Approach
Kore.ai Conversational Platform
Bot Concepts and Terminology
Natural Language Processing (NLP)
Bot Types
Bot Tasks
Starting with Kore.ai Platform
How to Access Bot Builder
Working with Kore.ai Bot Builder
Building your first Bot
Getting Started with Building Bots
Using the Dialog Builder Tool
Creating a Simple Bot
Release Notes
Latest Updates
Older Releases
Bot Builder
Creating a Bot
Design
Develop
Dialog Task
Working with User Intent Node
Working with the Dialog Node
Working with Entity Node
Supported Entity Types
Working with Composite Entities
Supported Time Zones
Supported Colors
Supported Company Names
Working with Message Nodes
Working with the Confirmation Nodes
Working with Service Node
Implementing Custom Authentication
Enabling 2-way SSL for Service nodes
Working with Script Node
Working with Agent Transfer Node
Working with WebHook Node
Defining Connections & Transitions
Managing Dialogs
Prompt Editor
Action & Information Task
Working with Action Tasks
Working with Information Tasks
Establishing Flows
Alert Tasks
Working with Alert Tasks
Managing Ignore Words and Field Memory
Knowledge Tasks
Knowledge Ontology
Building Knowledge Graph
Importing and Exporting Bot Ontology
Knowledge Extraction
Natural Language
Overview
Machine Learning
ML Model
Fundamental Meaning
Knowledge Graph Training
Traits
Ranking and Resolver
NLP Detection
NLP Settings and Guidelines
Bot Intelligence
Overview
Context Management
Session and Context Variables
Context Object
Dialog Management
Sub-Intents
Amend Entity
Multi-Intent Detection
Sentiment Management
Tone Analysis
Sentiment Management
Default Conversations
Default Standard Responses
Channel Enablement
Test & Debug
Talking to Bot
Utterance Testing
Batch Testing
Recording Conversations
Publishing your Bot
Analyzing your Bot
Overview
Dashboard
Conversation Flows
Bot Metrics
Advanced Topics
Bot Authorization
Language Management
Collaborative Development
IVR Integration
Universal Bots
Defining
Creating
Customizing
Enabling Languages
Smart Bots
Defining
Sample Bots
Github
Asana
Travel Planning
Flight Search
Event Based Bot Actions
Bot Settings
Bot Functions
General Settings
PII Settings
Customizing Error Messages
Bot Management
Using Bot Variables
API Guide
API Overview
API List
API Collection
SDKs
SDK Overview
SDK Security
SDK App Registration
Kore.ai Web SDK Tutorial
Message Formatting and Templates
Mobile SDK Push Notification
Web Socket Connect & RTM
Using the BotKit SDK
Installing the BotKit SDK
BotKit SDK Configuration
Events for the BotKit SDK
Functions for the BotKit SDK
BotKit SDK Tutorial – Agent Transfer
BotKit SDK Tutorial – Flight Search Sample Bot
Using an External NLP Engine
Bot Administration
Bots Admin Console
User Management
Managing Users
Managing Groups
Managing Role
Bots Management
Enrollment
Inviting Users
Sending Bulk Invites to Enroll Users
Importing Users and User Data
Synchronizing Users from Active Directory
Security & Compliance
Overview
Using Single Sign-On
Cloud Connector
Analytics
Billing
How Tos
Context Switching
Using Traits
Live Agent Transfer
Schedule a Smart Alert
Configure Agent Transfer
  1. Home
  2. Docs
  3. Bots
  4. Bot Building
  5. Dialog Task
  6. Working with the Message (Bot Response) Nodes

Working with the Message (Bot Response) Nodes

The Message node can be used to deliver a message to the user. Message nodes commonly follow an API, web service call, or webhook event to define their results as a formatted response.
Bot responses can be formatted as follows:

  • Plain text: Type a message in plain text. You can use stored context values with {{variable brackets}}. Example: 'Hello {{context.session.UserContext.firstName}}. How can I help you?'
  • Javascript: Compose JavaScript responses either:
    • for dynamically constructing messages using context and session variables or
    • for displaying templates or widgets as supported by various channels.
      For example, you can compose a JavaScript message for Facebook Channel to present a Carousel template.
    • Optionally, you can generate links to view the information in an HTML report format using templates and share the URL with the bot message.

For example, the Book Flights sample dialog uses the following message nodes:

  • WeatherReport: Shows the weather details returned by the WeatherApi Service node, formatted using the LocationScript node.
  • FinalFlightinfo: Shows the flight itineraries that the Flights info service node returns.
  • Thanks: After showing the final flight details, prompts the user if they have any other request.

Setting up a Message Node

Setting up a Message node in a Dialog task involves the following steps.

Step 1: Adding a Message Node to the Dialog Task

  1. Open the dialog task in which you want to add the Message node.
  2. Hover over a node next to which you want to add the node, and click the plus icon.
  3. Select Message > New message node. You can select an existing Message Node from the list.
  4. The Component Properties panel for the Message opens.

Step 2a: Configuring the Bot Response

Note: The configurations you set up or edit in this section reflect in all other dialog tasks that use this node.
  1. After you enter a Name and Display Name for the Message node
  2. You can use the Bot Responses section to compose and format the Bot response either as plain text or as a JavaScript message. A default message is set by the platform, you can customize it in the following ways:
    • Edit the message directly and press enter. The message will be saved in the plain text format.
    • Click Manage Responses. The Bot Responses window opens. You have further options:
      • To edit the default sample message by adding context object variables or javascript code, click the sample message and make changes
      • To add a new bot response, click Add Bot Response.

      In the Channel drop-down list, All Channels is the default setting. To create a channel-specific message, select the channel from the list.
      In the Message Editor, the Plain Text tab is the default selection. If you want to compose Javascript message, click the JavaScript tab.
      Note: You can use any value that is currently stored in the context. Example: print('Hello'+ context.session.UserContext.firstName+ '. How can I help you')

    • Compose the message and click Save.

To add any more bot responses, repeat from step 2b.

Step 2b: Generating Message as Report Link (Optional)

The Message node allows you to generate links to view the information in an HTML report format using templates. The URL link can be added to the Bot message. When you add a link to a bot response, the users can select the link and get more details, such as a table of values for Closed Sales Opportunities in the SalesForce Bot.
To generate a report link, follow these steps:

  1. At the bottom of the Component Properties panel, click the Generate Report Link.
  2. In the Generate Report Dialog, enter the following values:
    • Link Title – The link text displayed in the bot channel, for example, View Shopping Cart.
    • Header – The title of the report, for example, These are the items in your Shopping Cart.
    • Details – End-user help information displayed directly below the Header, describing the content of the report. For example, Review your Shopping Cart, and then click Continue when you are ready to place your order.
    • Data Path – Path for the data, usually the response from the web service. For example, context.ShoppingCartService.response.body
    • Template – Select one of the following format templates to display the data from the task response. For each type, define the Column Name, Key Mapping, Data Type, and template-specific options.
      • Table – Uses a table format with defined columns. Each mapping for the Table template can be set to Is Sortable, Display as an image, and Display it as a link. For more information, see Defining a Table Report.
      • Fixed Column Table – Uses a table format with the one or more columns fixed. Each mapping for the Fixed Column Table template can be set to Is Sortable, Column in fixed, Display as an image, and Display it as a link. For more information, see Defining a Fixed-Column Table Report.
      • Card Layout – Uses a contact card format. Each mapping for the Card Layout template can be set to Is Sortable, Display as an image, and Display it as a link. For more information, see Defining a Card Layout Report.
      • Weather Info – Define a Date for a weather service response payload. Each mapping for the Weather Info template can be set to Is Sortable, Display as an image, and Display it as a link. For more information, see Defining a Weather Info Report.
      • Card Layout with Group By – Shows a list of items grouped by a specific field. For more information, see Define a Card Layout with Group By Report.

Step 3: Configuring the Instance Properties

  1. Hold & Resume: Instance Property for a Message Node can be used to configure the Hold & Resume behavior for this node.
    Note: The settings in the Instance Properties panel are specific to the current Task and do not reflect in the other dialog tasks that use this entity node.

    • Use the task level ‘Hold & Resume’ setting: The bot refers to the Hold & Resume settings set at the dialog task level.
    • Customize for this node option: You can customize the Hold & Resume settings for this node by selecting this option and configuring the same.  Read the Interruption Handling and Context Switching article for more information.
  2. Custom Tags defines tags to build custom profiles of your bot conversations. See here for more.

Step 4: Configuring the Connections Properties

From the node’s Connections panel you can determine which node in the dialog task to execute next. You can write the conditional statements based on the values of any Entity or Context Objects in the dialog task, or you can use intents for transitions.
To setup Component Transitions, follow these steps:

  1. You can select from the available nodes under the Default connections.
  2. To configure a conditional flow, click Add IF.
  3. Configure the conditional expression based on one of the following criteria:
    1. Entity: Compare an Entity node in the dialog with a specific value using one of these operators: Exists, equals to, greater than equals to, less than equals to, not equal to, greater than, and less than. Select the entity, operator using the respective drop-down lists, and type the number in the Value box. Example: PassengerCount (entity) greater than (operator) 5 (specified value)
    2. Context: Compare a context object in the dialog with a specific value using one of these operators: Exists, equals to, greater than equals to, less than equals to, not equal to, greater than, and less than. Example: Context.entity.PassengerCount (Context object) greater than (operator) 5 (specified value)
    3. Intent: Select an intent that should match the next user utterance.
  4. In the Then go to the drop-down list, select the next node to execute in the dialog flow if the conditional expression succeeds. For example, if the PassengerCount (entity) greater than (operator) 5 (specified value), Then go to Offers (sub-dialog).
  5. In the Else drop-down list, select the node to execute if the condition fails.
Note: If you want to write multiple If conditions, click Add Else If below the last If conditional expression.

Step 5: Configuring the IVR Properties

You can use this tab for defining at the Node level the input mode, grammar, prompts and call behavior parameters for this node to be used in IVR Channel. Refer here for details

Menu