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
3 answers

“No such host is known.” error when publishing bot with LUIS AI to Azure but working fine locally

I have hosted a bot in Azure and when debugging with ngrok via bot emulator I get an error stating: No such host is known. I’ve had such an experience with the bot before, and it meant that the LUIS AI configuration, specifically the LuisAPIHostName…
Bojan
  • 769
  • 9
  • 16
3
votes
1 answer

How to create incident in servicenow using chatbot

I have created a chatbot in C#, which is configured to Luis and gives some kind of reply when a question is asked. But i wanted to create incident in Servicenow using this chatbot.Chatbot asks some questions like 'what is the issue?' or 'short…
3
votes
4 answers

Migration of LUIS account failed

I cannot access my LUIS models nor can complete the migration on eu.luis.ai. Error message is: Migration of your account has failed. Here is a list of possible reasons why: You created a resource using an invalid account name. Your role lacks…
3
votes
2 answers

Batch Transcription and LUIS Integration

I have a requirement to do integration between the batch transcription and LUIS wherein I will pass the transcriptions as such to LUIS and get the intent of the audio. As far as I know we can pass the data for intent analysis to LUIS as a query…
3
votes
0 answers

How to pass data from promptContext to Luis result?

I want to validate the data by checking if it is identified as an entity(lets say randomEntity) by Luis or not. If the data entered is recognized as randomEntity, then move ahead, otherwise use retry prompt. But this does not work using…
uitwaa
  • 615
  • 1
  • 12
  • 24
3
votes
2 answers

is there any way that a azure chatbot can query the databse and return answer from the database? may be using qna maker or luis?

I am trying to build a chat bot which queries a database and returns answer from the database depending on the question asked. is there any way to connect the azure chat bot to the database say azure SQL database?
3
votes
0 answers

Prevent nested entity extraction in LUIS application

In a hypothetical "Contacts" LUIS.AI application with three list entities ContactType: [Phone, Email] Country: [UK, Germany, US, Canada, Brazil, Venezuela] Region: [Europe, North America, South America] Where the Country entity "US" has synonyms…
rcbevans
  • 7,101
  • 4
  • 30
  • 46
3
votes
2 answers

How can I Integrate QnA maker to gather user info?

I have currently integrated LUIS with my chatbot. The scenario is:- User types in something in bot. The bot logic calls LUIS to determine the Intent and based on INTENT respective dialog is called. In the dialog, I am gathering user information…
3
votes
1 answer

How to construct a QnA Maker Instance Class in C# - CoreBot?

I got a System.AggregateException after running my Core Bot C# sample. In the Startup.cs I added the class as followes: services.AddSingleton(); The Recognizer Class looks like: using System.Net.Http; using…
3
votes
1 answer

Migrated LUIS to Azure resource, now the LUIS application is missing

LUIS kept giving prompts to migrate to Azure for authoring resources because that would be a requirement in August. I went ahead and clicked Migrate, but initially it gave me an error saying BadArgument: You have prediction keys assigned in…
EmaadP
  • 160
  • 1
  • 1
  • 10
3
votes
0 answers

Cannot delete LUIS account

When I signed up for the LUIS service I did not created a Azure resource in my Azure subscription but get the default one, this resource is located in west us and not connected to my azure subscription. I tried to create new resource but cannot…
Kalle
  • 31
  • 2
3
votes
1 answer

Testing an utterance: comparison to "published" produces JSON string completely different from results obtained by querying the API

I just trained my LUIS application and published it to production. If I test it on an utterance, I can see how that result compares to the published version and look at the JSON result. The problem is I'm getting a completely different JSON result…
rory.ap
  • 34,009
  • 10
  • 83
  • 174
3
votes
1 answer

How to set priority in Microsoft Luis Patterns?

I am using pattern recognition to catch entities with a variable size. Here are situation that i am trying to catch 1- {entity1} (has| had| have) [the] {entity2} 2.1- {entity1} (has| had| have) the {entity2} 2.2- {entity1} (has| had| have)…
3
votes
1 answer

How to use Azure DevOps pipelines to run Refreshing of LUIS Dispatch Model

I want to perform a "dispatch refresh" using the pipelines in Azure DevOps, however I couldn't find any reference or documentation that performs the process. I've got the idea of using the pipelines in Azure DevOps for performing "dispatch refresh"…
3
votes
4 answers

application not found with luis api version 3.0 preview

I was testing the new preview 3.0 version for LUIS on the test console available at "https://westus.dev.cognitive.microsoft.com/docs/services/luis-endpoint-api-v3-0-preview/operations/5cb0a9459a1fe8fa44c28dd8/console" . Despite I am using the same…