Skip to content

Commit 032c64d

Browse files
committed
AI articles review
1 parent 6d761b2 commit 032c64d

5 files changed

+40
-29
lines changed

articles/service-connector/how-to-integrate-ai-services.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: Integrate Azure AI services with service connector
2+
title: Connect Azure AI services with other Azure services
3+
titleSuffix: Service Connector
34
description: In this document, learn how to integrate Azure AI Services into your application with Service Connector
45
author: wchigit
56
ms.author: wchi
@@ -9,7 +10,7 @@ ms.date: 01/29/2024
910
ms.collection: ce-skilling-ai-copilot
1011
---
1112

12-
# Integrate Azure AI services with Service Connector
13+
# Connect to Azure AI services using Service Connector
1314

1415
This page provides information on supported authentication methods and clients, along with sample code for connecting Azure AI services to other cloud services using Service Connector. This page also lists default environment variable names and values obtained when creating the service connection.
1516

@@ -25,7 +26,7 @@ Service Connector can be used to connect the following compute services to Azure
2526

2627
## Supported authentication types and client types
2728

28-
The table below indicates 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.
29+
The table below indicates which combinations of authentication methods and clients are supported for connecting your compute service to individual Azure AI Services using Service Connector. A “Yes” indicates that the combination is supported, while a “No” indicates that it is not supported.
2930

3031

3132
| Client type | System-assigned managed identity | User-assigned managed identity | Secret/connection string | Service principal |
@@ -99,7 +100,7 @@ Refer to the steps and code below to connect to Azure AI Services using a servic
99100

100101
## Related content
101102

102-
* [Azure AI multi-service resource integration](./how-to-integrate-cognitive-services.md)
103+
* [Connect to an Azure AI multi-service resource](./how-to-integrate-cognitive-services.md)
103104
* [Azure OpenAI Service integration](./how-to-integrate-openai.md)
104105
* [Connect to Azure OpenAI Service in AKS using a Workload Identity](./tutorial-python-aks-openai-workload-identity.md)
105106
* [Learn about Service Connector concepts](./concept-service-connector-internals.md)

articles/service-connector/how-to-integrate-cognitive-services.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
2-
title: Integrate an Azure AI multi-service resource with service connector
2+
title: Connect Azure AI multi-service resource with Azure services
3+
titleSuffix: Service Connector
34
description: In this document, learn how to integrate an Azure AI multi-service resource into your application with Service Connector
45
author: wchigit
56
ms.author: wchi
@@ -9,7 +10,7 @@ ms.date: 01/29/2025
910
ms.collection: ce-skilling-ai-copilot
1011
---
1112

12-
# Integrate an Azure AI multi-service resource with Service Connector
13+
# Connect to an Azure AI multi-service resource with Service Connector
1314

1415
This page provides information on supported authentication methods and clients, along with sample code for connecting an Azure AI multi-service resource to other cloud services using Service Connector. This page also lists default environment variable names and values obtained when creating the service connection.
1516

@@ -25,7 +26,7 @@ Service Connector can be used to connect the following compute services to an Az
2526

2627
## Supported authentication types and client types
2728

28-
The table below indicates which combinations of authentication methods and clients are supported for connecting your compute service to an Azure AI multi-service resource using Service Connector. A “Yes” indicates that the combination is supported, while a “No” indicates that it is not supported.
29+
The table below indicates the authentication methods and clients supported for connecting your compute service to an Azure AI multi-service resource using Service Connector. A “Yes” indicates that the combination is supported, while a “No” indicates that it is not supported.
2930

3031

3132
| Client type | System-assigned managed identity | User-assigned managed identity | Secret/connection string | Service principal |
@@ -49,7 +50,9 @@ Use the connection details below to connect compute services to an Azure AI mult
4950
| AZURE_COGNITIVESERVICES_ENDPOINT | Azure Cognitive Services token provider service | `https://<cognitive-service-name>.cognitiveservices.azure.com/` |
5051

5152
#### Sample code
53+
5254
Refer to the steps and code below to connect to an Azure AI multi-service resource using a system-assigned managed identity.
55+
5356
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-microsoft-entra-id.md)]
5457

5558
### User-assigned managed identity
@@ -60,6 +63,7 @@ Refer to the steps and code below to connect to an Azure AI multi-service resour
6063
| AZURE_COGNITIVESERVICES_CLIENTID | Your client ID | `<client-ID>` |
6164

6265
#### Sample code
66+
6367
Refer to the steps and code below to connect to an Azure AI multi-service resource using a user-assigned managed identity.
6468
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-microsoft-entra-id.md)]
6569

