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.
- Javascript
const aiAssistBotConfiguration = new AIAssistBotConfiguration({});
This configuration needs to be passed to AI Smart Replies Class when it is passed to setAiFeatures()
method of UIKitSettingsBuilder
.
- Javascript
const aiFeatures = [new AIAssistBotExtension(aiAssistBotConfiguration)];
// Pass this list of features to setAiFeatures method.
new UIKitSettingsBuilder().setAiFeatures(aiFeatures);
Properties | Type | Description |
---|---|---|
configuration | AIAssistBotConfiguration | This is a configuration to customise behaviour & UI of AI Assist Bot Configuration . |