I need to know if I can create a custom QnA chatbot using Azure Language Studio? I found some tutorials in the web but there are no blogs or anything which shows how can we connect azure SQL to a custom QnA chatbot in Azure Language studio.
The usecase I want from the chatbot:
- Get input from users.
- Understand the input using NLP.
- Find the relevant data in azure SQL database (Which consists large number of tables and is complex).
- Give correct answer to the user in natural language.
Can any one please let me know if this is possible in azure LUIS and if yes, then I need some guidelines on this.
Looked every where in the internet. Didn't find any solution even on the documentations.
What you're describing is certainly possible, but you'll want to use the new Azure Cognitive Service for Language. It is a set of services that replace QnA and LUIS, which have since been deprecated. As for your bot interface itself, you could use Power Virtual Agents or Bot Framework to handle the user interaction and calling external services (these do not need to just be Microsoft services. You can access external endpoints as well).