OVERVIEW
Virtual Assistants
Kore.ai Platform
Key Concepts
Natural Language Processing (NLP)
Accessing Platform
VIRTUAL ASSISTANTS
Virtual Assistant Builder
Virtual Assistant Types
Getting Started
Creating a Simple Bot
SKILLS
Storyboard
Dialog Task
Introduction
Dialog Builder (New)
Dialog Builder (Legacy)
User Intent Node
Dialog Node
Entity Node
Supported Entity Types
Composite Entities
Supported Colors
Supported Company Names
Form Node
Logic Node
Message Nodes
Confirmation Nodes
Bot Action Node
Service Node
Custom Authentication
2-way SSL for Service nodes
Script Node
Agent Transfer Node
WebHook Node
Grouping Nodes
Connections & Transitions
Manage Dialogs
User Prompts
Knowledge Graph
Terminology
Building
Generation
Importing and Exporting
Analysis
Knowledge Extraction
Build
Alert Tasks
Introduction
Ignore Words and Field Memory
How to Schedule a Smart Alert
Small Talk
Digital Views
Overview
Configuring Digital Views
Digital Forms
Overview
How to Configure Digital Forms
NATURAL LANGUAGE
Overview
Machine Learning
Introduction
Model Validation
Fundamental Meaning
Introduction
NLP Guidelines
Knowledge Graph
Traits
Introduction
How to Use Traits
Ranking and Resolver
Advanced NLP Configurations
INTELLIGENCE
Overview
Context Management
Overview
Session and Context Variables
Context Object
How to Manage Context Switching
Manage Interruptions
Dialog Management
Sub-Intents & Follow-up Intents
Amend Entity
Multi-Intent Detection
Sentiment Management
Tone Analysis
Sentiment Management
Event Based Bot Actions
Default Conversations
Default Standard Responses
TEST & DEBUG
Talk to Bot
Utterance Testing
Batch Testing
Conversation Testing
CHANNELS
PUBLISH
ANALYZE
Overview
Dashboard
Custom Dashboard
Overview
How to Create Custom Dashboard
Conversation Flows
NLP Metrics
ADVANCED TOPICS
Universal Bots
Overview
Defining
Creating
Training
Customizing
Enabling Languages
Store
Smart Bots
Defining
koreUtil Libraries
SETTINGS
Authorization
Language Management
PII Settings
Variables
Functions
IVR Integration
General Settings
Management
Import & Export
Delete
Versioning
Collaborative Development
PLAN & USAGE
Overview
Usage Plans
Support Plans
Invoices
API GUIDE
API Overview
API List
API Collection
SDKs
SDK Overview
SDK Security
SDK App Registration
Web SDK Tutorial
Message Formatting and Templates
Mobile SDK Push Notification
Widget SDK Tutorial
Widget SDK – Message Formatting and Templates
Web Socket Connect & RTM
Using the BotKit SDK
Installing
Configuring
Events
Functions
BotKit SDK Tutorial – Agent Transfer
BotKit SDK Tutorial – Flight Search Sample Bot
Using an External NLP Engine
ADMINISTRATION
HOW TOs
Creating a Simple Bot
Creating a Banking Bot
Context Switching
Using Traits
Schedule a Smart Alert
Configure UI Forms
Add Form Data into Data Tables
Configuring Digital Views
Add Data to Data Tables
Update Data in Data Tables
Custom Dashboard
Custom Tags to filter Bot Metrics
Patterns for Intents & Entities
Build Knowledge Graph
Global Variables
Content Variables
Using Bot Functions
Configure Agent Transfer
Update Balance Task
Transfer Funds Task
RELEASE NOTES
  1. ホーム
  2. Docs
  3. Virtual Assistants
  4. How Tos
  5. Bot関数の使用方法

Bot関数の使用方法

このハウツーでは、Bot関数を使用して機能の一部を再利用できるバンキングBotのシナリオについてご説明します。支出レポートを関数としてプログラムし、普通預金口座とクレジットカードの両方に使用する方法を説明していきます。Bot関数とは何か、またKore.aiのBotプラットフォームにどのように実装されているかについての詳細は、こちらを参照してください

例題

バンキングBotには、レポートタスクがあります。

  1. 月次報告書は、特定の口座番号の毎月の残高を表示します。
  2. クレジットカード明細書には、特定のクレジットカードの費用の概要が記載されています。
  3. どちらのレポートも円グラフとして表示され、入力は月と金額の値を持つ配列となっています。

このドキュメントでは、Bot関数を使用してコーディング作業の重複を回避し、均一な表示を確保する方法を説明します。

