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
1
vote
1 answer

Is it possible to trigger dialogs or responses based on QnAMaker result

I am trying to define separate flows/triggers different message when I do not get any answer from the QnA apart from displaying 'Fallback Answer'. Attached is a sample design from Bot Framework Composer. I am using Bot Framework Composer - v2.1.0…
1
vote
2 answers

How can I get top 5 answers from QnA maker using Bot Framewoek SDK python

Basically, I have this code from the official documentation. What I'm trying to achieve is to get the list of question-answer pairs that are the closest to the user's input. async def on_message_activity(self, turn_context: TurnContext): # The…
1
vote
1 answer

(QnAMaker) How to assign multiple values to one metadata tag?

I have some question data that belongs to multiple categories. So, I'd like to assign multiple values to one metadata tag below. How can I do this?
decoy
  • 151
  • 8
1
vote
1 answer

Is it Ok to have single index for multiple tenant?(Azure Search)

Is it ok to have multiple tenant QnA's to be stored in a single data source? for ex: in Azure Table Storage with all QnA's stored in a single table but each tenant data differentiated by an unique key and then filter results based on their unique…
1
vote
1 answer

How should I enable the Precise Answer feature in the Azure QnAMaker model?

Currently, I am working on a chatbot project that answers based on a knowledge base that is uploaded as a PDF to the QnAMaker service. However, I have learnt that Azure uses a Deep Learning feature to extract the short answers from the long answer…
1
vote
0 answers

BF CLI parsing error on exported QnA maker knowledge base

We need a fix related the the following parsing error when QnA maker KB are exported via BL CLI We use the BF CLI (https://www.npmjs.com/package/@microsoft/botframework-cli) with the @next version to export QnA maker KB in *.qna format and then…
timoleo23
  • 11
  • 2
1
vote
1 answer

I can't write text in form of hyperlink in azure bot default answer, the bot is working in MS teams but it displays only text

The bot is created with QnA maker and integrated with Microsoft teams. The knowledge base has many questions and answer pairs but the default answer only accepts text when editing it in azure portal here:…
1
vote
0 answers

How to close the Qnamker dialog while using multiturn qna kb and LUIS with the help of orchestrator

I am using orchestrator by Microsoft bot framework SDK. I am using LUIS and Multiturn prompt QnA maker in parallel. Iam using the samples provided…
1
vote
0 answers

Publish bot in Microsoft Botframework with Twilio for WhatsApp

After developing a Chatbot with Microsoft Bot Framework and publishing it in the Azure portal I want to use it in WhatsApp. For that I am using a WhatsApp Sandbox in Twilio, but now I don't know how I can make the adapter in Azure to use my bot in…
1
vote
0 answers

Parse reponse qnamaker

I try to create a card or show some pictures from qnamaker response but it's unclear. The response I get is as below: A new way to interact [FIND OUT MORE](https://xxxx/concept/) ![Img…
dalton5
  • 915
  • 2
  • 14
  • 28
1
vote
3 answers

How to address high latency on Managed QnA Maker/Azure Cognitive Search Service after a period of no load

How do I prevent the Azure cognitive search service from becoming cold after a period of no load? I use QnaMaker in chatbots (Managed QnA Maker Service version). QnaMaker seems to idle after not being used for a while. The first query takes 7…
Hessel
  • 613
  • 1
  • 6
  • 15
1
vote
1 answer

How to automatically test a QnA Maker Bot (Bot Framework V4, C#)?

I am building bots based on the QnA Maker and the Microsoft Bot Framework V4 on C#. I have several Knowledge Bases and i want to verify that the bot responds with the right Answers to my questions. Is there a way to automatically test this type of…
deetwo-id
  • 245
  • 1
  • 10
1
vote
1 answer

How to use strictFilters parameter for QnA in nodejs with botbuilder-ai sdk

I am able to use strictFilter parameter with normal rest API call to QnA Maker { "question": "Campaign and AEM integration", "top": 3, "strictFilters": [{ "name": "product", "value": "adobe" }] } But when I am trying to do the same thing…
1
vote
1 answer

How to get User credentials in Azure chatbots

I have created a baisc QnA Bot using Azure services. But now after deploying the bot. I want it to be able to receive user mail id. So that I can give specific results on basis of the user currently using the bot. Is it possible? And what is the…
1
vote
1 answer

Application Insights not logging Questions and Answers from QNA Maker bot

When running the query, I was originally getting the Questions, Answers and Score of the questions asked to my bot. However, about 10 days ago it stopped logging. I am still seeing activity in the application insights of the QNA Maker, but the…