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

QnA Maker Bot formatting issue in Teams

We implemented a simple Azure bot using a QnA Maker knowledge base and we enabled the Teams channel. In the webChat, the markdown formatting is rendered just fine. However in Teams the markdown formatting is not always working as expected: If there…
2
votes
2 answers

Azure chat bot using QnAMaker - Should Greet users with respect to current user's timezone

I'm developing a Chat Bot in C# using Azure Bot Framework (v4),Currently I have a setup to display a welcome text which is used to greet the user. Current Greetings /welcome text:- Hi User, I'm Bot. How can I help you today. current Code: protected…
Jegan Baskaran
  • 337
  • 2
  • 16
2
votes
1 answer

How to Add filter on the REST API Query to view the answers from QnAmaker?

I'm using the following code in my chat bot (using v4 azure MS bot framework), to query the question and answers (Client side code - using plain JavaScript and J Query), function generateAnswer() { var question = { …
Jegan Baskaran
  • 337
  • 2
  • 16
2
votes
1 answer

how to Get the Questions and Answers from QnAMaker using REST API in a Javascript code

I'm working on a V4 MS Bot framework, I want to build a functionality such as, when user starts typing the question, the bot should populate and give the exact question phrases, so that the user can click on the suggestions given by the bot. Hence…
Jegan Baskaran
  • 337
  • 2
  • 16
2
votes
1 answer

QnA Api returns response code 200 OK irrespective of no match in the KB

I have been trying to code an automation test for the QnA of my application. Today while running the tests I noticed that all the tests were passing irrespective of wrong inputs I gave to couple of QnA's. When I checked, I found out that the…
2
votes
1 answer

QnA Maker API - Locking up after updates

I'm deleting various records from my QnA Maker KB via the Invoke-RestMethod PowerShell command and then adding some new QnA's with the same command. I'm finding that sometimes it works and sometimes I get a 400 Bad Request response with the…
2
votes
2 answers

The scale operation is not allowed for this subscription in this region. Try selecting different region or scale option

I am on Azure trial subscription and I try to create a QnA Maker service. I got the error above. I heard that the trial subscription is not allowed in West or West Central or Brazil regions. However, I tried to create it in East or Central region…
HNG
  • 21
  • 2
2
votes
2 answers

QnA Maker doesn't show buttons when deployed in MS Teams

I have deployed a qnamaker bot to Microsoft Teams but the dialog buttons don't show up anymore. In the qnamaker site, the buttons work In teams, the buttons don't appear ;( Does anyone have any ideas as to why this changes? Is there anything I can…
Ceal Clem
  • 225
  • 4
  • 10
2
votes
1 answer

I created a knowledge base in Spanish but the bot responds in English

I created a knowledge base in Spanish in QnA Maker. And I read in the documentation that this is the way to select the language. Indeed, in my Azure portal I find that it is "Spanish" and cannot be modified. However, both training from the QnA Maker…
Daniel
  • 21
  • 3
2
votes
2 answers

Any one aware about QNA maker CORS settings?

I want to set Specific domains in Azure Qna maker app cors settings, not *. Can any one let me know what is the required domains for that, as i do not find any documentation regarding this online.
sumit sharma
  • 127
  • 1
  • 11
2
votes
2 answers

QnA bot not displaying table format properly

My QnA maker Knowledge Base is currently trained by a pdf file (http://download.microsoft.com/download/2/9/B/29B20383-302C-4517-A006-B0186F04BE28/surface-pro-4-user-guide-EN.pdf ). While testing, QnA bot is not displaying the table formats from the…
2
votes
1 answer

BotBuilder - NLP with dispatch error No such host is known

I am new in using Bot Builder Framework. I was following this tutorial from Microsoft https://learn.microsoft.com/en-us/azure/cognitive-services/qnamaker/tutorials/integrate-qnamaker-luis. I am using the code from GitHub(NLP-with-dispatch) and set…
2
votes
2 answers

How to implement cards in a QnA question which has follow up prompts and uses them in the cards

I've set up a simple QnA bot which is linked to a QnA service. Within the QnA service I have set up some questions which have follow up prompts(Dependents) e.g. how do I get to a campus, via bus, train etc. see image in link, within the Qna maker…
Reuben
  • 25
  • 7
2
votes
1 answer

How to make BOT initiate conversation

I've created a QnABot that works with the new multiturn QnAmaker capability. The BOT initiates conversation fine when used with the emulator but not when used in an Iframe or in the Azure test environment. Can anyone help me understand what I need…
Chris
  • 39
  • 6
2
votes
1 answer

Qna and LUIS interrupts dialog before next step can process the input

I have QnaMaker and LUIS integrated into my bot. I want the user to be able to ask questions in between conversation. I already discovered that the problem is, that the bot always looks in luis and qna first, before processing the input of the…