@@ -71,7 +75,8 @@ Refer to the steps and code below to connect to an Azure AI multi-service resour
7175
> | AZURE_COGNITIVESERVICES_ENDPOINT | Azure Cognitive Services token provider service | `https://<cognitive-service-name>.cognitiveservices.azure.com/` |
7276
> | AZURE_COGNITIVESERVICES_KEY | API key of an Azure AI multi-service resource | `<api-key>` |
7377
74-
#### Sample Code
78+
#### Sample code
79+
7580
Refer to the steps and code below to connect to an Azure AI multi-service resource using a connection string.
7681
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-secret.md)]
7782

@@ -86,11 +91,13 @@ Refer to the steps and code below to connect to an Azure AI multi-service resour
8691
| AZURE_COGNITIVESERVICES_TENANTID | Your tenant ID | `<tenant-ID>` |
8792

8893
#### Sample code
94+
8995
Refer to the steps and code below to connect to an Azure AI multi-service resource using a service principaL.
96+
9097
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-microsoft-entra-id.md)]
9198

9299
## Related content
93100

94-
* [Integrate Azure AI services with Service Connector](./how-to-integrate-ai-services.md)
95-
* [Integrate Azure OpenAI Service with Service Connector](./how-to-integrate-openai.md)
101+
* [Connect to Azure AI services](./how-to-integrate-ai-services.md)
102+
* [Connect to Azure OpenAI Service](./how-to-integrate-openai.md)
96103
* [Connect to Azure OpenAI Service in AKS using Workload Identity](./tutorial-python-aks-openai-workload-identity.md)

articles/service-connector/how-to-integrate-openai.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
---
2-
title: Integrate Azure OpenAI Service with service connector
2+
title: Connect Azure OpenAI Service to other Azure services
3+
titleSuffix: Service Connector
34
description: In this document, learn how to integrate Azure OpenAI Service into your application with Service Connector
45
author: wchigit
56
ms.author: wchi
67
ms.service: service-connector
78
ms.topic: how-to
8-
ms.date: 06/14/2024
9+
ms.date: 01/29/2025
910
ms.collection: ce-skilling-ai-copilot
1011
---
1112

12-
# Integrate Azure OpenAI Service with Service Connector
13+
# Connect to Azure OpenAI Service using Service Connector
1314

14-
This page shows supported authentication methods and clients, and shows sample code you can use to connect Azure OpenAI Service to other cloud services using Service Connector. You might still be able to connect to Azure OpenAI Service using other methods. This page also shows default environment variable names and values you get when you create the service connection.
15+
This page provides information about supported authentication methods and clients, along with sample code for connecting Azure OpenAI Service to other cloud services using Service Connector. This page also lists default environment variable names and values obtained when creating service connections.
1516

1617
## Supported compute services
1718

@@ -22,6 +23,7 @@ Service Connector can be used to connect the following compute services to Azure
2223
- Azure Functions
2324
- Azure Kubernetes Service (AKS)
2425
- Azure Spring Apps
26+
2527
## Supported authentication types and client types
2628

2729
The table below shows which combinations of authentication methods and clients are supported for connecting your compute service to Azure OpenAI Service using Service Connector. A “Yes” indicates that the combination is supported, while a “No” indicates that it is not supported.
@@ -39,7 +41,7 @@ This table indicates that all combinations of client types and authentication me
3941

4042
## Default environment variable names or application properties and sample code
4143

