Questions tagged [azure-qna-maker]

Questions regarding the use and implementation of Microsoft's QnA Maker.

Easy-to-use, REST API and web-based service that trains AI to respond to user's questions in a more natural, conversational way.

With optimized machine learning logic and the ability to integrate industry-leading language processing with ease, QnA Maker distills masses of information into distinct, helpful answers.

enter image description here

596 questions
2
votes
0 answers

Non-optimal QnA Maker App Service instance behaviour after idling

We are using Microsoft Azure Bot Service with QnA Maker cognitive service to develop a QnA bot for a client. Functionality-wise, the bot is ready, but we've been doing some load tests and noticed some unexpected behaviour. With single instance of…
2
votes
1 answer

Deploying a manifest app package for microsoft teams (Something Went wrong)

https://github.com/OfficeDev/microsoft-teams-faqplusplus-app/wiki/Deployment-guide This is the resource I used to create my service. I've run through the process multiple times to make sure I didn't miss anything but now I've hit a wall of…
PZTheGreat
  • 21
  • 2
2
votes
0 answers

Can't create ms azure bot

I am having an account on Microsoft azure with GitHub student verification. As per show in azure tutorials i tried to create a bot. I went to QnA maker and successfully created a service in step 1. But in step 2 Azure QnA service is showing that…
2
votes
2 answers

How do you identify questions that the bot could not answer

My organisation is starting to experiment with the Microsoft bot framework. One of the questions our enterprise architect has asked is as follows: How do we identify questions that the bot was unable to answer? I've checked the documentation but I'm…
2
votes
0 answers

Azure QnA maker fails to create a knowledge base by raising ExtractionFailure error code

We have the following code snippet that is supposed to create a knowledge base: var createKbDto = new CreateKbDTO { Name = request.Name, QnaList = new List(), Urls = new List
2
votes
0 answers

QnAmaker not listing up my knowledge base and is not even letting me to create a new one

Am not able to see the list of my knowledge base already created. The KB was created a week ago and is running fine with the bot webapp. But I cannot make any changes to it as I don't see it listed in the following link…
2
votes
1 answer

QnA Maker Knowledge Base not showing up

I have an existing Knowledge Base in the QnA Maker that I am trying to update, however I am getting the following error: "You currently have no "knowledge bases", build one using the Create a knowledge base menu item. Learn more" When I try to…
2
votes
0 answers

Azure QnA Bot ServiceError: CreateAppOnlySteps

While following this tutorial, the step that creates the web app bot in Azure results in an error. After clicking Create Bot in QnA Maker, accepting all of the default values in the new Azure window, and clicking the Create button to create the web…
crayden
  • 2,130
  • 6
  • 36
  • 65
2
votes
1 answer

How to query the knowledgebase using the QnaId

When there is a multiprompt present, instead of adding buttons to go further I would like to add them directly into my card. I have the qnaid's of the questions, can I get the answer just with the id?
stilllearning
  • 163
  • 10
2
votes
1 answer

unable to get suggestions in qna maker after enabling active leaning filter by suggestions option

Hi, I'm unable to get suggestions for qna pair in qna maker after enabling active learning feature, and when filter by suggestions is ON I'm getting the display as above. Though the qna pairs are added i can not see them after the filter by…
gayatri
  • 81
  • 6
2
votes
1 answer

Is there any way to specify order of alternate questions in QnA pair (QnA Maker)?

I am using QnA Maker Service and also active learning feature via explicit feedback which works as follows: query QnA Maker, find ambigous questions/answer pairs, create hero card by choosing first question from each QnA pair (QnAMakerResult) and…
Druudik
  • 955
  • 1
  • 10
  • 32
2
votes
1 answer

Can't Upload a File to QnaMaker Knowledge Base using SDK

I currently have an Azure Function that I would like to have update a QnaMaker Knowledge Base every day or so. Currently everything is connected and working fine, however I can only send Qna Objects (qna pairs) and not urls to files on a website of…
Benson
  • 53
  • 5
2
votes
1 answer

QNAmaker: How to enable context-only for subquestions?

I have a document pdf or docx (only accepted formats for multiturn), this contains alot of subheadings which translate to follow up prompts. This all works fine! But I would like to enable context-only for all of my prompts, because the answers are…
stilllearning
  • 163
  • 10
2
votes
0 answers

QnA call fails in Bot Framework, both locally and deployed

I've been trying to build a bot that uses QnA to anser the user based on categories. I've managed to connect to QnA correctly and get the first level prompted to the user, however, the problem appears when I try to send to QnA another response from…
2
votes
1 answer

QnA Maker Bot AdaptiveCards: how to add Data object in C#

I used the "no code" way to generate a Bot in Azure and connect it to a QnA Maker knowledge base. I have then modified the code so that the Bot uses AdaptiveCards instead of HeroCards to support Markdown formatting in MS Teams channel (format used…