이 튜토리얼은 정보를 보여주고 봇과의 인터렉션을 활성화하는 위젯을 호스팅하기 위해 Kore.ai 봇 웹 SDK의 인스턴스를 설정하고 실행하기 위한 엔드투엔드 워크스루입니다.

위젯 SDK 개요

Kore.ai 위젯 SDK를 호스팅하는 방법에는 두 가지가 있습니다.

  • WebSDK와 함께 공동 호스팅 – 웹/모바일 클라이언트 및 위젯 SDK 채널을 모두 활성화하고 설정하거나,
  • 독립적으로 – 위젯 SDK 채널만 활성화하고 설정합니다.

이 튜토리얼에서는, 두 가지 변형에 대한 지침을 나열합니다.

Kore.ai 위젯 SDK 설치 및 실행하기

이 섹션에서는 위젯 SDK와 로컬 호스트 서버 컴퓨터에서 실행 중인 테스트 애플리케이션을 사용한 Kore.ai 봇을 실행하는 방법을 자세히 설명합니다. 사전 요구 사항

  1. 시작하려면, 테스트 애플리케이션에서 실행할 디지털 뷰가 있는 봇을 빌드해야 합니다(디지털 뷰에 대한 자세한 내용은 여기를 참조하세요).
  2. 새 클라이언트 앱을 생성하거나 기존 클라이언트 앱을 사용하여 위의 봇을 위한 위젯 SDK 채널을 활성화하고 채널 설정을 정의해야 합니다. 단계에 대한 자세한 설명은 여기를 참조하세요.
  3. WebSDK와 함께 패널 및 위젯을 공동 호스팅하려는 경우, 새 클라이언트 앱을 생성하거나 기존 클라이언트 앱을 사용하여 위의 봇을 위한 웹/모바일 클라이언트 채널을 활성화하고 채널 설정을 정의해야 합니다. 단계에 대한 자세한 설명은 여기를 참조하세요.
  4. 봇을 게시합니다.
  5. 채널 -> 설정된 채널에서 설정된 위젯 SDK 채널을 클릭하여 엽니다. 구성 탭에서 다음을 기록합니다. 나중에 위젯 SDK 설정에서 사용할 것입니다.
    • 봇 이름
    • 봇 ID
    • 클라이언트 ID
    • 클라이언트 시크릿
  6. 웹/모바일 SDK와 함께 패널 및 위젯을 공동 호스팅하려면, 채널 -> 설정된 채널에서 설정된 웹/모바일 클라이언트 채널을 클릭하여 엽니다. 구성 탭에서 다음을 기록합니다. 나중에 위젯 SDK 설정에서 사용할 것입니다.
    • 봇 이름
    • 봇 ID
    • 클라이언트 ID
    • 클라이언트 시크릿

다음 단계에서는 위젯 SDK와 로컬 호스트 서버에서 봇을 로컬로 실행하는 테스트 애플리케이션에 필요한 소프트웨어 패키지를 다운로드, 압축 해제, 설치 및 설정해야 합니다. 요구 사항에 따라 아래 해당 섹션을 참조합니다.

  • 패널을 개별적으로 호스팅 또는
  • 웹 SDK와 함께 패널을 공동 호스팅.

개별적 패널 호스팅 설정: Kore.ai 위젯 SDK를 다운로드하려면, https://github.com/Koredotcom/web-kore-sdk로 이동한 다음, 다운로드를 클릭합니다. …/SDKApp/sdk 폴더로 모든 파일을 압축 해제합니다.

  1. UI 폴더를 엽니다.
  2. 다음 파일을 찾고 엽니다: kore-widgets-config.js
  3. 봇 빌더에서 생성한 ‘위젯 SDK’ 채널 설정으로 botOptions를 설정합니다.
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  4. 브라우저에서 index_widgets.html 파일을 열고 표시되는 패널을 확인합니다. 이 <div> 요소를 패널을 호스팅하려는 웹 사이트 html 페이지에 추가할 수 있습니다.