42-
Use the connection details below to connect compute services to Azure OpenAI Service. For more information about naming conventions, check the [Service Connector internals](concept-service-connector-internals.md#configuration-naming-convention) article.
44+
Use the connection details below to connect compute services to Azure OpenAI Service. For more information about naming conventions, refer to [Service Connector internals](concept-service-connector-internals.md#configuration-naming-convention) article.
4345

4446
### System-assigned managed identity
4547

@@ -59,6 +61,7 @@ Refer to the steps and code below to connect to Azure OpenAI Service using a sys
5961
| AZURE_OPENAI_CLIENTID | Your client ID | `<client-ID>` |
6062

6163
#### Sample code
64+
6265
Refer to the steps and code below to connect to Azure OpenAI Service using a user-assigned managed identity.
6366
[!INCLUDE [code sample for azure openai service](./includes/code-openai-microsoft-entra-id.md)]
6467

@@ -71,6 +74,7 @@ Refer to the steps and code below to connect to Azure OpenAI Service using a use
7174
> | AZURE_OPENAI_KEY | Azure OpenAI Service API key | `<api-key>` |
7275
7376
#### Sample Code
77+
7478
Refer to the steps and code below to connect to Azure OpenAI Service using a connection string.
7579
[!INCLUDE [code sample for azure openai service](./includes/code-openai-secret.md)]
7680

@@ -88,9 +92,8 @@ Refer to the steps and code below to connect to Azure OpenAI Service using a con
8892
Refer to the steps and code below to connect to Azure OpenAI Service using a service principaL.
8993
[!INCLUDE [code sample for azure openai service](./includes/code-openai-microsoft-entra-id.md)]
9094

91-
## Next steps
92-
93-
Follow the tutorial listed below to learn more about Service Connector.
95+
# Related content
9496

95-
> [!div class="nextstepaction"]
96-
> [Learn about Service Connector concepts](./concept-service-connector-internals.md)
97+
* [Connect to Azure OpenAI Service in AKS using Workload Identity](./tutorial-python-aks-openai-workload-identity.md)
98+
* [Connect to an Azure AI multi-service resource](./how-to-integrate-cognitive-services.md)
99+
* [Connect to Azure AI services](./how-to-integrate-ai-services.md)

articles/service-connector/tutorial-python-aks-openai-connection-string.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.topic: tutorial
1212
ms.date: 01/29/2025
1313
---
1414

15-
# Tutorial: Connect to Azure OpenAI Service in AKS using a connection string (preview)
15+
# Tutorial: Connect to Azure OpenAI Service in AKS using a connection string
1616

1717
In this tutorial, you learn how to create a pod in an Azure Kubernetes (AKS) cluster that communicates with Azure OpenAI Service using a connection string. You complete the following tasks:
1818

@@ -109,7 +109,7 @@ In this tutorial, you learn how to create a pod in an Azure Kubernetes (AKS) clu
109109
--anonymous-pull-enabled
110110
```
111111
112-
## Create a service connection in AKS with Service Connector (preview)
112+
## Create a service connection in AKS with Service Connector
113113
114114
Create a service connection between an AKS cluster and Azure OpenAI Service in the Azure portal or the Azure CLI.
115115
@@ -217,6 +217,6 @@ az group delete \
217217

218218
## Related content
219219

220+
* [Connect to Azure OpenAI Service](./how-to-integrate-openai.md)
220221
* [Connect to Azure OpenAI Service in AKS using Workload Identity](./tutorial-python-aks-openai-workload-identity.md)
221-
* [Integrate Azure OpenAI Service with Service Connector](./how-to-integrate-openai.md)
222-
* [Azure AI multi-service resource integration](./how-to-integrate-cognitive-services.md)
222+
* [Connect to an Azure AI multi-service resource](./how-to-integrate-cognitive-services.md)

articles/service-connector/tutorial-python-aks-openai-workload-identity.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Connect to Azure OpenAI in AKS using workload identity.
2+
title: Connect to Azure OpenAI Service in AKS using workload identity
33
titlesuffix: Service Connector
44
description: Learn how to connect to Azure OpenAI Service in Azure Kubernetes Service (AKS) using workload identity and Service Connector.
55
#customerintent: As a developer, I want to connect my AKS resource to Azure OpenAI Service using a workload identity.
@@ -12,7 +12,7 @@ ms.topic: tutorial
1212
ms.date: 01/28/2025
1313
---
1414

15-
# Tutorial: Connect to Azure OpenAI Service in AKS using Workload Identity (preview)
15+
# Tutorial: Connect to Azure OpenAI Service in AKS using Workload Identity
1616

1717
In this tutorial, you learn how to create a pod in an Azure Kubernetes (AKS) cluster that communicates with Azure OpenAI Service using workload identity and Service Connector. In this tutorial, you complete the following tasks:
1818

@@ -117,7 +117,7 @@ You start this tutorial by creating several Azure resources.
117117
--name MyIdentity
118118
```
119119
120-
## Create a service connection in AKS with Service Connector (preview)
120+
## Create a service connection in AKS with Service Connector
121121
122122
Create a service connection between an AKS cluster and Azure OpenAI Service in the Azure portal or the Azure CLI.
123123
@@ -230,6 +230,6 @@ az group delete \
230230

231231
## Related content
232232

233-
* [Integrate Azure AI services with Service Connector](./how-to-integrate-ai-services.md)
234-
* [Integrate Azure OpenAI Service with Service Connector](./how-to-integrate-openai.md)
233+
* [Connect to Azure AI services](./how-to-integrate-ai-services.md)
234+
* [Connect to Azure OpenAI Service with Service Connector](./how-to-integrate-openai.md)
235235
* [Azure AI multi-service resource integration](./how-to-integrate-cognitive-services.md)

0 commit comments

Comments
 (0)