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

LUIS apps created on eu.luis.ai not showing on my Azure Portal

I created 2 LUIS apps about a month ago on eu.luis.ai, and they have been working just fine with the Bot they are linked to, but it seems that I have hit some sort of quota on LUIS requests. I think upgrading my plan to a higher tier would resolve…
Etienne
  • 41
  • 1
  • 3
2
votes
2 answers

Azure Bot Associated Language Understanding (LUIS) App Not Showing

Per this tutorial, I created an Azure Bot web application (in the US region). It works fine, but the associated LUIS app is not showing.
Tracy
  • 680
  • 7
  • 16
2
votes
1 answer

LUIS gives 403 response with "Out of call volume quota."

LUIS gives 403 response with "Out of call volume quota." message even if I haven't reached 10,000 transactions free per month limit. My current usage is 1431 hits. I would also like to clarify that we are not hitting more than 5 calls a second. It's…
Anand Padiya
  • 143
  • 8
2
votes
1 answer

bot framework default dialog is not triggering out

I am creating a multi-dialog chatbot with Microsoft bot framework using node.js bot is connecting with LUIS for NLP. when the intent is matching dialog is triggering without any issues. but when it comes to a none matching dialog I want to trigger…
Roledenez
  • 751
  • 4
  • 16
  • 43
2
votes
1 answer

args not returning expected LUIS result after implementing BotAuth

I have been creating a chat bot with MS Bot Framework in Nodejs and LUIS. I am recently trying to get certain information from the MS Graph API, and have (sort of) successfully implemented BotAuth and am able to get the information I want. The issue…
2
votes
1 answer

How to remove a prebuilt entity label from an utterance

I'm training my LUIS app with utterances, and I've added the prebuilt entity "number". I've noticed when you're labeling utterances for training, you can remove custom labels that are automatically guessed but you can't remove prebuilt entity…
rory.ap
  • 34,009
  • 10
  • 83
  • 174
2
votes
0 answers

LUIS - remove 'keyPhrase' from words in review endpoint utterances

When working in the LUIS gui, is there a way to remove 'keyPhrase' from suggested words? Here i would like to move the keyPhrase to book instead of i'm. But i can't remove the keyPhrase, nor can I add it to book. UPDATE: adding screen shot of…
2
votes
1 answer

use LUIS for conversational bot without Bot Framework

Is it possible to use LUIS API without MS BOT Framework? It is ok if I need to reference MS BOT Framework libraries for parsing LUIS response, but incoming request text will be from web application and not from MS BOT Framework. I am struggling to…
Vladimir B
  • 170
  • 1
  • 13
2
votes
1 answer

How to Import Entities and Intents to LUIS in bulk?

I'm trying to migrate a watson app to LUIS, or at least it's intents and entities, I have it currently exported as a json file, is there any way to import intents and entities in bulk to LUIS? I know you can import values for each individual entity…
IvanHid
  • 669
  • 7
  • 25
2
votes
2 answers

qnamaker with LUIS

I'm exploring the microsoft services. LUIS caught my attention. Would it be beneficial to add it to a QNAmaker bot? The bot basically answers questions as accurately as possible, nothing else, just pure answer from knowledgebase. Do I even need to…
2
votes
2 answers

QnAmaker change default answer when QnAmaker does not have any response

How to change default answer when QnAmaker does not have any response to display a prompt dialog. For example: User1: Hello Bot : Hello there !! User1: Do you sell cars? Bot : No good match found ! Instead of No good match found, the bot should…
2
votes
1 answer

Quit current dialog if user wants to stop

I am using multiple dialogs. Some use formbuilder, some use a ResultAfter method for custom prompting of values. I want a method to check incomming messages on exit words like stop, quit etc. I thought the StartAsync function would be a good start.…
Kraishan
  • 443
  • 5
  • 14
  • 38
2
votes
2 answers

Web App-Bot Creation (Azure) - No LUIS App visible

I'm having a strange issue while creating a new Web App-Bot with Language understanding (LUIS): After creating the bot within Azure-portal (Web App Bot with LUIS Template) the bot is just working fine with the basic intents (Greeting, Cancel,…
2
votes
1 answer

From free to paid subscription on LUIS

I recently reached the limit for the free LUIS usage. I first created the LUIS app directly on the LUIS.ia portal and used those keys on my code. Now I wanted to get the paid option to continue using it so I created an azure resource for LUIS.ia I…
2
votes
2 answers

Unable to use TriggerAction to match with LUIS intent in Microsoft Bot framework (node.js)

I'm facing an issue whereby unable to use triggerAction to match with luis intent when inside the prompt choice. For my current code, triggerAction will begin the dialog if word(s) keyed by user matches exact statement that I hardcoded such as…