Skip main navigation

New offer! Get 30% off one whole year of Unlimited learning. Subscribe for just £249.99 £174.99. New subscribers only. T&Cs apply

Find out more

Get started with the Language service and Azure Bot Service

Read this article to learn about Language services and Azure Bot Service.

In the previous step, we received a brief introduction to this activity. In this step, we will learn about getting started with the Language service and Azure Bot Service.

You can easily create a user support bot solution on Microsoft Azure using a combination of two core services:

  • Language service. The Language service includes a custom question answering feature that enables you to create a knowledge base of question and answer pairs that can be queried using natural language input.
Note:
The question answering capability in the Language service is a newer version of the QnA Maker service which is still available as a separate service.
  • Azure Bot service. This service provides a framework for developing, publishing, and managing bots on Azure.

Creating a custom question answering knowledge base

The first challenge in creating a user support bot is to use the Language service to create a knowledge base. You can use the Language Studio’s custom question answering feature to create, train, publish, and manage knowledge bases.
Note:
You can write code to create and manage knowledge bases using the Language service REST API or SDK. However, in most scenarios, it is easier to use the Language Studio.

Provision a Language service Azure resource

To create a knowledge base, you must first provision a Language service resource in your Azure subscription.

Define questions and answers

After provisioning a Language service resource, you can use the Language Studio’s custom question answering feature to create a knowledge base that consists of question-and-answer pairs. These questions and answers can be:

  • Generated from an existing FAQ document or web page.
  • Entered and edited manually.

In many cases, a knowledge base is created using a combination of all of these techniques, starting with a base dataset of questions and answers from an existing FAQ document and extending the knowledge base with additional manual entries.

Questions in the knowledge base can be assigned alternative phrasing to help consolidate questions with the same meaning. For example, you might include a question like:

What is your head office location?

You can anticipate different ways this question could be asked by adding an alternative phrasing such as:

Where is your head office located?

Test the knowledge base

After creating a set of question-and-answer pairs, you must save it. This process analyzes your literal questions and answers and applies a built-in natural language processing model to match appropriate answers to questions, even when they are not phrased exactly as specified in your question definitions. Then you can use the built-in test interface in the Language Studio to test your knowledge base by submitting questions and reviewing the answers that are returned.

Use the knowledge base

When you’re satisfied with your knowledge base, deploy it. Then you can use it over its REST interface. To access the knowledge base, client applications require:

  • the knowledge base ID
  • the knowledge base endpoint
  • the knowledge base authorization key.

Build a bot with the Azure Bot Service

After you’ve created and deployed a knowledge base, you can deliver it to users through a bot.

Create a bot for your knowledge base

You can create a custom bot by using the Microsoft Bot Framework SDK to write code that controls conversation flow and integrates with your knowledge base. However, an easier approach is to use the automatic bot creation functionality, which enables you to create a bot for your deployed knowledge base and publish it as an Azure Bot Service application with just a few clicks.

Extend and configure the bot

After creating your bot, you can manage it in the Azure portal, where you can:

  • extend the bot’s functionality by adding custom code
  • test the bot in an interactive test interface
  • configure logging, analytics, and integration with other services.

For simple updates, you can edit bot code directly in the Azure portal. However, for more comprehensive customization, you can download the source code and edit it locally, republishing the bot directly to Azure when you’re ready.

Connect channels

When your bot is ready to be delivered to users, you can connect it to multiple channels, making it possible for users to interact with it through web chat, email, Microsoft Teams, and other common communication media.

A chat interface showing user input and responses from a bot(Take a closer look)

Users can submit questions to the bot through any of its channels, and receive an appropriate answer from the knowledge base on which the bot is based.

In the following step, we will learn about creating a bot. Remember to click on Mark as complete and then Next to continue.

This article is from the free online

Introduction to Microsoft Azure AI Fundamentals

Created by
FutureLearn - Learning For Life

Reach your personal and professional goals

Unlock access to hundreds of expert online courses and degrees from top universities and educators to gain accredited qualifications and professional CV-building certificates.

Join over 18 million learners to launch, switch or build upon your career, all at your own pace, across a wide range of topic areas.

Start Learning now