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
2 answers

No renderer for this activity - Microsoft Bot Framework Emulator qnamaker

When I run the qnamaker chatbot, I get this message on the emulator along with the answers when I type a question. { "type":"trace" "serviceUrl":"http://localhost:port#" "channelId": "emulator" etc } Is this an error. If not, how…
2
votes
2 answers

QnA Maker - Runtime Error: Authorization Failed

I keep getting the attached runtime error in QnA maker. I could access the Knowledge base fine after creating it but after about an hour i started getting the below error. Error Example I have tried everything including trying to delete the…
C Dean
  • 21
  • 2
2
votes
4 answers

QnA maker - Different Results between REST API and Preview Page

I'm using the Azure QnA Version 4. I'm posting using the REST API. If I'm posting against the Live-Database using the parameter isTest=true I'm getting an answer score of around 80% which is very reasonable as my question almost matches the…
M.A.
  • 21
  • 2
2
votes
5 answers

Azure Qna Maker multiple languages

I am working on a bot within Microsoft Azure environment, which is able to answer questions in four languages. The overall scheme is the following: the input of the user is submitted to Azure TextAnalytics, and the deduced language is used to route…
2
votes
3 answers

How to get the Qna Maker "Q" from Analytics Application Insights?

I have created my chatbot's knowledge base with Qna Maker and I am trying to visualize some statistics with Analytics Application Insights. What I want to do I would like to create a chart with the most requested Qna Maker questions. My problem I…
2
votes
1 answer

Integrating bot framework Luis with QnA as an Intent, then re-ask user after getting to the QnA

I am trying to make a FAQ intent that act as a QnA dialog, which should re-ask the user after getting into the intent. Below is my code so in integrating the luis and QnA: [LuisIntent("FAQ")] public async Task FAQ(IDialogContext context,…
2
votes
1 answer

ChatBot QnaMaker(Microsoft Azure) vs Lex (Amazon AWS)

Looking to make a chatbot on either Microsoft QnaMaker or Lex. I would like to be able to make API calls to request answer to the question (node.js), train the bot using the API. Currently I am using QnaMaker but unfortunately it doesn't seem to…
tomeda
  • 55
  • 1
  • 6
2
votes
1 answer

QnA Maker excel file

Does anyone know how to add or separate two questions to one answer in excel? example: Question: elementary school name, primary school name, school name Answer: Critobal Columbus
2
votes
1 answer

Does QnAMaker learn from the answers, or just from the questions?

What would happen if I removed all answers from a QnAMaker knowledgebase and replaced them with IDs that mapped to the answers in a separate database? Would QnAMaker continue to return the same response (now as an ID)? Asked another way: does the…
2
votes
1 answer

Using multiple StrictFilters in QnA Maker

I'm looking to use the StrictFilter function of Microsoft QnA Maker, to pass in multiple strict filters, but to treat them as filterA OR filterB. It appears that the strict filters are treated as filterA AND filterB. Is there any way to change them…
Jason Sypkens
  • 168
  • 1
  • 10
2
votes
1 answer

C# BotFrameWork Q & A Maker , Do you mean response?

When qna maker matches with multiple questions it responses with do you mean and list of questions? Is it possible to add alias for these questions , as the displaying the question user for training wont be appropriate.
saravana13
  • 37
  • 3
2
votes
3 answers

build a bot in Azure online code editor

I'm experiencing the following error whenever I attempt to build my Azure web app bot online. When I run build.cmd, deploy.cmd immediately fails with the following error. I've not been able to find any information on the web on how to resolve this…
2
votes
3 answers

QnA Maker generally available vs preview: it doesn't find the answers

It's a bit strange. I have created a knowledge base with the same excel file both in preview and generally available QnA Maker service but it doesn't find a lot of questions in the last one... In the preview one works fine. I have noticed that the…
2
votes
1 answer

Training QnA Maker with API v4.0

I used to use the preview version of QnA Maker and with it the v3.0 API had this train endpoint which could be used to reinforce a correct…
mattipet
  • 277
  • 2
  • 16
2
votes
2 answers

qnamaker with LUIS

I'm exploring the microsoft services. LUIS caught my attention. Would it be beneficial to add it to a QNAmaker bot? The bot basically answers questions as accurately as possible, nothing else, just pure answer from knowledgebase. Do I even need to…