Reputation: 51
is it possible to use the LUIS locally(without internet). I have LUIS application in azure. However my organization firewall doesnt allow me to connect to LUIS from data center. Only allowed from laptop. If I host my .net chatbot and data base etc, in data center, conectivity to LUIS is not possible. I see files like greeting.lu, main.lu etc. is it possible to export and use the LUIS application locally with the chatbot?
Upvotes: 0
Views: 198
Reputation: 16178
Yes, you can run LUIS in a container on-prem (or wherever). However, the container needs to be able to make outgoing HTTP calls against the billing API. But no data apart from billing information (i.e. how many calls you made against you local LUIS) is being transmitted over the wire.
HOW-TO: https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-container-howto
Upvotes: 2