Akshay
Akshay

Reputation: 1

Is there a way for LUIS app connect to SQL server

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

Answers (1)

Horatiu Jeflea
Horatiu Jeflea

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

Related Questions