Skip to content

Commit 3f70e3c

Browse files
authored
Merge pull request #301765 from v-albemi/integrate-openai
REBRAND - AI Foundry terms
2 parents f2ebbeb + 55ffcd6 commit 3f70e3c

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 in 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
@@ -11,13 +11,13 @@ ms.update-cycle: 180-days
1111
ms.collection: ce-skilling-ai-copilot
1212
---
1313

14-
# Connect to Azure OpenAI Service using Service Connector
14+
# Connect to Azure OpenAI in Foundry Models using Service Connector
1515

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

1818
## Supported compute services
1919

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

2222
- Azure App Service
2323
- Azure Container Apps
@@ -27,7 +27,7 @@ Service Connector can be used to connect the following compute services to Azure
2727

2828
## Supported authentication types and client types
2929

30-
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.
30+
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.
3131

3232

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

41-
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.
41+
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.
4242

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

45-
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.
45+
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.
4646

4747
### System-assigned managed identity
4848

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

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

5757
### User-assigned managed identity
5858

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

6464
#### Sample code
6565

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

6969
### Connection string
7070

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

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

8282

8383
### Service principal
8484

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

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

9696
### Related content
9797

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

0 commit comments

Comments
 (0)