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
3
votes
1 answer

Operation returned an invalid status code 'Forbidden`. Botframework v4

So i created a bot in azure and downloaded it. The free 1000 calls from LUIS reached its limit. I created a subscription in azure portal (I did do the docker container something). Followed this guide until step 6. When i click the endpoint url and…
user10860402
  • 912
  • 1
  • 10
  • 34
3
votes
1 answer

LUIS built-in geography type sometimes recognizes a city, but other times doesn't

I'm a bit confused. I'm using LUIS's built-in geographyV2 type. My utterances are things like "are there any part time cashier positions near houston?" (recognized) or "do you have any part time cashier jobs within 10 miles of houston?" (not…
mlevin
  • 173
  • 1
  • 4
3
votes
0 answers

Microsoft chat bot showing 403 Quota Exceeded Error

When running application i get welcome message properly, i have called my luis class to get the matching intent. In directline issues list getting this message- There was an error sending this message to your bot: HTTP status code…
3
votes
1 answer

LUIS resource key disabled in Language Understanding Portal

I've a payed azure subscription and defined a LUIS resource in West Europe region. If I log in to Language Understanding portal and try to assign the resource to my LUIS app, once I've selected tenant and subscription my resource key appears grayed…
3
votes
2 answers

Transferring Intelligence from LUIS to QnA

LUIS is normally used as a dispatcher with multiple QnAs or used parallel with QnA or as an (If else) to redirect to a QnA. As also mentioned in link below: Look use-cases mention in the answer I want to transfer knowledge from LUIS to…
3
votes
1 answer

Bot Framework Context Wait not waiting for next message

I'm trying to build a Dialog using the Microsoft Bot Framework which helps users consult purchase order status (currently, just a mock). I am using a LuisDialog which, when it detects the "ConsultPO" intent, it's supposed to ask for the user's…
YuriW
  • 869
  • 1
  • 11
  • 22
3
votes
3 answers

Parsing Timex Expressions in .NET Core

Using LUIS engine, I receive XXXX-10-28 as a date in the Entity Value. I've tried using Chronic to parse but Chronic does not work with timex library/formats. I'm expecting following strings as inputs XXXX-10-28 should equate to 2018-10-28…
GeekzSG
  • 943
  • 1
  • 11
  • 28
3
votes
1 answer

Luis Api 'FewLabels' issue

I am developing bot using LUIS framework by Microsoft. I am able to create application, Intent and utterances but when I try to train and publish my bot I am getting following error. { modelId: 'some-model-id', details: { statusId: 1, …
dd619
  • 5,910
  • 8
  • 35
  • 60
3
votes
1 answer

Luis choosing between two intent

If the luis highest intent score for a conversation is 0.15, and the second is 0.14, would it be possible for the bot to ask the user if they meant the first intent or the second intent? If yes how to do so? I've been searching in the documentation…
3
votes
1 answer

importing app to LUIS gets BadArgument: Labels cannot have two overlapping children of the same parent

I just wanted to know what's the reason for this error: BadArgument: Labels cannot have two overlapping children of the same parent. while trying to import an app in LUIS using .json file although it's following the required format?
3
votes
1 answer

LUIS - Can we use phrases list for new values in the entity type List

I'm creating LUIS chat bot app for extracting information regarding a company. For example "what is the filed_name1 for company Google". So I'm currently extracting "filed_name1" using "list entity" as the number of fields for a company are …
3
votes
1 answer

Microsoft LUIS doesn't recognize an Entity

I've created model for MS LUIS. It recognizes intents sharply, but no any entity recognized or recognized partly. What can be wrong? My steps are: import new version in LUIS app -> Train -> Publish -> Test. When I type utterance from model example…
Serhiy
  • 1,893
  • 9
  • 30
  • 48
3
votes
2 answers

The text length cannot exceed the limit 50

I'm trying to import a Watson conversation app to a LUIS app, I have already converted the json to its equivalent in LUIS converting all Watson entities into Lists with synonyms, but when I try to import it to LUIS I get the following error: The…
IvanHid
  • 669
  • 7
  • 25
3
votes
1 answer

Luis entities with sub-entities?

I'm using Luis for the first time to try to create an intent on an ecommerce store which recognises product categories and their sub categories. The first requirement is that it can answer the following queries "Show me some jeans" "Show me some…
3
votes
1 answer

How to detect names as entities using LUIS in Microsoft Bot Framework

I am using luis.ai which is offered as a part of Microsoft Cognitive Services, in my project. I have a requirement of detecting names using LUIS. For the same, I have been using the phrase list feature. I have added some names in the list. But as we…