웹/모바일 SDK와 함께 패널 공동 호스팅 설정: Kore.ai 위젯 SDK를 다운로드하려면, https://github.com/Koredotcom/web-kore-sdk로 이동한 다음, 다운로드를 클릭합니다. …/SDKApp/sdk 폴더로 모든 파일을 압축 해제합니다.

  1. UI 폴더를 엽니다.
  2. 다음 파일을 찾고 엽니다: kore-config.js
  3. 봇 빌더에서 생성한 ‘웹/모바일 클라이언트’ 채널 설정으로 botOptions를 설정합니다
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  4. 다음 파일을 엽니다: kore-widgets-config.js
  5. 봇 빌더에서 생성한 ‘위젯 SDK’ 채널 설정으로 botOptions를 설정합니다
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  6. 브라우저에서 index_widgets_chat.html 파일을 열고 위젯과 함께 대화창을 확인합니다.

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

このチュートリアルは、ボットからの情報を表示し、ボットとの対話を可能にするウィジェットをホストするために、Kore.ai ボット Web SDK のインスタンスを設定して実行するためのエンド ツー エンドのウォークスルーです。

ウィジェット SDK の概要

Kore.ai ウィジェット SDK をホストする方法は、2 種類あります:

  • WebSDK と共同でホスティングし、Web/モバイル クライアントと ウィジェット SDK の両方のチャネルを有効にして設定します。
  • 個別に ー ウィジェット SDK チャネルのみを有効にして設定します。

このチュートリアルでは、両方のバリエーションの手順を示します。

Kore.ai ウィジェット SDK のインストールと実行

このセクションでは、ウィジェット SDK を使用して Kore.ai ボットを実行する方法と、コンピュータのローカル ホスト サーバー上で動作するテスト アプリケーションの詳細な手順を説明します。必要条件

  1. はじめに、テスト アプリケーションで実行するために、デジタル ビューでボットを構築する必要があります(デジタル ビューについてはこちらをご覧ください)
  2. 新しいクライアント アプリを作成するか、または既存のクライアント アプリを使用し、チャネル設定を行うことで、上記ボットの ウィジェット SDK チャネルを有効にする必要があります。詳しい手順についてはこちらをご覧ください
  3. WebSDK とともに パネルとウィジェット を共同ホストする場合は、新規のクライアント アプリを作成するか、既存のクライアント アプリを使用して、上記ボットの Web/モバイル クライアント チャネルを有効にし、チャネル設定を定義する必要があります。詳しい手順についてはこちらをご覧ください
  4. ボットの公開します。
  5. [チャネル > 設定済みチャネル] をクリックして、設定されたウィジェット SDK チャネルを開きます。「設定」タブでは、以下の項目をメモします。のちほど、ウィジェット SDK のセットアップでこれらを使用します:
    • ボット名
    • ボット ID
    • クライアント ID
    • クライアント シークレット
  6. パネルとウィジェット を Web/モバイル SDK と共同でホストする場合は、[チャネル > 設定済みチャネルチュートリアル] から、設定済みのWeb/モバイル クライアント チャネルを開きます。「設定」タブで、以下の項目をメモします。のちほど、ウィジェット SDK のセットアップでこれらを使用します:
    • ボット名
    • ボット ID
    • クライアント ID
    • クライアント シークレット

次の手順では、 ウィジェット SDK に必要なソフトウェア パッケージと、ローカル ホスト サーバー上でボットをローカルに実行するテスト アプリケーションをダウンロード、解凍、インストール、および設定します。ご要件に応じて、以下の適切なセクションをご覧ください:

  • パネルを個別にホストするか、または
  • Web SDK とパネルを共同ホストします。

パネルを個別ホストするためのセットアップ: Kore.ai ウィジェット SDK をダウンロードするには、https://github.com/Koredotcom/web-kore-sdkにアクセスして [ダウンロード] をクリックします。すべてのファイルを …/SDKApp/sdk フォルダに解凍します。

  1. UI フォルダを開きます。
  2. を見つけて開きます kore-widgets-config.js
  3. ボット ビルダーで作成したウィジェット SDKチャネル設定を使用して、botOptions を設定します。
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  4. ブラウザで index_widgets.html のファイルを開くと、パネルが表示されます。この <div> 要素をウェブサイトの html ページに追加すると、そこでパネルをホストすることができます。

