This sample shows how to integrate Active Learning in a QnA Maker bot in NodeJS. Click here to know more about how to enable and use active learning .
The QnA Maker Service enables you to build, train and publish a simple question and answer bot based on FAQ URLs, structured documents or editorial content in minutes. In this sample, we demonstrate how to use the Active Learning to generate suggestions for knowledge base.
This samples requires prerequisites in order to run.
This bot uses QnA Maker Service, an AI based cognitive service, to implement simple Question and Answer conversational patterns.
-
Node.js version 10.14 or higher
# determine node version node --version
QnA knowledge base setup and application configuration steps can be found here.
-
Clone the repository
git clone https://github.com/microsoft/botbuilder-samples.git
-
In a terminal, navigate to
samples/javascript_nodejs/48.qnamaker-activelearning-bot
cd samples/javascript_nodejs/48.qnamaker-activelearning-bot
-
Install modules
npm install
-
Setup QnAMaker
The prerequisite outlined above contain the steps necessary to provision a QnA Knowledge Base on www.qnamaker.ai. QnA knowledge base setup and application configuration steps can be found here.
-
Start the bot
npm start
Bot Framework Emulator is a desktop application that allows bot developers to test and debug their bots on localhost or running remotely through a tunnel.
- Install the Bot Framework Emulator version 4.3.0 or greater from here
- Launch Bot Framework Emulator
- File -> Open Bot
- Enter a Bot URL of
http://localhost:3978/api/messages
QnA Maker enables you to power a question and answer service from your semi-structured content.
One of the basic requirements in writing your own bot is to seed it with questions and answers. In many cases, the questions and answers already exist in content like FAQ URLs/documents, product manuals, etc. With QnA Maker, users can query your application in a natural, conversational manner. QnA Maker uses machine learning to extract relevant question-answer pairs from your content. It also uses powerful matching and ranking algorithms to provide the best possible match between the user query and the questions.
- Once your QnA Maker service is up and you have published the sample KB, try the following queries to trigger the Train API on the bot.
- Sample queries: "surface pro 4", "apps on your surface pro"
To learn more about deploying a bot to Azure, see Deploy your bot to Azure for a complete list of deployment instructions.