Skip to content

Commit 6d761b2

Browse files
committed
AI articles review
1 parent 282d0f7 commit 6d761b2

File tree

4 files changed

+36
-46
lines changed

4 files changed

+36
-46
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ author: wchigit
55
ms.author: wchi
66
ms.service: service-connector
77
ms.topic: how-to
8-
ms.date: 06/14/2024
8+
ms.date: 01/29/2024
99
ms.collection: ce-skilling-ai-copilot
1010
---
1111

1212
# Integrate Azure AI services with Service Connector
1313

14-
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.
14+
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.
1515

1616
## Supported compute services
1717

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

2626
## Supported authentication types and client types
2727

28-
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.
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.
2929

3030

3131
| Client type | System-assigned managed identity | User-assigned managed identity | Secret/connection string | Service principal |
@@ -40,9 +40,9 @@ This table indicates that all combinations of client types and authentication me
4040

4141
## Default environment variable names or application properties and sample code
4242

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

45-
### System-assigned managed identity
45+
### System-assigned managed identity (recommended)
4646

4747
| Default environment variable name | Description | Sample value |
4848
| --------------------------------- | ---------------------------- | ------------------------------------------------ |
@@ -97,9 +97,9 @@ Refer to the steps and code below to connect to Azure AI Services using a connec
9797
Refer to the steps and code below to connect to Azure AI Services using a service principaL.
9898
[!INCLUDE [code sample for azure AI Services](./includes/code-ai-services-microsoft-entra-id.md)]
9999

100-
## Next steps
100+
## Related content
101101

102-
Follow the tutorial listed below to learn more about Service Connector.
103-
104-
> [!div class="nextstepaction"]
105-
> [Learn about Service Connector concepts](./concept-service-connector-internals.md)
102+
* [Azure AI multi-service resource integration](./how-to-integrate-cognitive-services.md)
103+
* [Azure OpenAI Service integration](./how-to-integrate-openai.md)
104+
* [Connect to Azure OpenAI Service in AKS using a Workload Identity](./tutorial-python-aks-openai-workload-identity.md)
105+
* [Learn about Service Connector concepts](./concept-service-connector-internals.md)

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

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ author: wchigit
55
ms.author: wchi
66
ms.service: service-connector
77
ms.topic: how-to
8-
ms.date: 06/14/2024
8+
ms.date: 01/29/2025
99
ms.collection: ce-skilling-ai-copilot
1010
---
1111

1212
# Integrate an Azure AI multi-service resource with Service Connector
1313

14-
This page shows supported authentication methods and clients, and shows sample code you can use to connect an Azure AI multi-service resource to other cloud services using Service Connector. You might still be able to connect to an Azure AI multi-service resource using other methods. This page also shows default environment variable names and values you get when you create the service connection.
14+
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.
1515

1616
## Supported compute services
1717

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

2626
## Supported authentication types and client types
2727

28-
The table below shows 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.
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.
2929

3030

3131
| Client type | System-assigned managed identity | User-assigned managed identity | Secret/connection string | Service principal |
@@ -40,7 +40,7 @@ This table indicates that all combinations of client types and authentication me
4040

4141
## Default environment variable names or application properties and sample code
4242

