luis

luis patterns does not identify all entity utterances

非 Y 不嫁゛ 提交于 2019-12-11 16:57:56
问题 We have a bot designed in C# SDK V3. The functionality is such that upon user input, the query is passed to qnamaker and the answers are given to the user. If there is no answer found in the qnamaker, the search is directed to sharepoint. There was a new requirement wherein upon asking for any search keyword, the bot has to give the user a processed file - a web api was implemented for this purpose. The issue started while trying to integrate this web api in the bot. A new intent was added to

LUIS web interface crashed after import JSON file for Batch Testing or Import App

浪尽此生 提交于 2019-12-11 15:55:59
问题 When using LUIS web interface I encountered bugs below: 1. Page freeze after adding intents or entities: Start working after restart a new browser tab or few hours of waiting . 2. Can't publish app after Training: All buttons on 'Publish' page turn gray and can't be pressed.Start working after restart a new browser tab or few hours of waiting. enter image description here 3. Can't upload file for Batch Testing: Uploading First test file of each app works fine, but uploading second file will

How to resolve Luis - 403 Out of call volume quota

喜欢而已 提交于 2019-12-11 15:17:42
问题 I am testing my bot for my school project which was due in next two days and suddenly, the bot stopped functioning correctly and showing the default message all the time. After some research in Google and Stackoverflow, found it is due to Quota limit. I see in the Luis keys, the current key is "Starter_key" and also below error message in the end-point. { "statusCode": 403, "message": "Out of call volume quota. Quota will be replenished in 11.00:25:53." } I read similar problems here, but

How can I properly get my Luis chatbot working?

自古美人都是妖i 提交于 2019-12-11 14:33:21
问题 I have to connect Luis to node.js and create my first chatbot that, as a first stage should handle simple requests. I have checked the following links : https://docs.microsoft.com/en-us/bot-framework/nodejs/bot-builder-nodejs-recognize-intent-luis https://github.com/Microsoft/BotBuilder-Samples/tree/master/Node/intelligence-LUIS but getting started has proven to be difficult, what I've done as a first stage is: var restify = require('restify'); var builder = require('botbuilder'); var http =

LUIS App Fails to Train - App training failed: l_general: Retrain

淺唱寂寞╮ 提交于 2019-12-11 07:47:28
问题 I am no longer able to build and train my dispatcher LUIS app. If I try to run the dispatch CLI to refresh my dispatcher model like dispatch refresh --dispatch mydispatchfile.dispatch , it hangs on training the dispatch model and eventually returns the error that I can't publish without training it. If I try to go into the luis.ai portal and train it there, I get the error "App training failed: l_general: Retrain" I tried deleting the l_general intent to see if that was somehow the issue and

Call LUIS outside of MessageController and after Authentication

喜你入骨 提交于 2019-12-11 04:13:35
问题 Working on a Bot that authenticates using ADAL (AuthBot) and then post-Auth takes the user input and sends to LUIS to gather intents/entities. I use what's returned to build a URI that I send to Sharepoint Online REST API. If user input is valid, Sharepoint returns JSON that I parse and return to user. The trouble is getting the user input to my LUIS class after authentication. I call AuthBot ActionDialog from my MessageController. if (message.Type == "Message") { return await Conversation

LUIS closed list entities

偶尔善良 提交于 2019-12-11 04:12:28
问题 I cannot find any documentation or example related to closed list entities. Can someone give a C# example of using closed list entities? Also can you provide a brief explanation when they are useful, please? 回答1: Here is a link to the new documentation for List Entities. This next link is towards a quick overview of all entity types. This is a link to the API reference that has a good example of a potential use case. There are a few things to know about List Entities; they're not machine

LUIS entity not recognised

亡梦爱人 提交于 2019-12-11 03:32:39
问题 I trained my luis model to recognize an intent called " getDefinition " with example utterances such as: "What does BLANK mean" or "Can you explain BLANK to me?" . It recognizes the intent correctly. I also added an entity called "topic" and trained it to recognize what topic the user is asking about. The problem is that luis only recognizes the exact topic the user is asking about if I used that specific term in one of the utterances before. Does this mean I have to train it with all the

QnA maker versioning

倖福魔咒の 提交于 2019-12-10 23:23:18
问题 I am hoping to use QnA maker to facilitate the simple question and answer feature of my chatbot, and use LUIS for more complex intents like extracting entities from sentences for questions that require more context. With LUIS, it's possible to publish different versions of your app to either production or staging. It's also possible to clone and import versions. I would like to also do this with QnA Maker. Is it possible or a feature that will be added in the future? I know its possible to

How does navigation work with LUIS subdialogs?

家住魔仙堡 提交于 2019-12-10 19:22:47
问题 I have a question... Unfortunately all the samples on the web are too shallow and don't really cover this well: I have a RootDialog that extends the LuisDialog. This RootDialog is responsible for figuring out what the user wants to do. It could be multiple things, but one of them would be initiating a new order. For this, the RootDialog would forward the call to the NewOrderDialog, and the responsibility of the NewOrderDialog would be to figure out some basic details (what does the user want