qnamaker

Importing FAQ Documents from SharePoint to QnA Maker not working

帅比萌擦擦* 提交于 2021-01-29 19:29:30
问题 has anyone been able to successfully import FAQ documents from SharePoint into QnAMaker yet? I've gone through the documentation here (https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/how-to/add-sharepoint-datasources), confirmed all permissions, etc. but am still getting the following error when trying to import from a SharePoint URL: Bad Argument Unsupported/Invalid URLs: "https://mytenant.sharepoint.com/teams/sitename/library/FAQ.docx" I was able to upload the same exact

How can I save some custom qna maker data in azure app insights?

我的未来我决定 提交于 2021-01-29 11:40:56
问题 I have set up an Azure Bot with Luis and QnA Maker (in C#, Bot Framework v4). I want to query the App Insights and get information about the questions asked together with their answer. I followed the answers here: How to get the Qna Maker "Q" from Analytics Application Insights?, and I was able to get them, but I need an additional field for storing the user role (it would be perfect if I could store it in the customDimension field). I have followed the documentation from https://docs

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

£可爱£侵袭症+ 提交于 2021-01-29 06:35:10
问题 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 access to the private URL? If so what IP-address should be whitelisted? Thank you in advance. 回答1: QnA Maker Management Service uses the following IP Ranges: West US: 13.91.0.0/16 East US: 52.191.0.0/18 qnamaker.ai uses a few others, depending on

Prompts not showing in in microsoft Teams integrated bot

醉酒当歌 提交于 2021-01-27 20:10:14
问题 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 not working same in Teams channel. Like for question i showed 4 options to select.But in microsoft teams they are Bot in webchat channel and bot in Teams 回答1: Are you trying to show Suggested Actions? Suggested actions are not supported in Microsoft

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

倾然丶 夕夏残阳落幕 提交于 2021-01-27 11:14:55
问题 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 QnA using the step context from the previous question. Can anyone help? Code: private async Task<DialogTurnResult> QnaAsync(WaterfallStepContext stepContext, CancellationToken cancellationToken) { var response = await qnaMaker.GetAnswersAsync

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

青春壹個敷衍的年華 提交于 2021-01-27 11:12:41
问题 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 QnA using the step context from the previous question. Can anyone help? Code: private async Task<DialogTurnResult> QnaAsync(WaterfallStepContext stepContext, CancellationToken cancellationToken) { var response = await qnaMaker.GetAnswersAsync

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

余生长醉 提交于 2021-01-27 11:12:34
问题 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 QnA using the step context from the previous question. Can anyone help? Code: private async Task<DialogTurnResult> QnaAsync(WaterfallStepContext stepContext, CancellationToken cancellationToken) { var response = await qnaMaker.GetAnswersAsync

How do I switch between QnAMaker and Waterfall Dialogs in Python Azure BotFramework SDK?

随声附和 提交于 2020-12-15 06:33:01
问题 Dear Community, Please help with the Azure BotFramework Python SDK flow implementation I have described below. Step 1 : I need my bot to ask a question initially when members are added i.e async def on_members_added_activity( self, members_added: [ChannelAccount], turn_context: TurnContext ): for member in members_added: if member.id != turn_context.activity.recipient.id: await turn_context.send_activity( "Welcome to the Sample Bot! May I help you with something?" ) * This is the 'Welcome

How do I switch between QnAMaker and Waterfall Dialogs in Python Azure BotFramework SDK?

倾然丶 夕夏残阳落幕 提交于 2020-12-15 06:32:42
问题 Dear Community, Please help with the Azure BotFramework Python SDK flow implementation I have described below. Step 1 : I need my bot to ask a question initially when members are added i.e async def on_members_added_activity( self, members_added: [ChannelAccount], turn_context: TurnContext ): for member in members_added: if member.id != turn_context.activity.recipient.id: await turn_context.send_activity( "Welcome to the Sample Bot! May I help you with something?" ) * This is the 'Welcome