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
Storyboard
Dialog Task
User Intent Node
Dialog Node
Entity Node
Supported Entity Types
Composite Entities
Supported Time Zones
Supported Colors
Supported Company Names
Message Nodes
Confirmation Nodes
Service Node
Custom Authentication
2-way SSL for Service nodes
Script Node
Agent Transfer Node
WebHook Node
Connections & Transitions
Managing Dialogs
Prompt Editor
Alert Tasks
Alert Tasks
Ignore Words and Field Memory
Digital Views
Knowledge Graph
Terminology
Building
Generation
Importing and Exporting
Analysis
Knowledge Extraction
Small Talk
Action & Information Task
Action Tasks
Information Tasks
Establishing Flows
Natural Language
Overview
Machine Learning
ML Model
Fundamental Meaning
NLP Settings and Guidelines
Knowledge Graph Training
Traits
Ranking and Resolver
NLP Detection
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
Talk to Bot
Utterance Testing
Batch Testing
Record Conversations
Publishing your Bot
Analyzing your Bot
Overview
Dashboard
Custom Dashboard
Conversation Flows
Bot Metrics
Advanced Topics
Bot Authorization
Language Management
Collaborative Development
IVR Integration
koreUtil Libraries
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
Web SDK Tutorial
Message Formatting and Templates
Mobile SDK Push Notification
Widget SDK Tutorial
Widget SDK – Message Formatting and Templates
Web Socket Connect & RTM
Using the BotKit SDK
Installing
Configuring
Events
Functions
BotKit SDK Tutorial – Agent Transfer
BotKit SDK Tutorial – Flight Search Sample Bot
Using an External NLP Engine
Bot Administration
Bots Admin Console
Dashboard
User Management
Managing Users
Managing Groups
Managing Role
Bots Management
Enrollment
Inviting Users
Bulk Invites
Importing Users
Synchronizing Users from AD
Security & Compliance
Using Single Sign-On
Security Settings
Cloud Connector
Analytics
Billing
How Tos
Creating a Simple Bot
Creating a Banking Bot
Transfer Funds Task
Update Balance Task
Context Switching
Using Traits
Schedule a Smart Alert
Configuring Digital Views
Custom Dashboard
Custom Tags to filter Bot Metrics
Patterns for Intents & Entities
Build Knowledge Graph
Global Variables
Content Variables
Using Bot Functions
Configure Agent Transfer
  1. Home
  2. Docs
  3. Bots
  4. Bot Building
  5. Dialog Task
  6. Working with the Dialog Node

Working with the Dialog Node

Dialog node lets you start a new Dialog task within an existing Dialog task if the user intent changes.

For example, let’s consider a travel bot that has the following three Dialog tasks: Flight Availability, Book a Flight, and Book a Hotel. You may want to invoke the Book a Flight Dialog task from the Flight Availability Dialog task.

Key features of Dialog nodes:

  • The ability to carry data from the current Dialog task to the target dialog task as entity pre-assignments described in the later section.
  • When a target Dialog task is invoked, the current Dialog flow begins at the root intent of the new Dialog task. If you write transitions for the Dialog node, then the flow returns to the source Dialog task after completing the Target. If you do not write transitions, the Dialog task ends after executing the target Dialog task. This differs from an optional User Intent node, where the dialog flow processes a related user intent and then continues in the same Dialog task thereafter.

Configuring a Dialog Node

Follow these steps to set up a Dialog Node to invoke a new Dialog Task:

Step 1: Adding a Dialog Node to the Dialog Task

  1. Open the Dialog Task in which you want to add the Dialog node.
  2. Hover over the node next to which you want to add the node, and click the Plus diydialogtaskplusicon icon.
  3. Go to Dialog Task and select the dialog task from the available list (Note you cannot create a new Dialog Task from within a Dialog like other nodes).
  4. The Component Properties panel opens.

