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

How to create a new IDialogContext instance in Microsoft Bot framework?

I have a need to reset or kill (using context.Done) the current IDialogContext instance and create a new instance and use it in a different function. How can I create such an instance, IDialogContext being an interface. Is it possible? This is the…
-1
votes
1 answer

How to define string as luis entity

I'm working with Luis.ai, I can define entity as a word but dont know how to define entity as a string, for example: I am working on setting up my computer I want to receive entity = "setting up my computer" Currently, Luis return entity =…
-1
votes
3 answers

How can I add a value that is stored in web.config to a class attribute in c#(from web config file not the resource file)

public static class trial { public static string LUIS_MODEL_ID=ConfigurationManager.AppSettings["ID"]; public static string LUIS_SUBSCRIPTION_KEY =ConfigurationManager.AppSettings["KEY"]; …
-1
votes
1 answer

How to use Luis.ai Auth Settings

Can anyone provide a URL or tutorial to the help with setting up the Auth Settings tab in Luis.ai?  I am building a tool that allows anyone without coding experience to create a Chat Bot exclusively based on Luis.ai and it's Cognitive Services API.…
-1
votes
1 answer

Connecting LUIS dialog to form dialog and mapping builtin fields

I have a similar issue to this: Connecting LUIS dialog to form dialog and mapping the right fields Except I am using built in entities in LUIS such as builtin.number, which I have given a name in LUIS e.g. Amount, but the mapping seems to only be…
Henry
  • 37
  • 3
-1
votes
1 answer

How to configure single Bot to multiple Slack accounts?

I have developed a Bot using Microsoft Bot Framework and configured it to one of my slack account. Can I use the same Bot to another slack account? If yes how can I configure it from Microsoft Bot Framework dashboard?
sateesh
  • 605
  • 6
  • 16
-2
votes
1 answer

How to access the entity value in Luis

I want to print the value of the entity that is already defined in the Luis portal, I already printed the TopIntent but I need to access the entity and print the value of it
-2
votes
2 answers

Unable to map LUIS intent while using the Bot Framework v4 code

I am running botframework v4 code and testing it using chatbot emulator . Curently i am unable to reach the code flow where the luis intent code is present in [MainDialog.cs][1] . Below is the line in MainDialog.cs file: var luisResult = await…
AllTech
  • 563
  • 6
  • 27
-2
votes
1 answer

bot thrown error with luis publishing on azure but work fine with emulator

I have bot made in framework v4 using c# having middleware in it. It work fine on emulator but throw error after getting publish on azure. Can any one knows the possible cause of it. It mainly throw error with luis part on azure. Error msg is Sorry,…
-2
votes
1 answer

I can't add utterance for error like "BadArgument: The entity extractor c_blankutterance does not exist in the application version. "

when i try to add utterance use name of entity "c_blankutterance"(Entity Type: Pattern.any), that failed about "BadArgument: The entity extractor c_blankutterance does not exist in the application version. " this error. I checked that entity…
-2
votes
1 answer

How to add LUIS intent in bot framework locally?

I am developing a chatbot using bot framework. I have already developed a basic Node Echo Bot and also basic QnA Bot. I am currently developing a LUIS bot of which i already created an intents on luis.ai. I have created the bot on Azure and…
-2
votes
1 answer

How to add API to chat bot or any web sites notification(like twitter)

i want to create a chat bot using LUIS (ms bot framework) that should have to be integrated with the notification of stock,sports and API like Facebook , twitter notification. please elaborately explain i am a beginner.
vijai
  • 11
  • 4
-2
votes
1 answer

How to add active learning to Azure Chat Bot with C# .net

I have made a chat bot with LUIS and QnA, but now I want to add active learning to the QnA, but the problem is I'm only able to found documentation for node.js, whereas my project is in c# and .net framework. Kindly provide some useful links where I…
-2
votes
1 answer

How to i can integrate LUIS bot with multiple QnA maker

Can someone please provide the solution for integrate LUIS with multiple QnA KB.
-2
votes
1 answer

questions/tagged/botframework LUIS

I am planning to build a similar chatbot built by Microsoft team for a super mall in china (https://microsoft.github.io/techcasestudies/bot%20framework/2017/06/21/CaaP-SuperBrandMall.html), I have below requirement :I am using visual studio 5 for…