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

Getting Http 500 error when calling QnA api with strictfilter

I am getting Http 500 error whenever i am calling the QnAMaker Api with Metadata(strictFilter) body. Am I not following any instruction before calling Apis? QnA maker api is working perfectly if I am not adding strictFilter in the Api request…
0
votes
1 answer

QnA Maker Confidence Score varies when imported the existing Knowledge Base

I have exported a QnA Maker Knowledge Base and imported the same in another QnA Maker KB. The confidence score of the utterances increased in the newly added KB. This change in confidence score is impacting the responses. The questions that are…
vaatsalya
  • 1
  • 3
0
votes
2 answers

what is structure of BotConfiguration.bot in bot project using bot framwork SDK4.0 and how to add it the project?

I am referring to the QnA bot sample from the git hub link QnAbot, but when I follow the steps, I am not able to figure it out the BotConfiguration.bot. I want to see the sample of this .bot file. However, from in the sample code directory, I did…
Vivek Jain
  • 71
  • 1
  • 11
0
votes
7 answers

php strangely nested key/value array - how to transform/map to be more usable?

The Microsoft QnAMaker API is returning a JSON key/value array (Metadata) in the following format: $array = [[ "name" => "someName1", "value" => "someValue1", ], [ "name" => "someName2", "value" => "someValue2", ], ..etc.. ]; How…
Leo
  • 5,013
  • 1
  • 28
  • 65
0
votes
1 answer

Multiple QnA makers on one azure app service

I would like to create multiple knowledge bases using https://www.qnamaker.ai. On the UI when I create a new qnamaker service using my azure subscription it actually creates 3 things/services for 1 qnamaker which are as follows qnamaker as Cognitive…
0
votes
1 answer

QnA Maker with cards

I want to add cards in my QnA Maker. I my QnA maker if anyone asks about "what services we provide?" Bot should answer (for example: We provide following services /n/n 1: Bot Development /n/n 2: Web Development /n/n 3: Documentation). In this…
0
votes
4 answers

The type or namespace name 'Dialogs' does not exist in the namespace 'Microsoft.Bot.Builder'

I'm building a chat bot with Microsoft Azure on .NET Framework C#, installed all the references, but after update to Microsoft.Bot.Builder 4.0.7 this reference is unable to find it and showing this type of error: Error CS0234 The type or…
0
votes
1 answer

Strict filters creating nondescript error

Trying to utilize the QnaMaker filtering capabilities via the API as described here. When I make a request with the strict filters set, I receive the following response: { "error": { "code": "Unspecified", "message": "Something happened.…
Szymon Rozga
  • 17,971
  • 7
  • 53
  • 66
0
votes
1 answer

Best way to use qnamaker with V3 MS bot

I have a bot built using MS bot framework which is on version 3. I have created qnamaker service with basic KB for testing. I was wondering if there is best way to access KB in existing bot which is powered by luis. I do not want to make explicit…
0
votes
0 answers

QnA Maker customize response card when multiple answers is found

The response card received when QnAMaker get multiple possible answers is too large and not appropriate. Channel used: DirectLine I've look into the botchat.css (https://cdn.botframework.com/botframework-webchat/latest/botchat.css) but could not…
0
votes
2 answers

How to concatenate the deserialized QnAResponse string in place of a {filename}?

In this documentation, it shows the QnA Maker service perform Rest calls and deserializing Json responses - Step 3 *How to link Luis with Qna Specific section of the module string I think i am looking for: /* START - QnA Maker Response Class…
0
votes
1 answer

Can I create Azure QnA Maker with 5 knowledge bases and Basic pricing tier?

We have to create 5 knowledge bases in Azure QnA Maker for one of our applications. We need help in choosing the pricing tier. Can we choose the Basic pricing tier but it is having maximum indexes allowed as 5? The number of maximum knowledge…
Narsimlu K
  • 15
  • 3
0
votes
1 answer

How to get ALL Metadata Filters from Knowledge base

As the title, I want to get all of my Knowledge base's Metadata Filters. Is it possible?
Jeff_hu
  • 417
  • 4
  • 15
0
votes
1 answer

LUIS is not recognizing the intent when I try the same input second time

I am using LUIS for azure search and QnA recognizer for the first time together in the same code. I am using intent.match to match the recognizers. My problem is: for the first time, If I ask a question which matches to the QnA intent, it returns…
0
votes
0 answers

Or condition not working in nodejs bot

I am trying to add an or condition in my below piece of var bot = new builder.UniversalBot(connector, [ function (session) { if (!session.privateConversationData.greetingsDone) { session.send("Welcome to Ask Bot."); …