Hi @Artur Czepiec,
Thank you reaching out to Microsoft Q&A forum!
Currently, Azure Face API is not available as a disconnected setup. However, you can use Azure AI Vision - Read in a disconnected container. This container is designed to work offline, enabling you to perform vision-related tasks in environments with strict security and data privacy requirements.
While Face API is not part of the available disconnected services. To use Azure services offline, configure environment variables for your credentials. In the Azure portal, after deploying your resource and locate your key and endpoint under Resource Management > Keys and Endpoint.
On your local machine, open a console and set the following environment variables:
- FACE_APIKEY: Replace
<your_key>
with your resource key. - FACE_ENDPOINT: Replace
<your_endpoint>
with your resource endpoint.
This setup ensures secure access to Azure services with proper credentials.
Please refer, for more info: Use Docker containers in disconnected environments and Quickstart: Use the Face service.
Hope this helps. Do let us know if you any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.