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

Intent Score mapping between qnA and Luis in BOT framework

I have the scenario In my BOT framework, i handled both LUIS and QnA maker using the following criteria IF the INTENT is NONE - connect to the QnA maker and get answers SOME OTHER INTENT - Corresponding answers will be triggered. It works…
3
votes
1 answer

How to set the text value of AdaptiveCard Submit button action on BotFramework

Im trying to integrate Luis with botframework. From what i see (p/s. still new on this), Luis handle the response based on the text input of the user. So when im trying to use Adaptive Card Submit Button action, i can set the value but not the text…
3
votes
1 answer

Conversational Bot on MIcrosoft Bot Framework possible?

Is it possible to have a conversational bot using the bot framework of Microsoft? I'm currently using Luis and Qna maker combined, but it is still pretty much a single question and answer bot, what can I do to make it more of a conversational bot?…
3
votes
1 answer

Recognition of prebuilt datetimeV2 entity in LUIS

We are using DateTimeV2 French module. The recognition is not working as expected. We are facing trouble in the following scenario: For query = 13/02/2018, the value recognized is 13th Feb 2018 but if the date specified in less than 12, eg,…
3
votes
2 answers

Not able to Assign LUIS subscription key to App - API V2.0

I have to assign the subscription key to luis app which i created on azure. I am using LUIS Api V2.0 to Assign Subscription Key To App. I have used Update application version external key endpoint for it. …
3
votes
1 answer

QnA maker versioning

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

C# LUIS Chatbot extract all intents from LuisResult

I have a chatbot that is connected with LUIS, I know although the dialog will only go into the one with the highest matching intent, however I would still want to display the scores of the rest of the intents, is there a way to do that? I already…
yfan183
  • 547
  • 2
  • 7
  • 20
3
votes
2 answers

How does navigation work with LUIS subdialogs?

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

LUIS Import Dataset: BadArgument: Dataset object cannot be null. Parameter name: dataSet

Good day community, I am using LUIS to train a data set to let it classified between different meaning of the words. After I've done trained, I want to import a set of data to let it test. There is a batch testing options for me to import a json…
Sivvie Lim
  • 784
  • 2
  • 14
  • 43
3
votes
1 answer

Does Microsoft chatbot(Node.js) support multiple language in the single LUIS.AI application?

I have a chatbot which is built in Microsoft bot framework with Node.js and I integrated this bot with a NLP framework called LUIS.AI intelligence to handle the user conversation based upnon their intents and entity. Here I need this bot to support…
3
votes
1 answer

Can Luis be used in Bots designed on platform other than MSFT Bot Framework

Can Luis be used in Bots designed on a platform other than MSFT Bot Framework like chatfeul.
Deven Rana
  • 71
  • 4
3
votes
1 answer

Microsoft Bot framework dynamic options issue

I am trying to build a form using FormBuilder with Microsoft Bot framework. I have an requirement of dynamically adding options. I was able to add it (States) but when I select one of the state, flow ends there itself. Please find the sample code…
Gagan Bajaj
  • 169
  • 1
  • 16
3
votes
1 answer

Difference between "Staging" and "Production" endpoint slot in LUIS

I didn't find any documentation explaining the difference between "Staging" and "Production" endpoint slot. I think, that staging means the same as debugging mode, but I'm not sure. It would be great to hear an explanation from you. Kind…
3
votes
1 answer

Multiple LUIS models from config

I use 2 LUIS models in 1 LUIS Dialog via attributes [LuisModel("model1", "")] [LuisModel("model2", "")] [Serializable] public class LuisDialog I need to get these models from the config file. In Autofac I can only register 1 builder.Register(c…
BotDev
  • 43
  • 5
3
votes
1 answer

Getting LUIS entities inside a child dialog

I'm developing a bot using Bot Framework, LUIS and ActionBinding. In one of my intent handlers I call a new Dialog which has the methods StartAsync(IDialogContext context) and ReceiveMessageAsync(IDialogContext context, IAwaitable
André Mantas
  • 482
  • 4
  • 13