Skip to content

Commit 9e8e438

Browse files
committed
edits
1 parent 3175539 commit 9e8e438

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed
Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Connect Azure OpenAI Service to other Azure services
2+
title: Connect Azure OpenAI Foundry Models to other Azure services
33
titleSuffix: Service Connector
4-
description: In this document, learn how to integrate Azure OpenAI Service into your application with Service Connector
4+
description: In this document, learn how to integrate Azure OpenAI into your application with Service Connector
55
author: wchigit
66
ms.author: wchi
77
ms.service: service-connector
@@ -10,13 +10,13 @@ ms.date: 01/29/2025
1010
ms.collection: ce-skilling-ai-copilot
1111
---
1212

13-
# Connect to Azure OpenAI Service using Service Connector
13+
# Connect to Azure OpenAI Foundry Models using Service Connector
1414

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.
15+
This page provides information about supported authentication methods and clients, along with sample code for connecting Azure OpenAI Foundry Models to other cloud services using Service Connector. This page also lists default environment variable names and values obtained when creating service connections.
1616

1717
## Supported compute services
1818

19-
Service Connector can be used to connect the following compute services to Azure OpenAI Service:
19+
Service Connector can be used to connect the following compute services to Azure OpenAI:
2020

2121
- Azure App Service
2222
- Azure Container Apps
@@ -26,7 +26,7 @@ Service Connector can be used to connect the following compute services to Azure
2626

2727
## Supported authentication types and client types
2828

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

3131

3232
| Client type | System-assigned managed identity | User-assigned managed identity | Secret/connection string | Service principal |
@@ -37,63 +37,63 @@ The table below shows which combinations of authentication methods and clients a
3737
| Python | Yes | Yes | Yes | Yes |
3838
| None | Yes | Yes | Yes | Yes |
3939

40-
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 OpenAI Service using Service Connector.
40+
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 OpenAI using Service Connector.
4141

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

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.
44+
Use the connection details below to connect compute services to Azure OpenAI. For more information about naming conventions, refer to [Service Connector internals](concept-service-connector-internals.md#configuration-naming-convention) article.
4545

4646
### System-assigned managed identity
4747

4848
| Default environment variable name | Description | Sample value |
4949
| --------------------------------- | ---------------------------- | ------------------------------------------------ |
50-
| AZURE_OPENAI_BASE | Azure OpenAI Service endpoint | `https://<Azure-OpenAI-name>.openai.azure.com/` |
50+
| AZURE_OPENAI_BASE | Azure OpenAI endpoint | `https://<Azure-OpenAI-name>.openai.azure.com/` |
5151

5252
#### Sample code
53-
Refer to the steps and code below to connect to Azure OpenAI Service using a system-assigned managed identity.
53+
Refer to the steps and code below to connect to Azure OpenAI using a system-assigned managed identity.
5454
[!INCLUDE [code sample for app config](./includes/code-openai-microsoft-entra-id.md)]
5555

5656
### User-assigned managed identity
5757

5858
| Default environment variable name | Description | Sample value |
5959
| --------------------------------- | -------------------------- | ----------------------------------------------- |
60-
| AZURE_OPENAI_BASE | Azure OpenAI Service Endpoint | `https://<Azure-OpenAI-name>.openai.azure.com/` |
60+
| AZURE_OPENAI_BASE | Azure OpenAI Endpoint | `https://<Azure-OpenAI-name>.openai.azure.com/` |
6161
| AZURE_OPENAI_CLIENTID | Your client ID | `<client-ID>` |
6262

6363
#### Sample code
6464

65-
Refer to the steps and code below to connect to Azure OpenAI Service using a user-assigned managed identity.
65+
Refer to the steps and code below to connect to Azure OpenAI using a user-assigned managed identity.
6666
[!INCLUDE [code sample for azure openai service](./includes/code-openai-microsoft-entra-id.md)]
6767

6868
### Connection string
6969

7070
> [!div class="mx-tdBreakAll"]
7171
> | Default environment variable name | Description | Sample value |
7272
> | --------------------------------- | ------------| ------------ |
73-
> | AZURE_OPENAI_BASE | Azure OpenAI Service Endpoint | `https://<Azure-OpenAI-name>.openai.azure.com/` |
74-
> | AZURE_OPENAI_KEY | Azure OpenAI Service API key | `<api-key>` |
73+
> | AZURE_OPENAI_BASE | Azure OpenAI Endpoint | `https://<Azure-OpenAI-name>.openai.azure.com/` |
74+
> | AZURE_OPENAI_KEY | Azure OpenAI API key | `<api-key>` |
7575
7676
#### Sample Code
7777

78-
Refer to the steps and code below to connect to Azure OpenAI Service using a connection string.
78+
Refer to the steps and code below to connect to Azure OpenAI using a connection string.
7979
[!INCLUDE [code sample for azure openai service](./includes/code-openai-secret.md)]
8080

8181

8282
### Service principal
8383

8484
| Default environment variable name | Description | Sample value |
8585
| ----------------------------------- | -------------------------- | ---------------------------------------------- |
86-
| AZURE_OPENAI_BASE | Azure OpenAI Service Endpoint | `https://<Azure-OpenAI-name>.openai.azure.com/` |
86+
| AZURE_OPENAI_BASE | Azure OpenAI Endpoint | `https://<Azure-OpenAI-name>.openai.azure.com/` |
8787
| AZURE_OPENAI_CLIENTID | Your client ID | `<client-ID>` |
8888
| AZURE_OPENAI_CLIENTSECRET | Your client secret | `<client-secret>` |
8989
| AZURE_OPENAI_TENANTID | Your tenant ID | `<tenant-ID>` |
9090

9191
#### Sample code
92-
Refer to the steps and code below to connect to Azure OpenAI Service using a service principaL.
92+
Refer to the steps and code below to connect to Azure OpenAI using a service principaL.
9393
[!INCLUDE [code sample for azure openai service](./includes/code-openai-microsoft-entra-id.md)]
9494

9595
### Related content
9696

97-
* [Connect to Azure OpenAI Service in AKS using Workload Identity](./tutorial-python-aks-openai-workload-identity.md)
97+
* [Connect to Azure OpenAI in AKS using Workload Identity](./tutorial-python-aks-openai-workload-identity.md)
9898
* [Connect to an Azure AI multi-service resource](./how-to-integrate-cognitive-services.md)
9999
* [Connect to Azure AI services](./how-to-integrate-ai-services.md)

0 commit comments

Comments
 (0)