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
83
votes
7 answers

Comparison between luis.ai vs api.ai vs wit.ai?

Does anyone know the specific differences and features among the three, Or if one has more features/more flexible to use as a developer?
20
votes
3 answers

How to avoid "Sorry, my bot code is having an issue" in Microsoft Bot Framework

I have a bot that runs on Azure + Bot Framework + LUIS (via LuisDialog). If the user happens to send two messages in a quick succession (before the bot has a chance to answer), they see this error message on their Facebook Messenger or web embed:…
user6269864
11
votes
1 answer

How to integrate Luis into bot builder

I'm trying to use the FormBuilder in combination with my intents as I created them in Luis. I just can't find the documentation to do this. I would like to do the following things: A user would enter a phrase which is interpreted with Luis. If not…
Aldentev
  • 490
  • 2
  • 6
  • 18
10
votes
4 answers

How do you get to the original message text in a Microsoft Bot Framework LuisIntent method

I'm trying to access the complete original text from within a method marked as a LuisIntent within a LuisDialog. The documentation shows these methods as taking two arguments: IDialogContext context, LuisResult result Neither of which publicly…
Gene Reddick
  • 4,655
  • 4
  • 34
  • 35
8
votes
6 answers

Where can I get the LUIS subscription key?

I'm trying to create a simple chat bot on Microsoft Bot Framework and I want to add LUIS app ID and LUIS subscription key to my application. Where can I get the subscription key?
feda aeyad
  • 119
  • 1
  • 2
  • 10
8
votes
1 answer

How to get Activity Info from an IDialogContext

I'm using a LuisDialog and all I get the the callback returns is an IDialogContext and the LuisResult. Is there a way I can get info from the original Activity, like channel, from name, et al?
sebagomez
  • 9,501
  • 7
  • 51
  • 89
8
votes
4 answers

How to get user's location while chatting with bots?

I am developing a Bot Framework application that integrates with Slack using Microsoft Bot technology. In the bot project, I was trying to get the user location when the user sends a message. What I am trying to achieve is that, when a user types…
8
votes
2 answers

How to hook Luis into a Bot Framework FormDialog

I have a Dialog class which is a FormDialog (say, FormDialog< SandwichOrder>; one which builds an order for a sandwich, as per the bot framework documentation website). The SandwichOrder includes a "Price" property. I also have a Dialog class which…
Andy Thomas
  • 1,367
  • 2
  • 14
  • 30
7
votes
2 answers

Training None Intent in LUIS

I have a travel bot with following intents:- BookAFlight (trained with 20 utterances) GetTicketCopy (trained with 20 utterances) CancelTicket (trained with 20 utterances) None (default) (currently not trained) MS documentation suggests that I…
Anurag
  • 73
  • 3
7
votes
1 answer

Routing Microsoft LUIS Requests and Bot Framework - Preferably in an Enterprise Reference Application

My colleagues and I are working on building a very large application using Microsoft bot framework and Microsoft LUIS. Essentially we are trying to create a bot where people from across the organization can message the bot (through slack) and…
7
votes
2 answers

How to call LUIS Dialog inside LUIS Dialog?

My bot has LUIS dialog with a couple of intents. I call LUIS dialog from my MessageController. If the intent is detected, I start a child dialog. When the child dialog is done, I call context.Done("response from user"). After that ChlildDialogDone…
irynabond
  • 1,059
  • 2
  • 11
  • 18
6
votes
3 answers

Azure Bot Framework Bot with LUIS and WaterFall Dialogs executing in abnormal manner. Unexpected dialog flow

I am working on hacking up the GitHub 'CoreBot' sample code for Bot Framework V4 (with LUIS) for my own purposes, and have hit a snag in the way the responses and waterfall dialog steps are being executed. I have a top level dialog. My expectation…
6
votes
1 answer

Can aws-lex be used to build a conversation flow bot?

Can aws-lex be used to build a conversation flow bot? For example: Is there a way to do something like this in aws-lex or not? I tried using slots/prompts/lambda but I am not able to go to 2nd or 3rd level depth in diagram. can be done…
6
votes
2 answers

LUIS Intent not returning the entire value of the entity with space

I have created a LUIS Utterance like this with a simple entity included: orders in process for customer abc Where abc is replaced with the simple entity vf_NARCName In the bot when I type the question like: Orders in process for customer Animal…
6
votes
1 answer

C# Microsoft Bot Framework with luis result directing to QNA Maker and graph api

I made a Bot using Microsoft bot framework and made use of Luis for matching intents. Some of the intents directs it to QNA and and some other intents directs it to graph api. My Question is what is the best approach for identifying whether it…
1
2 3
91 92