Electron app not able to launch #1179
-
![]() |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Looks like you are using Azure OpenAI services with Entra identity auth (i.e. keyless auth) to access the endpoint, is that correct?
If that is the case, to make use of keyless API access via Entra, one way is to install Azure CLI and have logged in with the account that has access to the models using If you have a different set up, can you describe your service set up so we can advise on what value and other tools is needed. |
Beta Was this translation helpful? Give feedback.
Looks like you are using Azure OpenAI services with Entra identity auth (i.e. keyless auth) to access the endpoint, is that correct?
i.e. You have set the api keys to
identity
where.env
file look something similar to the following?If that is the case, to make use of keyless API access via Entra, one way is to install Azure CLI and have logged in with the account that has access to the models using
az login
. Make sure you chosen the subscription where your services are in as the def…