Step 2: Define Component, Transition & NLP Properties

  1. Modify general Component Properties like Name and Description
  2. From the Connections tab set the Transition properties to 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. If you have defined the Transition Property as “End the current task“, then these settings will be ignored.
    1. Select the Connections tab
    2. Click Add IF.
    3. Configure the conditional expression based on one of the following criteria:
      • Entity: Compare an Entity node in the dialog with a specific value:
        • Select the entity;
        • select an operator using the drop-down lists: Exists, equals to, greater than equals to, less than equals to, not equal to, greater than, and less than.
        • type the number in the Value box. Example: PassengerCount (entity) greater than (operator) 5 (specified value)
      • 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)
      • Intent: Select an intent that should match the next user utterance.
    4. In the Then go to 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.
  3. From the NLP Properties tab
    • Machine Learning settings to provide user utterances to improve the detection for this Node.
    • Bot Synonyms or related phrases for this Node.
    • Patterns to capture this Node if the user’s utterance contains these specific patterns.

Step 3: Define Instance Properties

Instance Properties include the settings for this instance of the Dialog.

  1. Click the Instance Properties icon on the Dialog node.
  2. Click the Advanced controls to set up these options:
    • Hold & Resume
      • 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.
    • Custom Tags defines tags to build custom profiles of your bot conversations. See here for more.
  3. Entity Pre-assignments can be used to pre-assign values from this session or node data to the entities required by the Dialog Task. Any remaining required values will be handled by the sub-intent.  (see below for details)
  4. Transition Options define the flow to be followed once the task completes. You can choose from two options:
    • return to the current node on task completion
    • end the current task and initiate this task
  5. Entity Post-Assignments displays a list of entities available in the current task with an option to add custom variables. These entities can be assigned with values from the linked dialogs session data. For example, context.entities. will list the entities from the linked sub-dialog for selection. The values will be assigned once the linked dialog execution is complete.
    NOTE: This option is available only if the Transition Options is set to return to the current node on task completion. This feature was introduced in ver 7.1 of the platform.
    Currently, there is a limitation when using URL entity types. URL values with http as opposed to https or without www suffix will not work.

About Entity Pre-Assignments

You can pre-populate data for the destination Dialog task by:

  • adding values to the entity keys,
  • adding additional custom keys and values to pass data from the current Dialog task Context object to the destination Dialog task as needed.

By default, the Entity nodes defined in the target Dialog task are displayed as key/value pairs. You can then define values for associated entities or add custom keys and values as needed using session and context variables.

Transitioning from the source Dialog task to the destination Dialog task occurs at runtime when the user input matches one of any linked dialog tasks. When more than one dialog task must be mapped, you can define which dialog tasks are displayed to the end-users using conditional transitions.

When you call another dialog task, you may want to carry information from the first Dialog task, into the next Dialog task. For example, customer information collected in a Book a Flight dialog task could be passed to the Book a Hotel dialog task.

In the Bots Platform, you can use the mappedIntents variable in the Context object which holds the reference of the Intent nodes as well as the context of the source dialog task as shown in the following JSON syntax:
{ 'title': 'title of the link', 'link':' url for the link' ,'postbackpayload': 'system generated payload'}
For example, a link to GetEmail in the Context object can be:

{
   "title":"GetEmail",
   "link":"https://app.collab.ai/wf/1.1/market/users/bots/st-bb1eb3da-cfa7-5244-b241-b5042d333e76/dialogue/dg-15fd2927-219c-5795-b038-5b830718bea7/execute?nodeId=message2&contextId=dcx-f9bae173-4d69-53e4-9aa7-21e89aae776d&intent=GetEmail",
   "postbackpayload":"MappedDialog_dc-f7b42932-dc06-53ac-92c0-1db706794f91_dg-15fd2927-219c-5795-b038-5b830718bea7_dcx-f9bae173-4d69-53e4-9aa7-21e89aae776d"
}

You can access and present these variables in a prompt message to a user to display a list of mapped dialog tasks with the link, or as a list of choices. You can pass the source dialog context to the target dialog task even if the source Dialog task is no longer active using the Context object.

The value for the postbackpayload key is generated by the Bots Platform, and can be used in some channels, such a Facebook and Slack, which defines when a link or choice is made for a target Dialog task.

For more information, see Using Session and Context Variables in Tasks and the Context Object.

Menu