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

BotBuilder - NLP with dispatch error No such host is known

I am new in using Bot Builder Framework. I was following this tutorial from Microsoft https://learn.microsoft.com/en-us/azure/cognitive-services/qnamaker/tutorials/integrate-qnamaker-luis. I am using the code from GitHub(NLP-with-dispatch) and set…
2
votes
2 answers

How do I generate .LU file from .JSON file of LUIS

I am working on Bot framework Virtual Assistant Template. There is a deployment folder where .LU files resides. But i created LUIS app in LUIS site and can export LUIS app as JSON format. Currently i am generating .lu file manually. Is there any…
2
votes
2 answers

How do I work with LUIS's timex daterange in C#?

In this example, Microsoft shows "tuesday to thursday" being recognized by LUIS, which responds with a start and date time. However, when I use the same example with my LUIS, it doesn't send me start or end dates. it just sends me a timex string,…
AskYous
  • 4,332
  • 9
  • 46
  • 82
2
votes
1 answer

Can aws-lex be used to build a conversation flow bot to reply with different answers based on user's input?

Can aws-lex be used to build a conversation flow bot? For example: Thank you very much! Reason for all this: So we have our own "dialogue builder" and "bot-service". Our own "Dialogue Builder": is maybe similar to Amazon Connect dialogue builder,…
2
votes
2 answers

entity detection - entities clashing with english words

I have few sentences like below what is the sales org for fpc 1234 for IS? give me sales org for fpc 12234 for IS? give me sales org for fpc 12234 with scope ME? In the above sentences, the entity I'm looking for is IS, IS and ME respectively.…
2
votes
2 answers

LUIS Usage Status

In Azure Portal, I have created Web App Bot using Basic Bot template which includes LUIS creation automatically. LUIS has Free2 - Web/Container comes with 10,000 transactions* free per month…
Law Hui Sheng
  • 315
  • 1
  • 2
  • 9
2
votes
1 answer

Luis Dashboard api calls

I'm developing an app to create conversations outside of luis portal. This means that most of the info I get related to my luis app comes from api calls. The issue I have is that I can't find the api calls to get information from the Dashboard I…
2
votes
0 answers

How do we automate the Refreshing of LUIS Dispatcher Model?

1. If we can go with Function App in Azure, how do we get the Dispatcher CLI to work in this function? Is there any code to run the NODE JS and install Dispatcher CLI and run the refresh command? 2. Will it be possible to use Container in Blob…
2
votes
1 answer

Qna and LUIS interrupts dialog before next step can process the input

I have QnaMaker and LUIS integrated into my bot. I want the user to be able to ask questions in between conversation. I already discovered that the problem is, that the bot always looks in luis and qna first, before processing the input of the…
2
votes
1 answer

LUIS duration in hours using built-in dateTime entity

I am trying to build a bot in C# using Microsoft Bot Framework and LUIS. This bot must be able to book a room for a certain duration. Currently it works well with the prebuilt datetime of LUIS for durations in minutes, but it takes hours as a time…
2
votes
2 answers

How to get the user id from Slack to bot service

I am creating a simple bot using Azure LUIS and this is my first one. I made some decent progress after doing some research and also now integrated with Slack as channel to test it. The bot functionality is working fine, but I am looking to identify…
2
votes
0 answers

Bot Framework An Operation Was Attempted on Something That is Not a Socket

After deploying a bot on Microsoft Teams for multiple users to test, I have begun getting the above error. This has occurred in two different places. I'll post the stack traces for…
craigbot
  • 345
  • 1
  • 2
  • 15
2
votes
1 answer

Question about changing to a new LUIS key with Botframework v4

I downloaded the C# template in Azure. It automatically created and setup a LUIS app but now LUIS hits 1000 calls and expires now. I created a new key using this guide. I managed to assign a resource but now what? I'm still getting an error that the…
user10860402
  • 912
  • 1
  • 10
  • 34
2
votes
0 answers

Use Composite or Hierarchical Entity? Improving utterance confidence

Want to handle an utternace in the following format "I met [a-PersonName] at [a-Business/VenueName] in [a-GeographicalLocation]" Sample utterances might be I met Jane Allan at Starbucks in Bellevue I met james at Borders in New York I met Lily…
fredh
  • 33
  • 3
2
votes
1 answer

LUIS inconsistent datetimeV2 parsing (US and UK formats)

As far as I'm aware, LUIS only comes in the en-US culture for English (there's no en-UK). Therefore, I'd expect the datetimeV2 entities to come back as YYYY-DD-MM. However sometimes LUIS sends back datetimeV2 entities as YYYY-MM-DD, and it's…
Naadof
  • 459
  • 5
  • 16