Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Sign up as a customer on Ascendo Application 

  2. Go through the Admin process in Ascendo to create Business Unit

  3. Set up Data Connection Integration or upload data for Ascendo Self Learning

  4. Set up AI Bot Support Channel 

  5. Create the AI Bot key in the admin portal.

  6. Once data upload, need to map your data with Ascendo. Under Mapping menu

    Image Added
  7. Get AIBot API Key from Support Channel → AI Bot.

    Image Added

3. Implementation Details 

...

Code Block
<div id="chatbot-div-active" *ngIf="is_chatbot_active===true">
<iframe src="https://<org_name>.aibot.ascendo.ai/<email>?api_key=<api_key>"
class="chat-iframe" title="chatbot"></iframe>
</div>
<div id="chatbot-div-not-active">
<div *ngIf="is_chatbot_active===false">
<button mat-fab (click)="is_chatbot_active=true;"
style="color:#ffffff; background-color:#1a73e8;">
</button>
</div>
<div *ngIf="is_chatbot_active===true">
<button mat-fab (click)="is_chatbot_active=false;"
style="color:#ffffff;background-color:#1a73e8;">
</button>
</div>
</div>
<style type="text/css">
#chatbot-div-active{
box-sizing: border-box;
position: fixed;
right: 2rem;
bottom:88px;
z-index: 5;
width:320px;
max-width: 90vw;
height:500px;
}.chat-iframe {
box-sizing: border-box;
width: 100%;
height:100%;
background: transparent;
border:none;
}
#chatbot-div-not-active{
box-sizing: border-box;
position: fixed;
right:2rem;
bottom: 1rem;
z-index: 5;
}
</style>

...

iframe src="https://<org name>.aibot.ascendo.ai/null?api_key=<api_key>"

3.2 Entitlement Integration

...