GETTING STARTED
SearchAssist Overview
SearchAssist Introduction
Onboarding SearchAssist
Build your first App
Glossary
Release Notes
Current Version
Recent Updates
Previous Versions

CONCEPTS
Managing Sources
Introduction
Files
Web Pages
FAQs
Structured Data 
Connectors
Introduction to Connectors
SharePoint Connector
Confluence Connector
Zendesk Connector
ServiceNow Connector
Salesforce Connector
Azure Storage Connector
Google Drive Connector
Dropbox Connector
Oracle Knowledge Connector
Virtual Assistants
Managing Indices
Introduction
Index Fields
Traits
Workbench
Introduction to Workbench
Field Mapping
Entity Extraction
Traits Extraction
Keyword Extraction
Exclude Document
Semantic Meaning
Snippet Extraction
Custom LLM Prompts
Index Settings
Index Languages
Managing Chunks
Chunk Browser
Managing Relevance
Introduction
Weights
Highlighting
Presentable
Synonyms
Stop Words
Search Relevance
Spell Correction
Prefix Search
Personalizing Results
Introduction
Answer Snippets
Introduction
Extractive Model
Generative Model
Enabling Both Models
Simulation and Testing
Debugging
Best Practices and Points to Remember
Troubleshooting Answers
Answer Snippets Support Across Content Sources
Result Ranking
Facets
Business Rules
Introduction
Contextual Rules
NLP Rules
Engagement
Small Talk
Bot Actions
Designing Search Experience
Introduction
Search Interface
Result Templates
Testing
Preview and Test
Debug Tool
Running Experiments
Introduction
Experiments
Analyzing Search Performance
Overview
Dashboard
User Engagement
Search Insights
Result Insights
Answer Insights

ADMINISTRATION
General Settings
Credentials
Channels
Collaboration
Integrations
OpenAI Integration
Azure OpenAI Integration
Billing and Usage
Plan Details
Usage Logs
Order and Invoices

SearchAssist PUBLIC APIs
API Introduction
API List

SearchAssist SDK

HOW TOs
Use Custom Fields to Filter Search Results and Answers
Add Custom Metadata to Ingested Content
Write Painless Scripts
Configure Business Rules for Generative Answers

Deploying SearchAssist App

This guide helps you deploy and integrate their SearchAssist app on their website or a channel. The SearchAssist platform includes an SDK along with a tutorial and associated API documentation. 

This tutorial provides a step-by-step guide for setting up and running an instance of the SearchAssist Web SDK, which is a collection of libraries that you can use to integrate a SearchAssist app with your other web applications.

Prerequisites 

Follow these steps prior to installing and configuring the SearchAssist Web SDK.

  • Build a SearchAssist app for integration  To get started, you need to develop a SearchAssist app on  the SearchAssist platform in business user mode and then configure the SearchAssist app to run on the Web/Mobile Client channel. 
  • Create a New Credential  You need to create a credential while configuring the Web/Mobile client channel. 
  • Configure Web/Mobile Client channel  To use the SearchAssist app with the Web SDK, you must configure the app for the Web/Mobile Client channel using the credentials created in the preceding step. 
  • Copy the following details from the Web/Mobile client details page
    • SearchAssist App Name
    • SearchAssist App ID
    • Client ID
    • Client secret ID
    • Search ID

Deploying Your SearchAssist App

SearchAssist grants access to the folder required for the Web SDK and a test application to run the SearchAssist app on your machine as a localhost server for testing purposes.

Once you are satisfied with the end-user experience offered by the SearchAssist app, you can launch it in the required channel. 

  1. To get the SearchAssist Web SDK, write to <emailSA>@kore.ai.
  2. Extract all files to your local folder.
  3. From the SearchAssist Business Portal -> Manage -> Web/Mobile Client Channel page on the Channels menu, copy the following: (These values need to be updated in the ‘findly-config.js’ file)
    • App Name 
    • App ID
    • Client ID 
    • Client secret ID
    • Search ID
  4. Open the extracted folder, locate and navigate to /web-kore-sdk-private/demo/findly/folder.
  5. Open ‘findly-config.js’  file in any of the editors (e.g. Notepad++, Visual studio).

Update the botOptions parameters botInfo, clientID and clientSecret, and your emailID as user identity. modify the host URLs as per your instance.

 

