Removing options from Virtual Analyst Bot
search cancel

Removing options from Virtual Analyst Bot

book

Article ID: 204128

calendar_today

Updated On:

Products

ServiceDesk CA Service Management - Service Desk Manager

Issue/Introduction

The (ARIA) ChatBot has four options:

  • I want to know the status
  • Show me more ticket actions
  • I want to talk to an Analyst
  • I have new issue/problem

This document shows how to change their labels or remove them.

Environment

Service Management 17.3

Resolution

The Virtual Analyst response comes from RASA and Collaboration Micro Service (Virtual Analyst core module), so there are 2 places you have to modify the response:

(1) intent_mapper.cfg (Under Collaboration Micro Service configuration folder):

For example, for removing the label "I want to talk to an Analyst", search for "/create_ticket" under footers of any/all intent where you want to remove the create ticket flow.

"footer":{
 "text":"BCF0037",
 "buttons":[
   {
     "label":"BCF0021",
 "action":"/search_kd"
 },
     {
     "label":"BCF0017",
 "action":"/transfer_to_analyst"
 },
<!--
     {
     "label":"BCF0022",
 "action":"/create_ticket"
 },
-->
 {
 "label":"BCF0035",
 "action":"/thankyou"
 }
 ]
}

(2) domain.yml file in RASA installed location:

  • Go to the templates, which define the response from RASA.
  • Search for /create_ticket payload under buttons node (you have to delete that).

Below is one example:

utter_facilities_help:
    - text: "I may not be able to help in this, please connect with +000-123456789."
      buttons:
        - title: "Help me in something else"
          payload: "/help"
<!--
        - title: "I want to create ticket"
          payload: "/create_ticket"
-->

(3) This option comes from "utter_ticket_actions" in domain.yml.

RASA home should have the following scripts:

  • rasa_halt
  • rasa_train
  • rasa_run

Run them sequentially.

Additional Information

https://techdocs.broadcom.com/us/en/ca-enterprise-software/business-management/ca-service-management/17-3/administering/configure-service-point/Implementing-CA-Service-Management-Virtual-Analyst-Bot/Configure-the-Virtual-Analyst-Service-Bot-in-Service-Desk-Manager/Virtual-Analyst-Intents.html

This link provides the intents that are configurable for the Virtual Analyst