Web/モバイル SDKでパネルを共同ホストするための設定: Kore.ai ウィジェット SDK をダウンロードするには、https://github.com/Koredotcom/web-kore-sdk にアクセスして [ダウンロード] をクリックします。すべてのファイルを …/SDKApp/sdk フォルダに解凍します。

  1. UI フォルダを開きます。
  2. を見つけて開きます kore-config.js
  3. botOptions を、Bot ビルダーで作成したWeb/モバイル クライアントチャネル設定を使用して、設定します。
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  4. 開きます。 kore-widgets-config.js
  5. botOptions を、ボット ビルダーで作成した「ウィジェット SDK」チャネル設定を使用して、設定します。
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  6. index_widgets_chat.html ファイルをブラウザで開くと、ウィジェットとともにチャット ウィンドウが表示されます。

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed

This tutorial is an end-to-end walkthrough for setting up and running an instance of the Kore.ai Bots Web SDK to host widgets for presenting information from your bots and enabling interaction with your bots.

Widget SDK Overview

There are two ways to host the Kore.ai Widget SDK:

  • co-host them along with the WebSDK – enable and configure both Web/Mobile Client and Widget SDK channels; or
  • independently – enable and configure just the Widget SDK channel.

In this tutorial, we will be listing the instructions for both the variations.

Installing and Running the Kore.ai Widget SDK

This section provides detailed steps on how to run a Kore.ai bot using the Widget SDK and a test application running on your computer localhost server.

Pre-requisites

  1. To get started, you will need to build a bot with Digital Views to run in the test application (see here for more on Digital Views).
  2. You need enable the Widget SDK channel for the above bot by either creating a new client app or use an existing client app and define the channel settings. See here for a detailed explanation of the steps.
  3. If you want to co-host the Panels & Widgets along with the WebSDK, you need enable the Web/Mobile Client channel for the above bot by either creating a new client app or use an existing client app and define the channel settings. See here for a detailed explanation of the steps.
  4. Publish the bot.
  5. From the Channels -> Configured Channels click to open the configured Widget SDK channel. From the Configurations tab make a note of the following, we will be using them later in the Widget SDK setup:
    • Bot Name
    • Bot ID
    • Client ID
    • Client Secret
  6. If you want to co-host Panels & Widgets with Web/Mobile SDK, then from the Channels -> Configured Channels click to open the configured Web/Mobile Client channel. From the Configurations tab make a note of the following, we will be using them later in the Widget SDK setup:
    • Bot Name
    • Bot ID
    • Client ID
    • Client Secret

Next step would be to download, uncompress, install and configure the software packages required for the Widget SDK and a test application to run the bot locally on your localhost server.

Based upon your requirement see the appropriate sections below:

  • host Panels individually; or
  • co-host Panels with Web SDK.

Setup to host Panels individually:

To download the Kore.ai Widget SDK, go to https://github.com/Koredotcom/web-kore-sdk, and then click Download. Extract all files to the …/SDKApp/sdk folder.

  1. Open the UI folder.
  2. Locate and open the kore-widgets-config.js
  3. Configure your botOptions with the ‘Widget SDK’ channel configurations created in bot builder:
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  4. Open the index_widgets.html file in the browser and see the Panels displayed. You can add this <div> element to your website html page to host the Panels there.

Setup to co-host Panels with Web/Mobile SDK:

To download the Kore.ai Widget SDK, go to https://github.com/Koredotcom/web-kore-sdk, and then click Download. Extract all files to the …/SDKApp/sdk folder.

  1. Open UI folder.
  2. Locate and open the kore-config.js
  3. Configure your botOptions with the ‘web/mobile client’ channel configurations created in bot builder
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  4. Open the kore-widgets-config.js
  5. Configure your botOptions with the ‘Widget SDK’ channel configurations created in bot builder
    • botOptions.botInfo
    • botOptions.clientId
    • botOptions.clientSecret
  6. Open the index_widgets_chat.html file in the browser and see the chat window along with the widgets.

Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.
You need to agree with the terms to proceed