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

Refresh dispatch model without losing entity mapping

I'm understanding the concepts of BOT Framework by following documentation. Step 1: Followed steps to create new KB and then cognitiveModels.json is updated with new values and .\Deployment\Scripts\update_cognitive_models.ps1 -RemoteToLocal…
2
votes
2 answers

LUIS chatbot integration with Power BI

Is there any way to get the graph from Power BI through API call? I find that there is embed URL returned by Power BI API call, but is there any way to send this embed URL and show the graph or report in chatbot (Skype or teams)?
2
votes
2 answers

Azure LUIS Ownership change

How do I change the Owner? I want to be able to change the owner of the app because the other person is too busy. Please help. Thanks!
khmerforce
  • 65
  • 6
2
votes
1 answer

What is LUIS Phrase List interchangeable mean?

I fined these values are interchangeable in Language Understanding Intelligent Service(LUIS) Phrase List. What is LUIS Phrase List interchangeable mean? What is this used for?
joe
  • 89
  • 1
  • 6
2
votes
1 answer

2 question about Language Understanding Intelligent Service(LUIS)

I started learned Language Understanding Intelligent Service(LUIS). I have 2 question. What is Language Understanding Intelligent Service version container use for? LUIS version JSON schema has a column which name is "setting", what is that use…
joe
  • 89
  • 1
  • 6
2
votes
1 answer

Newly created authoring resource not showing up in Luis portal

I added an authoring resource in the Luis Portal and imported a few apps. The added authoring resource appeared both in the Azure portal and the Luis portal initially. Then suddenly the resource disappeared in the Luis portal and now I am unable to…
Nate Ko
  • 923
  • 5
  • 7
2
votes
2 answers

LUIS mount points

I am trying to use a custom Dockerfile to build the LUIS container and copy the app file (app exported from the Luis portal) into the container. For this reason, I really don't need the mount points, since the .gz file will already live in the…
2
votes
1 answer

LUIS URL for container

I am trying to use the LUIS container and am getting conflicting information. I have a test application that uses the LUIS cloud service, using the Speech SDK. The Speech SDK assists in sending the audio stream to the cloud and getting the LUIS…
2
votes
1 answer

Test panel returns json in v3 API format, while v2 is preferable

Example of current response using test panel: { "query": "incident 2", "prediction": { "normalizedQuery": "incident 2", "topIntent": "INCIDENT_DETAILS", "intents": { "INCIDENT_DETAILS": { "score": 0.972139537 } …
2
votes
2 answers

what is the best practice to review endpoint utterance in Luis dispatch model?

what is the best way to enhance a dispatch model in LUIS, as checking the dispatch app asked utterances "review endpoint utterances" and updating it does not affect the original apps I have from Luis or QnA, should i always update the other apps…
2
votes
1 answer

BadArgument error when trying to migrate luis to Azure resource

I'm trying to migrate my luis account to Azure resource and i get this error: BadArgument: You have prediction keys assigned in collaborators' apps. These apps will lose access to these keys. What am I doing wrong? What have I to do?
MrToast
  • 1,159
  • 13
  • 41
2
votes
1 answer

How do I Invoke a REST API from Azure DevOps using Bearer Token

I'm trying to use an Azure DevOps task to programatically assign a LUIS predict resource to a LUIS app, as documented here. In short, this involves Get an Azure Resource Manager token from this website. Assign a LUIS azure accounts to an…
Martin Thøgersen
  • 1,538
  • 18
  • 33
2
votes
1 answer

LUIS App Fails to Train - App training failed: l_general: Retrain

I am no longer able to build and train my dispatcher LUIS app. If I try to run the dispatch CLI to refresh my dispatcher model like dispatch refresh --dispatch mydispatchfile.dispatch, it hangs on training the dispatch model and eventually returns…
DevNoob
  • 536
  • 6
  • 22
2
votes
0 answers

botskills connect: 'Failed importing latest version of virtualassistanten_Dispatch app'

I am following the tutorial by Microsoft to create a virtual assistant chatbot with multiple bots, i.e. skills stitched together. I am trying to register a sample skill to a virtual assistant bot on Azure by running botskills connect but I get an…
chatbote
  • 141
  • 1
  • 2
  • 11
2
votes
1 answer

How to retrieve user entered input in adaptive card to the c# code and how to call next intent on submit button click

I have a date picker adaptive card which I call during an intent call. I am not getting as to how can I get value entered by the user and pass it to my bot luis where I will be having an intent which will get triggered with those values I have tried…