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
4
votes
2 answers

how to send an email from a microsoft bot?

I developed a chatbot and deployed it on skype. I have one new thing to be added to bot. If a user requests for a office cab in bot then bot has to take user input(like destination, emp-name, etc) and send an email to a particular mail…
4
votes
1 answer

Can LUIS export a KB in Firefox?

Anyone know how to get the latest version of the LUIS UI to export a KB in Firefox? It seems to be using some form of 'clever' JavaScript that does not like Firefox. I can download in Edge but Firefox seems to go through the motions and I get the…
pkr2000
  • 214
  • 2
  • 11
4
votes
2 answers

How does the "The values are interchangable" option in Phrase List work in LUIS?

I've gone through the ocumentation and tried understanding the Phrase List feature. Although I'm sure of the purpose of the Phrase List feature, I couldn't quite get the purpose of the "interchangable" option intutively. Any thorough explanation…
4
votes
3 answers

How to integrate LUIS and QnA Maker services in single Node.js bot?

I'm developing a chatbot using Microsoft Bot Framework with Node.js SDK. I've integrated LUIS and QnA maker but I want to create this scenario if it's possible. Taking in example the following link and in particular this section: There are a few…
4
votes
1 answer

'Oops. Something went wrong and we need to start over.' with Microsoft Bot Service with LUIS Template

I have created a Bot Service with LUIS template using Node.js, I have trained my luis model with our domain utterances and it was working fine. suddenly from a week time , Am facing weird behavior form the Bot Service, for any request the bot is…
seetharam
  • 49
  • 2
4
votes
1 answer

Setting regional culture with LUIS

Passing a date to LUIS in the format "3/1/2017" returns a builtin.datetimev2 entity resolved to 1 March 2013. Month first is a US convention for date strings, but not in my locale where this string generally represents 1 Jan 2017. Here is the JSON…
Matt Evans
  • 7,113
  • 7
  • 32
  • 64
4
votes
0 answers

Issues when creating bot with Language Understanding Intelligent Service Template

After I input App ID and password, I selected Language Understanding Intelligent Service Template and clicked create button, it's showing loading page and then get stuck on this step forever. Can someone advise why this happened? Thanks, Jack
4
votes
2 answers

401 Errors Calling the Microsoft Luis.ai Programmatic API

ASKING THIS HERE AT THE EXPLICIT REQUEST OF THE MICROSOFT AZURE SUPPORT TEAM. I've been attempting to call the MS Luis.ai programmatic API (bit.ly/2iev01n) and have been receiving a 401 unauthorized response to every request. Here's a simple GET…
4
votes
2 answers

Microsoft Bot Framework, LUIS, take some action when the message dont have a intent

I started learn the Microsoft Bot Framework recently, so I started make a Chatbot and I guess I making it wrong I making the chatbot this way: --> I get the message's user --> send to LUIS --> get the intent and the entities --> select my…
Italo José
  • 1,558
  • 1
  • 17
  • 50
4
votes
0 answers

How to incorporate the conversational context into LUIS?

I know Microsoft Luis is basically a black box that takes the utterances as input and outputs a JSON object which contains 1) a list for the entities, 2) a list for all the intents along with their scores. My question is that how can I take the…
4
votes
1 answer

Handle small talk in Microsoft LUIS like the small talk domain in api.ai

I have been trying to model the small talk model of api.ai in LUIS, but it is getting out of hand quickly. Any suggestions on how to do this would be appreciated. are you busy, are you ok, are you there can you advise, can you hear me, can you help,…
4
votes
1 answer

Chain with LUIS Intents

So they have this nice example inside the EchoBot sample to demonstrate chains public static readonly IDialog dialog = Chain.PostToChain() .Select(msg => msg.Text) .Switch( new Case>(text…
Matt
  • 384
  • 2
  • 10
4
votes
1 answer

PromptDialog for an undetermined number of questions

I am attempting to write a bot which would allow users to create a request (Example. I want to buy a t-shirt or I want to fix my computer ). Depending on the request they pick, they will be asked a series of questions associated with that request;…
4
votes
1 answer

Connecting LUIS dialog to form dialog and mapping the right fields

I am working on a bot where you can book a flight. I'm working with the latest version of the bot framework (1.1), as suggested suggested here. You can say things like "Book me a flight from Amsterdam to Boston next monday". Now, I configured LUIS…
Aldentev
  • 490
  • 2
  • 6
  • 18
3
votes
1 answer

How to define two different entity roles for the same prebuilt Entity (number) in LUIS

I am looking to build a bot that typically requires two numbers with a different meaning (role) in the same utterance. Let's take the example of a StockMarket order assistent (fictional, as example) Some example utterances: Buy 100 MSFT stock at…
1 2
3
91 92