Questions tagged [azure-language-understanding]

Questions about Language Understanding Intelligence Service (LUIS), an API within Microsoft Cognitive Services that teaches your apps to understand commands from your users.

Language Understanding Intelligence Service (LUIS) is part of Microsoft Cognitive Service that understands language contextually, so your app can communicate with people in the way they speak. Create a model customized to your domain and use natural language processing to train in a matter of minutes.

LUIS models can be used on any device because your models are deployed to a personal HTTP endpoint with one click. To learn more about LUIS, visit the Microsoft Cognitive Services website and create your free account at http://luis.ai.

1375 questions
2
votes
2 answers

How to remove luis entity marker from utterance

I am using LUIS to determine which state a customer lives in. I have set up a list entity called "state" that has the 50 states with their two-letter abbreviations as synonyms as described in the documentation. LUIS is returning certain two letter…
hengist
  • 105
  • 1
  • 9
2
votes
1 answer

Chat Logs using Middleware

I have included middleware to log the chats in firebase db. Now I am able to call the middleware once after the user sends some text to the bot then after bot sends the data to the user. In the previous version bot framework v3 the activity payload…
2
votes
2 answers

How detect/listen for action.submit from adaptive card

I'm using the botframework (enterprise bot template) and LUIS.ai: My problem is that , when I fill in a custom adaptive card (it has three text input fields) and click submit I get the following message: "I’m sorry, I’m not able to help with that."…
Colby
  • 53
  • 1
  • 7
2
votes
1 answer

How can I use LUIS in app.js to recognize dialogs that I have in different folders

Microsoft BotbuilderSDK: 3.15.0 Language: NodeJs I have my dialogs in different folders. However, I am trying to initialize them in the app.js folder so that I can use LUIS when the intent matches the dialog, but it is not working. NOTE - Each…
2
votes
1 answer

Specifics on sentiment analysis

I am working on a bot that uses sentiment analysis to analyze questions from people in the health care insurance realm. One of the main things we do is connect people with care through a find care tool. The basic questions people ask are in the…
hengist
  • 105
  • 1
  • 9
2
votes
0 answers

Dispatch refresh - how to automate

Any thoughts on how to automate the dispatch refresh command? It appears you can only dispatch refresh from the CLI. I would go down one of these routes: Executing a .exe from Azure function on a e.g. weekly basis Set up dispatch refresh cmd in…
Pieter Heemeryck
  • 664
  • 5
  • 13
2
votes
1 answer

I can't login to LUIS Azure

I can't login to Luis via https://eu.luis.ai/home. Previously, when I logged in with a different personal account, I was able to login to Luis and to build my model(s). However, my organization just made a corporate account and I am not able to…
Ted
  • 31
  • 4
2
votes
1 answer

In Microsoft Luis, how do I break up one word into multiple entities?

For example, I have user utterance of courses that look like this: CS101 PHY101 CHE101 How do I get 2 entities from this like: Course Name, Course Number? So in my example: Utterance: CS101 Entities: Course Name: CS Course Number: 101
Bill Software Engineer
  • 7,362
  • 23
  • 91
  • 174
2
votes
0 answers

Luis build-in datetime entity not working in german culture

I've created a LUIS app in german (de-de) culture. I wanted to use the the build-in entity datetime (datetimeV2 is not yet available in german culture) to extract the date information from the utterances. Up to now, I had no luck in getting any date…
2
votes
1 answer

Azure keys for Luis not available

I am trying to publish a staging version of my LUIS app. I have set up the Cognitive Services App in Azure Australia East and can see the key in the Azure portal. However in the AU Luis portal https://au.luis.ai , when I go to the publish tab and…
Kirsten
  • 15,730
  • 41
  • 179
  • 318
2
votes
1 answer

LUIS Builtin Entity Recognition on Blocks of Text

Is there any API in the cognitive services that will allow the application of the entity recognition function used in LUIS to blocks of text? (without the LUIS intent/command processing etc..) I have tried the cognitive services "named entity…
Element
  • 3,981
  • 7
  • 42
  • 51
2
votes
1 answer

Getting the query result of LUIS

I have created a LUIS account and did everything that was needed. I have written the following code and got the result from LUIS. I need to know how to save the result of my query to a variable, using which I would like to search the database or…
2
votes
1 answer

LUIS Batch Testing for Entity is Not Working

Referring to the batch testing document from Microsoft, I have imported the LUIS app provided from this document and import this this JSON batch file to LUIS batch testing panel and try to run the test. The testing result of 'Intents' is as…
Eric Chan
  • 21
  • 1
  • 4
2
votes
1 answer

Integrating bot framework Luis with QnA as an Intent, then re-ask user after getting to the QnA

I am trying to make a FAQ intent that act as a QnA dialog, which should re-ask the user after getting into the intent. Below is my code so in integrating the luis and QnA: [LuisIntent("FAQ")] public async Task FAQ(IDialogContext context,…
2
votes
1 answer

How to read/access sentiment analysis results from luis

I am using azure bot framework with LUIS. I am able to get the intent, and entity in the backend(node js). Similarly are we able to get sentiment analysis as well? Here below the LUIS result. intents 0 intent "Management Team" score …