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
0
votes
1 answer

How to add multiple knowledge base to a single bot in Azure portal using Node.js?

I have two knowledge base and I wan to use both of them for a single bot to search an answer. How can I use multiple knowledge bases.
0
votes
0 answers

Bot Framework Email channel slow response time

I created basic QnA Maker and connected it to Web App Bot service in Azure. I configured the Email channel with o365 account. When I send a message to that email it takes 5-10 minutes until I get the response back. It seems as if the bot was…
0
votes
0 answers

How to resolve the issue "QnA Maker runtime error Authorization Failed. Authorization Failed" in Azure QnA Maker?

I am using Azure QA Maker and I can successfully my QA pairs. However, when I loaded the QA pairs and tried to test the service by clicking "Test" on the upper right corner, I got the following error. I have tried: Delete and create new service.…
Howell Yu
  • 73
  • 8
0
votes
1 answer

Bullet's are getting changed when I export QnA maker data through powershell

I am trying to export data from QnA maker using QnA maker cli and powershell script to save it to local device. When I am trying to export the data bullet's in QnA pair are converted in json file I am using this in my script ConvertTo-Json -depth…
0
votes
1 answer

Howto create knowledge base from Wiki, URL behind a login

Need to create a knowledge base from a Wiki,however, the wiki is behind a login. What is the best way to feed a login protected URL into QnAmaker? I've tried logging in in another tab on the same browser, but QnA maker simply shows the login…
0
votes
1 answer

how to call my api qnamaker using Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker nuget version 1.0.0

I am getting started with Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker nuget, and I am trying to use QnAMakerClient() class to initialise a new instance of the QNAMakerClient class. But this class takes abstract parameters : public…
ELISE
  • 3
  • 4
0
votes
1 answer

Can't use QnAMakerClient to download Qna database content

I'm trying to use nuget Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker to use QnAMakerClient and Knowledgebase.DownloadWithHttpMessagesAsync, but when I try to instantiate Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker() the parameters…
ELISE
  • 3
  • 4
0
votes
1 answer

Can qnamaker.ai load a url not open for the public?

I'm setting up a QnA bot in Teams for internal use. However our FAQ page is whitelisted by IP and only accessible from the company office. I’ve tried whitelisting all known Azure service IP-addresses to no avail. Is it possible to grant qnamaker.ai…
Kage
  • 3
  • 1
0
votes
0 answers

Markdown links to MS-Word hyperlinks using C# interop

I am trying to take markdown links in a excel file and converting them to a word hyperlink in a word file. I didn't find a conversion tool but if anyone has something in mind, please let me know. I cannot convert the whole file, have blocks of…
0
votes
1 answer

Removing XML format text from QnA Maker after publishing the knowledgebase every time

Removing XML format text from QnA Maker after publishing the knowledgebase every time Create knowledgebase in QnA Maker Added a question which has XML format text answer. For Example: Q: What is Status? A: You have…
0
votes
1 answer

How do I parse a question that contains escape sequences from Microsoft QnA Maker in my bot project?

I'm testing and training a new QnA bot for my web application and I want to print out the right answer format when it encounters escape sequences. How can I implement such approach in order to have the bot recognize the escape sequences that I have…
Vlad Ezikon
  • 93
  • 2
  • 11
0
votes
1 answer

Is there a way for LUIS/QnA maker to ignore user's answer when it came from a choice prompt?

LUIS/QNA keeps triggering intents that are related to the choices in a choice prompt. My question is there a way for LUIS/QNA to ignore user inputs that are from a choice prompt? or for choice prompt answer not appear as user inputs so LUIS/QNA will…
0
votes
1 answer

QnAmaker Knowledgebase Privacy and Security

Is there a way to identify the knowledgebase that we have created is not vulnerable and open for security threat? Can someone else break into the existing Knowledgebase and access our inhouse documents? We are keen to know about this so that we need…
Albert
  • 1
0
votes
1 answer

Change the answer Layout in QnA maker

May I ask about how to change the layout of QnA Maker when the result is multiple answer? For example change to Carousel Layout with Hero Card? Thank you.
Eng Soon Cheah
  • 257
  • 1
  • 10
  • 42
0
votes
1 answer

Bot Framework V4 (Node.js) : QnA maker triggering

I'm in the process of migrating a bot which is currently in V3, to V4 in Node.js. I want to make every user utterance go through QnA maker (even in the middle of dialog flows) which was done using bot.use() function in V3. Is there a way to solve…