How can we change bot name once we have created and implemented the bot

I have created the bot already with some name. How can change it now?

Hi @mathi.lavanya ,

Please refer to the steps mentioned in the below knowledge content document to change the Bot Name.

Thank you,
Srujan Madderla
Kore.ai Community Team

Hi Srujan

From that documentation I found that we cannot change bot name once it’s published. Is there any other way to change the name.

Thanks

Hi @mathi.lavanya,

From UI as it is mentioned in the document, it will not be possible to change the bot name once the bot is published.

Please follow the below steps in the webSDK to change the bot name on the chat window, this might be helpful for you.

In webSDK >> chatWindow.js >> at line number 1169, you need to assign the bot name manually to the variable “tempTitle”. Ideally, tempTitle is assigned with the bot name form the botInfo.

var tempTitle = me._botInfo.name;

However, we can assign it manually at this line.

Replace “me._botInfo.name” with the bot name that you want to display on the chat window.

Example:
var tempTitle = “supportBot”;

Thank you,
Srujan Madderla
Kore.ai Community Team

Hi @mathi.lavanya & @srujan.madderla i have gone through and last conclusion is that we cannot change bot name after Published/Named.