botOptionsFindly.koreAPIUrl = "Host URL"; (Ex: ‘https://searchassist.kore.ai/’)

botOptionsFindly.baseAPIServer = “”;   (Ex: ‘https://searchassist.kore.ai/’)

botOptionsFindly.botInfo = { chatBot: "", "taskBotId": ""};

botOptionsFindly.clientId = "";

botOptionsFindly.clientSecret = "";

botOptionsFindly.searchIndexID = "";

botOptionsFindly.reWriteSocketURL = {

        protocol: 'wss',

        hostname: ''  (Ex: ‘qa.kore.ai’)

    };

 

  1. Save the changes in the ‘Findly-config.js’ file.
  2. Locate and navigate to /web-kore-sdk-private/demo/ folder.
  3. Right click “index.html” file and open it with any one of the browsers. The end-user SDK opens with the changes in the configured SearchAssist app.
  4. Run a search in the SDK to display relevant results. Data searched in the End-user SDK (“searches”, “Users”, “Clicks”, and “Appearance of Sources data”) displayed in the Business user portal.

When you host the SearchAssist app on a local system, it’s deployed on a given demo website template to demonstrate functionality and lets you evaluate how it performs on your content. 

The UIs customized in the SearchAssist platform as a Business user can be viewed once the SearchAssist app is hosted with the SDK or in Test mode prior to launch.

Validation

If the SearchAssist app is running in a local box, you must complete the following mandatory steps to validate the app.

  1. Run SDK in Chrome browser in security disability mode to allow the Cross-Origin Resource Sharing (CORS).
  2. Open Windows Run command and paste chrome.exe –disable-web-security –user-data-dir=c:\my-chrome-data\data.
  3. Hit Enter. Chrome opens in disabled security disabled mode.
  4. Paste the index.html path here to run the SDK.

Passing Data via Web SDK

Pass additional information of the user accessing the channel by adding the custom data at botInfo inside the SearchAssist-config.js file.

 

botOptionsFindly.botInfo = { chatBot: “<App Name>”,

    "taskBotId": "<App ID>",

"customData":{

} };

Example:

botOptionsFindly.botInfo = {chatBot: “<App Name>”, 

                            "taskBotId": "<App ID>",

                            "customData":{"test":"s"} 

                       };

Common Errors

  • A wrong URL is given in the index.html, so users see a 404 error. Double-check the URL. URL changes depending on whether you are hosting the bot on your own web SDK or on SearchAssist’s web SDK.
  • User sees a Not found error when the wrong clientID or no clientID is given. Check the correct ClientID from Business Portal -> Manage -> Web/Mobile Client Channel page on the Channels menu botOptions.clientId = “{clientID}”; // secure client-id.
  • Error verifying the jwt The wrong clientSecret is given in the index.html. Check the clientSecret you get from Business Portal -> Manage -> Web/Mobile Client Channel page on the Channels menu “clientSecret”: “{clientSecret}” //provide clientSecret here.

Installing SDK in Local Linux Machine

Follow these steps to host SDK locally in the “Linux” System

  1. Download the Linux version of the  SDK file from the source.   
    • If SDK code is in “rar” format then unrar the file with the command “unrar x <filename>.rar”  in anyone of the Terminal.
    • If SDK code is in the “Zip” format then Extract the file.
  2. In the unzip/unrar file navigate to the “findly.config.js” file.
  3. In the “findly.config.js” file update the app credentials as applicable 
  4. Change the required configs like KoreAPI Url & baseAPIserver  to set it for the required Linux environment    For QA Instance botOptionsFindly.koreAPIUrl=”https://searchassist-qa.kore.ai/api/
  5. Add the Credential to run the search with respect to the app you want to test
     
  6. Update the Socket connection URL
  7. Save all the changes done in the SDK File
  8. Run the command to disable browser security:
    /usr/bin/google-chrome-stable –disable-web-security –user-data-dir=/home/jossnaz/.config/google-chrome/” in anyone of the Terminal. 
  9. Open the “Index.html”  file in the security disabled browserNote: Ensure the chrome browser used is updated to the latest version. 

    Privileges Error
    The users have to ensure they have administrator privileges before they log in as admin to run the above installation process.

 

Deploying SearchAssist App

This guide helps you deploy and integrate their SearchAssist app on their website or a channel. The SearchAssist platform includes an SDK along with a tutorial and associated API documentation. 

This tutorial provides a step-by-step guide for setting up and running an instance of the SearchAssist Web SDK, which is a collection of libraries that you can use to integrate a SearchAssist app with your other web applications.

Prerequisites 

Follow these steps prior to installing and configuring the SearchAssist Web SDK.

  • Build a SearchAssist app for integration  To get started, you need to develop a SearchAssist app on  the SearchAssist platform in business user mode and then configure the SearchAssist app to run on the Web/Mobile Client channel. 
  • Create a New Credential  You need to create a credential while configuring the Web/Mobile client channel. 
  • Configure Web/Mobile Client channel  To use the SearchAssist app with the Web SDK, you must configure the app for the Web/Mobile Client channel using the credentials created in the preceding step. 
  • Copy the following details from the Web/Mobile client details page
    • SearchAssist App Name
    • SearchAssist App ID
    • Client ID
    • Client secret ID
    • Search ID

Deploying Your SearchAssist App

SearchAssist grants access to the folder required for the Web SDK and a test application to run the SearchAssist app on your machine as a localhost server for testing purposes.

Once you are satisfied with the end-user experience offered by the SearchAssist app, you can launch it in the required channel. 

  1. To get the SearchAssist Web SDK, write to <emailSA>@kore.ai.
  2. Extract all files to your local folder.
  3. From the SearchAssist Business Portal -> Manage -> Web/Mobile Client Channel page on the Channels menu, copy the following: (These values need to be updated in the ‘findly-config.js’ file)
    • App Name 
    • App ID
    • Client ID 
    • Client secret ID
    • Search ID
  4. Open the extracted folder, locate and navigate to /web-kore-sdk-private/demo/findly/folder.
  5. Open ‘findly-config.js’  file in any of the editors (e.g. Notepad++, Visual studio).

Update the botOptions parameters botInfo, clientID and clientSecret, and your emailID as user identity. modify the host URLs as per your instance.

 

botOptionsFindly.koreAPIUrl = "Host URL"; (Ex: ‘https://searchassist.kore.ai/’)

botOptionsFindly.baseAPIServer = “”;   (Ex: ‘https://searchassist.kore.ai/’)

botOptionsFindly.botInfo = { chatBot: "", "taskBotId": ""};

botOptionsFindly.clientId = "";

botOptionsFindly.clientSecret = "";

botOptionsFindly.searchIndexID = "";

botOptionsFindly.reWriteSocketURL = {

        protocol: 'wss',

        hostname: ''  (Ex: ‘qa.kore.ai’)

    };

 

  1. Save the changes in the ‘Findly-config.js’ file.
  2. Locate and navigate to /web-kore-sdk-private/demo/ folder.
  3. Right click “index.html” file and open it with any one of the browsers. The end-user SDK opens with the changes in the configured SearchAssist app.
  4. Run a search in the SDK to display relevant results. Data searched in the End-user SDK (“searches”, “Users”, “Clicks”, and “Appearance of Sources data”) displayed in the Business user portal.

When you host the SearchAssist app on a local system, it’s deployed on a given demo website template to demonstrate functionality and lets you evaluate how it performs on your content. 

The UIs customized in the SearchAssist platform as a Business user can be viewed once the SearchAssist app is hosted with the SDK or in Test mode prior to launch.

Validation

If the SearchAssist app is running in a local box, you must complete the following mandatory steps to validate the app.

  1. Run SDK in Chrome browser in security disability mode to allow the Cross-Origin Resource Sharing (CORS).
  2. Open Windows Run command and paste chrome.exe –disable-web-security –user-data-dir=c:\my-chrome-data\data.
  3. Hit Enter. Chrome opens in disabled security disabled mode.
  4. Paste the index.html path here to run the SDK.

Passing Data via Web SDK

Pass additional information of the user accessing the channel by adding the custom data at botInfo inside the SearchAssist-config.js file.

 

botOptionsFindly.botInfo = { chatBot: “<App Name>”,

    "taskBotId": "<App ID>",

"customData":{

} };

Example:

botOptionsFindly.botInfo = {chatBot: “<App Name>”, 

                            "taskBotId": "<App ID>",

                            "customData":{"test":"s"} 

                       };

Common Errors

  • A wrong URL is given in the index.html, so users see a 404 error. Double-check the URL. URL changes depending on whether you are hosting the bot on your own web SDK or on SearchAssist’s web SDK.
  • User sees a Not found error when the wrong clientID or no clientID is given. Check the correct ClientID from Business Portal -> Manage -> Web/Mobile Client Channel page on the Channels menu botOptions.clientId = “{clientID}”; // secure client-id.
  • Error verifying the jwt The wrong clientSecret is given in the index.html. Check the clientSecret you get from Business Portal -> Manage -> Web/Mobile Client Channel page on the Channels menu “clientSecret”: “{clientSecret}” //provide clientSecret here.

Installing SDK in Local Linux Machine

Follow these steps to host SDK locally in the “Linux” System

  1. Download the Linux version of the  SDK file from the source.   
    • If SDK code is in “rar” format then unrar the file with the command “unrar x <filename>.rar”  in anyone of the Terminal.
    • If SDK code is in the “Zip” format then Extract the file.
  2. In the unzip/unrar file navigate to the “findly.config.js” file.
  3. In the “findly.config.js” file update the app credentials as applicable 
  4. Change the required configs like KoreAPI Url & baseAPIserver  to set it for the required Linux environment    For QA Instance botOptionsFindly.koreAPIUrl=”https://searchassist-qa.kore.ai/api/
  5. Add the Credential to run the search with respect to the app you want to test
     
  6. Update the Socket connection URL
  7. Save all the changes done in the SDK File
  8. Run the command to disable browser security:
    /usr/bin/google-chrome-stable –disable-web-security –user-data-dir=/home/jossnaz/.config/google-chrome/” in anyone of the Terminal. 
  9. Open the “Index.html”  file in the security disabled browserNote: Ensure the chrome browser used is updated to the latest version. 

    Privileges Error
    The users have to ensure they have administrator privileges before they log in as admin to run the above installation process.