Reputation: 1
How to connect a LUIS app to the SQL server for retrieving the data back to the user?
Example: In a chatbot application when a user asks a question to bot after LUIS
understanding the intent how do we retrieve the answer back from the SQL database?
Upvotes: 0
Views: 338
Reputation: 7404
You have to use other services from Azure in order to achieve this. I recommend using:
Luis + Azure Bot deployed on Azure Functions, which connects to CosmosDB
Upvotes: 1