Skip to main content
Version: v4

AI Assist Bot

AI Assist Bot is a class which can be used to ask a question to a bot in a given conversation.

Integration

AI Assist Bot will be enabled by default if you have already created & enabled AI Bot in the Dashboard. The UI & functionality of AI Assist Bot can be customized via Configuration.

const aiAssistBotConfiguration = new AIAssistBotConfiguration({});

This configuration needs to be passed to AI Smart Replies Class when it is passed to setAiFeatures() method of UIKitSettingsBuilder.

const aiFeatures = [new AIAssistBotExtension(aiAssistBotConfiguration)];

// Pass this list of features to setAiFeatures method.
new UIKitSettingsBuilder().setAiFeatures(aiFeatures);
PropertiesTypeDescription
configurationAIAssistBotConfigurationThis is a configuration to customise behaviour & UI of AI Assist Bot Configuration.