Sunbird bot client application

September 7, 2023 ยท View on GitHub

This is build as Angular library. Where this angular library can be integrated into any angular application(like sunbird portal). Once we integrate this library into portal user can interact with bot for his queries by navigating through the options provided by the bot.

Getting Started

To integrate the chatbot client library into portal use the below steps

Step 1: Install the package

npm i sunbird-chatbot-client --save

Step 2: Import the modules and components

Import the NgModule for each component you want to use:

import {ChatLibModule, ChatLibService} from 'sunbird-chatbot-client';

@NgModule({
    ...
    
    imports: [ChatLibModule],
    
    ...
})

Step 3: Add the library component to the HTML page

<lib-chat-window [inputValues]="botConfig"></lib-chat-window>

botConfig properties:

chatbotUrl: string  -> API endpoint for server communication to get the response for the user input
appId: string       -> For Telemetry - Unique application indentifier 
userId: string      -> For telemetry - User details who is interacting with the bot
did: string         -> For telemetry - Unique device string for telemetry to log
channel: string     -> For telemetry - Unique channel string to identify the use belongs to which tenant

Available components

FeatureNotesSelector
Chat WindowChat Window for Chat Botlib-chat-window
Chat Message ListChat Messages Get Listed in Widgetlib-chat-message-list
Chat MessageLibrary Chat Message Componentlib-chat-message
Chat Message Bottom BarCan be used in the course page for all consumption platformslib-chat-message-bottom-bar

Versions

release branchnpm package versionAngular Version
release-5.1.0_v103.0.1NG V10
release-5.1.0_v113.0.2NG V11
release-5.1.0_v113.0.3NG V11