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

How to connect MS Word to microsoft's QnA Maker (VBA)

I am trying to connect MS Word to Microsoft's QnAMaker using VBA to help answer a wide variety of similar questions I receive. My idea is select the question and then have vba query the answer and copy it to the clipboard (templates for replies are…
Freelancer
  • 153
  • 1
  • 15
4
votes
2 answers

Use Sharepoint as Source for QnA Maker

If I understood well the link you can provide as input for a data source for the QnA maker has to be a ‘public’ one. This means that you can’t have a link to for example a folder on Sharepoint (or even a file on Sharepoint)? So what do I do in that…
Anne
  • 63
  • 6
4
votes
3 answers

How to integrate LUIS and QnA Maker services in single Node.js bot?

I'm developing a chatbot using Microsoft Bot Framework with Node.js SDK. I've integrated LUIS and QnA maker but I want to create this scenario if it's possible. Taking in example the following link and in particular this section: There are a few…
3
votes
1 answer

Connect an Existing QnA Knowledge base in Bot Composer

Sorry if this is a stupid question. I just installed Bot Composer v2 and want to connect the bot to a QnAMaker knowledgebase. This is what I have done: Provision the necessary resources on Azure. In the QnAMaker website, (www.qnamaker.ai), create…
elty123
  • 277
  • 3
  • 13
3
votes
2 answers

is there any way that a azure chatbot can query the databse and return answer from the database? may be using qna maker or luis?

I am trying to build a chat bot which queries a database and returns answer from the database depending on the question asked. is there any way to connect the azure chat bot to the database say azure SQL database?
3
votes
2 answers

How can I Integrate QnA maker to gather user info?

I have currently integrated LUIS with my chatbot. The scenario is:- User types in something in bot. The bot logic calls LUIS to determine the Intent and based on INTENT respective dialog is called. In the dialog, I am gathering user information…
3
votes
1 answer

How to construct a QnA Maker Instance Class in C# - CoreBot?

I got a System.AggregateException after running my Core Bot C# sample. In the Startup.cs I added the class as followes: services.AddSingleton(); The Recognizer Class looks like: using System.Net.Http; using…
3
votes
2 answers

Unable to create KB in QnA Maker when deployed via ARM (No Endpoint keys found)

I am having an issue where I cannot create KBs in QnA Maker for services which I have deployed via ARM template/DevOps. There are a number of issues here and on Github, but the main suggestions (create all the resources in the same region, don't put…
billoverton
  • 2,705
  • 2
  • 9
  • 32
3
votes
1 answer

How to call QnA Maker on a waterfall dialog using C#?

I am trying to call QnA Maker on a waterfall dialog step. How do I call it from this watterfall step, do I need to set up QnA On the waterfall step, do I need to call QnA from a LUIS intent, what can I do? I need it to get the first result from the…
3
votes
2 answers

Unable to create knowledgebase for azure cognitive service (Error: "No Endpoint keys found.")

I am creating a new knowledge base connecting it to an already existing Azure Cognitive Service. But I am getting error: "No Endpoint keys found." when i click "Create KB". See capture of the error: My QnAMaker cognitive service has the endpoint
3
votes
1 answer

Display Text for QnAMaker follow-on prompts

I'm attempting to use follow-on prompts within QnAMaker but am confused about the purpose of the field labelled "Display text" in the "Follow-up prompt" creation dialogue.…
3
votes
2 answers

Prompts not showing in in microsoft Teams integrated bot

I created bot using QnaMaker.ai service and Microsoft azure services.It's working fine with webchat channel.Now i integrated it with Microsoft Team channel and that's where i got into a problem. The prompts that were working in webchat channel are…
3
votes
1 answer

QNA Maker not returning exact matches

QNA Maker is not returning the Exact matches from the knowledge bases. So we've been using the botbuilder-ai library to call the QNA maker. However QNA Maker is not returning the exact match which is there in the knowledgebase. However if I check…
3
votes
2 answers

Can I add multiple answers for a single question in Azure QnA Maker?

I'd like to have users input a single prompt, like "read me a poem," and have QnA give a different response every time. Ideally, QnA would rotate through a list of responses I've created. Is there any way to do this?
Tyler S
  • 65
  • 7
3
votes
2 answers

Transferring Intelligence from LUIS to QnA

LUIS is normally used as a dispatcher with multiple QnAs or used parallel with QnA or as an (If else) to redirect to a QnA. As also mentioned in link below: Look use-cases mention in the answer I want to transfer knowledge from LUIS to…
1
2
3
39 40