luis

Alternative for having LUIS Intent

瘦欲@ 提交于 2019-12-25 02:58:00
问题 The requirement is to capture the keywords from the user input given in chat window and make a web api call to get a file link. I have four different categories into which the user input query can be classified: --Operating Group --Technology --Geography --Themes I have configured a LUIS intent and listed these four categories as entitites. However, the issue now is that the entity list cannot be predefined since there can be any number of search keywords which can be passed to web api. I am

Get id of all intent and utterances after import

喜夏-厌秋 提交于 2019-12-24 23:42:33
问题 So have created two applications on Luis and I wanted to import second application into first application. So I did the following: Export second Application Import into first application Train first application Publish first application Now I want to get id's of trained intent and utterances but I am not able to find any Luis API to do so. Without any id's, I am not to do delete and update intent or utterances programatically. How can I get complete LUIS application details(intent,entity

Approaches to improve Microsoft ChatBot with each user conversation by learning from it?

浪子不回头ぞ 提交于 2019-12-24 20:46:23
问题 I am building a Microsoft ChatBot using LUIS for natural language processing. I would like LUIS to improve by learning new utterences for the intents identified. For example, if my 'Greeting' intent has utterences 'Hi', 'Hello', 'Hello, how are you?', the next time it encounters 'How are you?', it may predict the intent as 'Greeting' with a low accuracy. If that utterance is learnt as part of the intent, then in future, this utterence will be predicted with better accuracy and also help us in

ResumeAfter method is already called without calling context.done in the next dialog

落花浮王杯 提交于 2019-12-24 19:30:52
问题 I have implemented a structure where a QnA dialog is first started. If the QnA Dialog cannot solve the problem then it starts a Luis Dialog which has some main functionalities defined. Based on those main functionalities I start specific dialogs that can solve the problem. My problem is that when I try to start LuisDialog from QnAMaker, it starts another LuisDialog to for conversation, That dialog doesn't stop on with wait method and automatically calls ResumeAfter method immediately after

Bot Framework Emulator: Unknown Host

≯℡__Kan透↙ 提交于 2019-12-24 15:29:58
问题 I'm developing a simple Dispatch Bot, I only have a basic structure now to chose between QnA or LUIS models but when I test it in the Bot Framework Emulator, the AdapterWithErrorHandler catches and error and i get no response from LUIS neither QnA. everytime i send a message. I checked the appsettings.json and everything seems to be fine. I want to point out when I created the LUIS App a default key was given to me, and later on i linked it with the Cognitive Resource i have in Azure and a

Send an image attachment in Microsoft Azure Chatbot

家住魔仙堡 提交于 2019-12-24 09:23:55
问题 I have a created a Chat bot using Microsoft Azure bot service and LUIS. With my bot which was trained on LUIS, I'm able to receive text messages. I have connected the bot to Skype channel. I don't know how to return a image attachment as an answer to a message. I heard some of the Microsoft bot framework can send image as an attachment and I'm not sure about Azure bot service. Sample code: var recognizer = new builder.LuisRecognizer(LuisModelUrl); var intents = new builder.IntentDialog({

How to eliminate negative utterances while using LUIS/WIT Intent

删除回忆录丶 提交于 2019-12-24 06:34:05
问题 I have an intent "BookTicket" . I have few utterances for the same: "book a ticket", "book my ticket" .....it works fine. It also works with "do not book a ticket", "book my show" . My question is: How can I eliminate these negative searches to search for the intent mentioned above and return an error message instead of invoking the intent. Right now, I am trying this with LUIS framework. thanks 回答1: In case of LUIS, use the None intent to mark the negative examples you want to eliminate,

Calling back LUIS from a dialog [duplicate]

六月ゝ 毕业季﹏ 提交于 2019-12-24 04:47:17
问题 This question already has answers here : How to forward result of Prompt.Choice() to current dialog? (2 answers) Closed 2 years ago . I am developing a chatbot using Microsoft and C#. My bot basically gets the intent from LUIS and based on that either replies with a static String or forwards to a new Dialog of multiple questions. Inside the new dialog the messages sent by the user are directly handled from within the code without passing through LUIS. My Code: MainLUISDialog.cs: [LuisIntent(

Question about changing to a new LUIS key with Botframework v4

橙三吉。 提交于 2019-12-24 04:22:05
问题 I downloaded the C# template in Azure. It automatically created and setup a LUIS app but now LUIS hits 1000 calls and expires now. I created a new key using this guide. I managed to assign a resource but now what? I'm still getting an error that the quota limit was reached. I tried changing the name and authoring key in the bot file but always getting error that I can't read bot file. I also notice that the authoring key in LUIS app is much shorter that in the bot config. Can someone help me?

BotBuilder - NLP with dispatch error No such host is known

删除回忆录丶 提交于 2019-12-24 04:12:38
问题 I am new in using Bot Builder Framework. I was following this tutorial from Microsoft https://docs.microsoft.com/en-us/azure/cognitive-services/qnamaker/tutorials/integrate-qnamaker-luis. I am using the code from GitHub(NLP-with-dispatch) and set up all the necessary requirements DISPATCH, Luis, Qnamaker, etc. But after running the code using the bot emulator I got this error message. "No such host is known". BTW, I already updated the appsettings.json and bot config. Anyone experience this?