qnamaker

How can i use QnAMaker to provide random answers to same query

好久不见. 提交于 2019-12-23 03:11:15
问题 I was thinking as bots have some generic questions like how are you ? may be i have around 10 answers which i would like Q&A maker to choose randomly not every time same answer. or also questions like tell me a story 回答1: some generic questions like how are you ? may be i have around 10 answers which i would like Q&A maker to choose randomly not every time same answer. To achieve this requirement, you can try this approach: 1) Add a QnA pair and use a special character (such as | ) to split

Training QnA Maker with API v4.0

心已入冬 提交于 2019-12-22 12:54:16
问题 I used to use the preview version of QnA Maker and with it the v3.0 API had this train endpoint which could be used to reinforce a correct answer: https://westus.dev.cognitive.microsoft.com/docs/services/597029932bcd590e74b648fb/operations/597045078eb8131608e2f7a6 Now I'm migrating to QnA Maker GA and it uses the v4.0 API. I cannot find the train endpoint anywhere in the documentation of the v4.0 APi. Does the train endpoint still exist in the v4.0 API? 回答1: Official reply has been made on

Training QnA Maker with API v4.0

蓝咒 提交于 2019-12-22 12:54:13
问题 I used to use the preview version of QnA Maker and with it the v3.0 API had this train endpoint which could be used to reinforce a correct answer: https://westus.dev.cognitive.microsoft.com/docs/services/597029932bcd590e74b648fb/operations/597045078eb8131608e2f7a6 Now I'm migrating to QnA Maker GA and it uses the v4.0 API. I cannot find the train endpoint anywhere in the documentation of the v4.0 APi. Does the train endpoint still exist in the v4.0 API? 回答1: Official reply has been made on

Inconsistent response between Azure QnAMaker Web App Bot and Cognitive Service

拈花ヽ惹草 提交于 2019-12-14 03:06:52
问题 I'm having differences with the responses to my questions (in Spanish language) performed against an Azure Web App Bot service that queries to an instance of QnAMaker and the queries directly performed against the specific QnAMaker service for that instance. For this specific case I've performed the same questions on the Bot's Web Chat and on the QnAMaker Test Chat. In several responses retrieved by the Bot's Web Chat I get the default message (like if the question does not match an answer)

How to initialize Bot framework dialog in a Luis intent block

好久不见. 提交于 2019-12-13 03:50:40
问题 Bot Framework Sample - NLP Dispatch Hi, I am using NLP dispatch, where I am having multiple Luis and QnA models running simultaneously. I have mapped top-scoring intents for Luis and have created a dialog class also which I want to implement in those intents mapped blocks. How can I initialize my dialog in the intent if block? I have tried using Dotnet core 2.1 version and dispatch's latest version code for dialog - private async Task<DialogTurnResult> LeaveDateRangeStepAsync

Is it possible to use html tags on Microsoft QnA Maker replies?

試著忘記壹切 提交于 2019-12-13 02:54:52
问题 It is possible to use html tags on Microsoft QnAMaker replies? I already try to create new line with \n\n but it is not working on webchat or skype. Moreover, how can I create bullets or numbering on QnA Maker? 回答1: Currently Microsoft QnAMaker service send the HTML tags added in answer as escaped HTML. A code like the following <b> bold text </b> will be sent as escaped HTML like given below <b> bold text </b> I faced the same issue when we trained QNAMaker answers with HTML formatting and

Retrieve multiple questions matching the search keyword in QnA Maker

谁都会走 提交于 2019-12-13 02:47:22
问题 I have a bot which uses LUIS and QnA Maker. Now, I am able to send queries and get back response in my bot based on the search keyword. But in case my search keyword is used in multiple questions, QnA Maker just retrieves the first matching QnA pair. Consider below QnA pair: What is flexible working? Flexibility to work from home How to avail flexible working? Get in touch with manager If the user types the exact question and hits enter, the response would be the answer which matches the

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

早过忘川 提交于 2019-12-12 11:31:40
问题 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 different, this way I can select where to output the answer). Any help is appreciated. Thank you. (I am using this JSON library: https://github.com/VBA-tools/VBA-JSON) I have already applied the suggested solutions described in the issue section

QnA Maker missing train endpoint

社会主义新天地 提交于 2019-12-11 17:52:29
问题 API V4 documentation is missing Train endpoint or is the feature missing in the GA-version? https://westus.dev.cognitive.microsoft.com/docs/services/5a93fcf85b4ccd136866eb37/operations/5ac266295b4ccd1554da75ff 回答1: Official reply has been made on Github issue by Prashant Choudhari from Microsoft: We do not have the train API in V4. We are re-thinking this feature and will re-enable an advanced version in a future release. See here: https://github.com/Microsoft/BotBuilder-CognitiveServices

Getting Facebook Messenger to show QnA Follow-Up Prompts in BotFramework v4 using Node.js

橙三吉。 提交于 2019-12-11 16:38:44
问题 I'm trying to figure out how to get Facebook Messenger to show follow-up prompts from QnA Maker using BotFramework v4 and Node.js. I've managed to get the follow-up prompts showing in WebChat: I managed this after following the great advice from Matt Stannett in this thread: How to implement cards in a QnA question which has follow up prompts and uses them in the cards However, when it comes to getting them to appear in Facebook Messenger, I'm really struggling. I was hoping it would be as