title | description | author | ms.author | ms.service | ms.topic | ms.date | ms.collection |
---|---|---|---|---|---|---|---|
Integrate Azure AI services with service connector |
In this document, learn how to integrate Azure AI Services into your application with Service Connector |
wchigit |
wchi |
service-connector |
how-to |
06/14/2024 |
ce-skilling-ai-copilot |
This page shows supported authentication methods and clients, and shows sample code you can use to connect Azure AI Services to other cloud services using Service Connector. You might still be able to connect to Azure AI Services using other methods. This page also shows default environment variable names and values you get when you create the service connection.
Service Connector can be used to connect the following compute services to Azure AI Services:
- Azure App Service
- Azure Container Apps
- Azure Functions
- Azure Kubernetes Service (AKS)
- Azure Spring Apps
The table below shows which combinations of authentication methods and clients are supported for connecting your compute service to Azure AI Services using Service Connector. A “Yes” indicates that the combination is supported, while a “No” indicates that it is not supported.
Client type | System-assigned managed identity | User-assigned managed identity | Secret/connection string | Service principal |
---|---|---|---|---|
.NET | Yes | Yes | Yes | Yes |
Java | Yes | Yes | Yes | Yes |
Node.js | Yes | Yes | Yes | Yes |
Python | Yes | Yes | Yes | Yes |
None | Yes | Yes | Yes | Yes |
This table indicates that all combinations of client types and authentication methods in the table are supported. All client types can use any of the authentication methods to connect to Azure AI Services using Service Connector.
Use the connection details below to connect compute services to Azure AI Services. For more information about naming conventions, check the Service Connector internals article.
Default environment variable name | Description | Sample value |
---|---|---|
AZURE_AISERVICES_OPENAI_BASE | Azure OpenAI endpoint | https://<your-Azure-AI-Services-endpoint>.openai.azure.com/ |
AZURE_AISERVICES_COGNITIVESERVICES_ENDPOINT | Azure Cognitive Services token provider service | https://<your-Azure-AI-Services-endpoint>.cognitiveservices.azure.com/ |
AZURE_AISERVICES_SPEECH_ENDPOINT | Speech to Text (Standard) API endpoint | https://<location>.stt.speech.microsoft.com |
Refer to the steps and code below to connect to Azure AI Services using a system-assigned managed identity. [!INCLUDE code sample for app config]
Default environment variable name | Description | Sample value |
---|---|---|
AZURE_AISERVICES_OPENAI_BASE | Azure OpenAI endpoint | https://<your-Azure-AI-Services-endpoint>.openai.azure.com/ |
AZURE_AISERVICES_COGNITIVESERVICES_ENDPOINT | Azure Cognitive Services token provider service | https://<your-Azure-AI-Services-endpoint>.cognitiveservices.azure.com/ |
AZURE_AISERVICES_SPEECH_ENDPOINT | Speech to Text (Standard) API endpoint | https://<location>.stt.speech.microsoft.com |
AZURE_AISERVICES_CLIENTID | Your client ID | <client-ID> |
Refer to the steps and code below to connect to Azure AI Services using a user-assigned managed identity. [!INCLUDE code sample for azure AI Services]
[!div class="mx-tdBreakAll"]
Default environment variable name Description Sample value AZURE_AISERVICES_OPENAI_BASE Azure OpenAI endpoint https://<your-Azure-AI-Services-endpoint>.openai.azure.com/
AZURE_AISERVICES_COGNITIVESERVICES_ENDPOINT Azure Cognitive Services token provider service https://<your-Azure-AI-Services-endpoint>.cognitiveservices.azure.com/
AZURE_AISERVICES_SPEECH_ENDPOINT Speech to Text (Standard) API endpoint https://<location>.stt.speech.microsoft.com
AZURE_AISERVICES_KEY Azure AI Services API key <api-key>
Refer to the steps and code below to connect to Azure AI Services using a connection string. [!INCLUDE code sample for azure AI Services]
Default environment variable name | Description | Sample value |
---|---|---|
AZURE_AISERVICES_OPENAI_BASE | Azure OpenAI endpoint | https://<your-Azure-AI-Services-endpoint>.openai.azure.com/ |
AZURE_AISERVICES_COGNITIVESERVICES_ENDPOINT | Azure Cognitive Services token provider service | https://<your-Azure-AI-Services-endpoint>.cognitiveservices.azure.com/ |
AZURE_AISERVICES_SPEECH_ENDPOINT | Speech to Text (Standard) API endpoint | https://<location>.stt.speech.microsoft.com |
AZURE_AISERVICES_CLIENTID | Your client ID | <client-ID> |
AZURE_AISERVICES_CLIENTSECRET | Your client secret | <client-secret> |
AZURE_AISERVICES_TENANTID | Your tenant ID | <tenant-ID> |
Refer to the steps and code below to connect to Azure AI Services using a service principaL. [!INCLUDE code sample for azure AI Services]
Follow the tutorial listed below to learn more about Service Connector.
[!div class="nextstepaction"] Learn about Service Connector concepts