Pre-requisites

  • Botビルドナレッジ
  • 動作可能なBot。ここでは、こちらのバンキングBotを使用します。
  • 以下は、メッセージテンプレートを使用してデータを表示する2つの関数を含むスクリプトファイルです(メッセージテンプレートの詳細については、こちらを参照してください)。
    • tableTemplate-2次元の配列を取り、コンテンツを表形式で表示します
    • pieTemplate2次元の配列を取り、コンテンツを円形式で表示します

    次の内容をコピーして、.jsファイル(たとえばfunctionEX.jsなど)として保存します。

    function tableTemplate(data){ var message = { "type": "template", "payload": { "template_type": "mini_table", "layout": "vertical", "text":"Monthly Balance Statement", "elements": [] } }; for (i=0; i < data.length; i++) { var j=0; var element = { "primary":[[data[i][j]],[data[i][j+1],"right"]], "additional":[[data[i][j+2],data[i][j+3]],[data[i][j+4],data[i][j+5]]] }; message.payload.elements.push(element); } return JSON.stringify(message); }; function pieTemplate(data){ var message = { "type": "template", "payload": { "template_type": "piechart", "pie_type": "regular", "text": "Monthly Expense Report", "elements": [] } }; for (i=0; i < data.length; i++) { var element = { "title": data[i][0], "value": data[i][1] }; message.payload.elements.push(element); } return JSON.stringify(message); };

導入

  1. バンキングBotを開く
  2. 設定 -> 構成設定からBot関数セクションを選択します。
  3. インポートをクリックすると、「カスタムスクリプトのインポート」ウィンドウが開きます。
  4. 「前提条件」セクションから保存したスクリプトファイルをドラッグアンドドロップするか参照して、インポートをクリックします。
  5. 成功メッセージが表示されたら、完了をクリックします。
  6. スクリプトファイルを使用する準備が整いました。
  7. Botタスクページを開き、月次報告書という名前の新しいダイアログタスクを作成します。
    1. 口座番号口座タイプを取得するエンティティを追加します。
    2. 理想的には、毎月の残高の詳細を取得するためのサービスコールが必要です。ここでは、デモンストレーションの目的で静的な値を使用します。
    3. スクリプトノードを追加し、次の内容を入力します(1月、2月、3月の残高を格納する配列を宣言しています)。 context.monthlyBal = [["Jan",100],["Feb",200],["Mar", 300]];
    4. メッセージノードを追加して、以前に宣言したBot関数にこのデータを送信し、レポートを取得します。
      • Botの応答セクションから応答の管理をクリックします。
      • Bot応答を追加しウェブ/モバイルクライアントチャネルとして選択し、JavaScriptタブに切り替えて、次のコードを入力して値を表形式で表示します。 var info = context.monthlyBal; print(tableTemplate(info));
    5. 別のメッセージノードを追加して、以前に宣言したBot関数にこのデータを送信し、レポートを取得します。
      • Botの応答セクションから応答の管理をクリックします。
      • Bot応答を追加しウェブ/モバイルクライアントチャネルとして選択し、JavaScriptタブに切り替えて、次のコードを入力して値を円グラフで表示します。 var info = context.monthlyBal; print(pieTemplate(info));
  8. ダイアログタスクを閉じて、Botタスクページに戻ります。
  9. 「クレジットカード明細書」という名前の新規ダイアログタスクを作成します。
    1. 口座番号を取得するエンティティを追加します。
    2. 理想的には、毎月の支出の値を取得するためのサービスコールが必要です。ここでは、デモンストレーションの目的で静的な値を使用します。
    3. スクリプトノードを追加し、次の内容を入力します(すべての月の支出値を繰り越す配列を宣言しています)。 context.monthlyExpenses = [["Jan",100],["Feb",200],["Mar", 300],["Apr",100],["May",400],["June", 500],["Jul",100],["Aug",200],["Sept", 300],["Oct",100],["Nov",100],["Dec", 300]];
    4. メッセージノードを追加して、以前に宣言したBot関数にこのデータを送信し、レポートを取得します。
      • Botの応答セクションから応答の管理をクリックします。
      • Bot応答を追加しウェブ/モバイルクライアントチャネルとして選択し、JavaScriptタブに切り替えて、次のコードを入力して値を円グラフで表示します。ご覧のとおり、前のダイアログタスクで呼び出されたものと同じ関数を使用しています。 var info = context.monthlyExpenses; print(pieTemplate(info));
  10. ダイアログタスクを終了します。
  11. Botに話しかけ、両方のダイアログを試してみましょう。このように、同じ関数を使用して複数の場所にレポートを表示できます。
メニュー
Kore.ai Named a Leader in 2022 Gartner® Magic Quadrant™ for Enterprise Conversational AI PlatformsGet the Report