Reputation: 3
The data being sent to Cognitive Services (say LUIS) might contain some information which we do not wish to expose outside the enterprise. Therefore , would like to know how can this be achieved??
Upvotes: 0
Views: 343
Reputation: 381
You can consider LUIS containers, which only sends necessary billing usage data to Azure.
https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-container-howto?tabs=v3
Upvotes: 0
Reputation: 736
For LUIS, you can set log=off in the URL you send. That will disable logging of utterances. Document is here: https://learn.microsoft.com/en-us/azure/cognitive-services/luis/luis-resources-faq.
Upvotes: 1