43-
Use the connection details below to connect compute services to an Azure AI multi-service resource. For more information about naming conventions, check the [Service Connector internals](concept-service-connector-internals.md#configuration-naming-convention) article.
43+
Use the connection details below to connect compute services to an Azure AI multi-service resource. For more information about naming conventions, refer to the [Service Connector internals](concept-service-connector-internals.md#configuration-naming-convention) article.
4444

4545
### System-assigned managed identity
4646

@@ -89,9 +89,8 @@ Refer to the steps and code below to connect to an Azure AI multi-service resour
8989
Refer to the steps and code below to connect to an Azure AI multi-service resource using a service principaL.
9090
[!INCLUDE [code sample for an Azure AI multi-service resource](./includes/code-cognitive-microsoft-entra-id.md)]
9191

92-
## Next steps
92+
## Related content
9393

94-
Follow the tutorial listed below to learn more about Service Connector.
95-
96-
> [!div class="nextstepaction"]
97-
> [Learn about Service Connector concepts](./concept-service-connector-internals.md)
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)
96+
* [Connect to Azure OpenAI Service in AKS using Workload Identity](./tutorial-python-aks-openai-workload-identity.md)

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

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ ms.service: service-connector
99
ms.custom: devx-track-python, build-2024, devx-track-azurecli
1010
ms.collection: ce-skilling-ai-copilot
1111
ms.topic: tutorial
12-
ms.date: 05/07/2024
12+
ms.date: 01/29/2025
1313
---
1414

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

17-
In this tutorial, you learn how to create a pod in an Azure Kubernetes (AKS) cluster, which talks to Azure OpenAI Service using a connection string. You complete the following tasks:
17+
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

1919
> [!div class="checklist"]
2020
>
@@ -140,14 +140,13 @@ Once the connection has been created, you can view its details in the **Service
140140
141141
Use the Azure CLI command to create a service connection to the Azure OpenAI service, providing the following information:
142142
143-
* **Source compute service resource group name:** the resource group name of the AKS cluster.
144-
* **AKS cluster name:** the name of your AKS cluster that connects to the target service.
145-
* **Target service resource group name:** the resource group name of the Azure OpenAI service.
143+
* **Source compute service resource group name:** the name of the resource group containing the AKS cluster.
144+
* **AKS cluster name:** the name of the AKS cluster that connects to the target service.
145+
* **Target service resource group name:** the name of the resource group containing the Azure OpenAI service.
146146
* **OpenAI service name:** the Azure OpenAI service that is connected.
147147
148148
```azurecli
149149
az aks connection create cognitiveservices --secret
150-
151150
```
152151

153152
---
@@ -216,12 +215,8 @@ az group delete \
216215
--resource-group MyResourceGroup
217216
```
218217

219-
## Next steps
220-
221-
Read the following articles to learn more about Service Connector concepts and how it helps AKS connect to Azure services.
222-
223-
> [!div class="nextstepaction"]
224-
> [Learn about Service Connector concepts](./concept-service-connector-internals.md)
218+
## Related content
225219

226-
> [!div class="nextstepaction"]
227-
> [Use Service Connector to connect an AKS cluster to other cloud services](./how-to-use-service-connector-in-aks.md)
220+
* [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)

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

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ ms.service: service-connector
99
ms.custom: devx-track-python, build-2024, devx-track-azurecli
1010
ms.collection: ce-skilling-ai-copilot
1111
ms.topic: tutorial
12-
ms.date: 05/07/2024
12+
ms.date: 01/28/2025
1313
---
1414

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

17-
In this tutorial, you learn how to create a pod in an Azure Kubernetes (AKS) cluster, which talks to Azure OpenAI Service using workload identity and Service Connector. In this tutorial, you complete the following tasks:
17+
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

1919
> [!div class="checklist"]
2020
>
@@ -150,9 +150,9 @@ Once the connection has been created, you can view its details in the **Service
150150
151151
Use the Azure CLI command to create a service connection to the Azure OpenAI service, providing the following information:
152152
153-
* **Source compute service resource group name:** the resource group name of the AKS cluster.
154-
* **AKS cluster name:** the name of your AKS cluster that connects to the target service.
155-
* **Target service resource group name:** the resource group name of the Azure OpenAI service.
153+
* **Source compute service resource group name:** the name of the resource group containing the AKS cluster.
154+
* **AKS cluster name:** the name of the AKS cluster that connects to the target service.
155+
* **Target service resource group name:** the name of the resource group containing the Azure OpenAI service.
156156
* **OpenAI service name:** the Azure OpenAI service that is connected.
157157
* **User-assigned identity resource ID:** the resource ID of the user-assigned identity used to create the workload identity.
158158
@@ -228,12 +228,8 @@ az group delete \
228228
--resource-group MyResourceGroup
229229
```
230230

231-
## Next steps
231+
## Related content
232232

233-
Read the following articles to learn more about Service Connector concepts and how it helps AKS connect to services.
234-
235-
> [!div class="nextstepaction"]
236-
> [Learn about Service Connector concepts](./concept-service-connector-internals.md)
237-
238-
> [!div class="nextstepaction"]
239-
> [Use Service Connector to connect an AKS cluster to other cloud services](./how-to-use-service-connector-in-aks.md)
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)
235+
* [Azure AI multi-service resource integration](./how-to-integrate-cognitive-services.md)

0 commit comments

Comments
 (0)