Skip to content

Commit c35fde5

Browse files
committed
edits
1 parent bfbb26c commit c35fde5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/azure-functions/functions-bindings-openai.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ zone_pivot_groups: programming-languages-set-functions
1919

2020
[!INCLUDE [preview-support](../../includes/functions-openai-support-limitations.md)]
2121

22-
The Azure OpenAI extension for Azure Functions implements a set of triggers and bindings that enable you to easily integrate features and behaviors of [Azure OpenAI Service](/azure/ai-services/openai/overview) into your function code executions.
22+
The Azure OpenAI extension for Azure Functions implements a set of triggers and bindings that enable you to easily integrate features and behaviors of [Azure OpenAI in Foundry Models](/azure/ai-services/openai/overview) into your function code executions.
2323

2424
Azure Functions is an event-driven compute service that provides a set of [triggers and bindings](./functions-triggers-bindings.md) to easily connect with other Azure services.
2525

@@ -104,11 +104,11 @@ The OpenAI bindings have an `AIConnectionName` property that you can use to spec
104104

105105
| Setting name | Description |
106106
|---|---|
107-
| `<CONNECTION_NAME_PREFIX>__endpoint` | Sets the URI endpoint of the Azure OpenAI service. This setting is always required. |
107+
| `<CONNECTION_NAME_PREFIX>__endpoint` | Sets the URI endpoint of Azure OpenAI. This setting is always required. |
108108
| `<CONNECTION_NAME_PREFIX>__clientId` | Sets the specific user-assigned identity to use when obtaining an access token. Requires that `<CONNECTION_NAME_PREFIX>__credential` is set to `managedidentity`. The property accepts a client ID corresponding to a user-assigned identity assigned to the application. It's invalid to specify both a Resource ID and a client ID. If not specified, the system-assigned identity is used. This property is used differently in [local development scenarios](functions-reference.md#local-development-with-identity-based-connections), when `credential` shouldn't be set. |
109109
| `<CONNECTION_NAME_PREFIX>__credential` | Defines how an access token is obtained for the connection. Use `managedidentity` for managed identity authentication. This value is only valid when a managed identity is available in the hosting environment. |
110110
| `<CONNECTION_NAME_PREFIX>__managedIdentityResourceId` | When `credential` is set to `managedidentity`, this property can be set to specify the resource Identifier to be used when obtaining a token. The property accepts a resource identifier corresponding to the resource ID of the user-defined managed identity. It's invalid to specify both a resource ID and a client ID. If neither are specified, the system-assigned identity is used. This property is used differently in [local development scenarios](functions-reference.md#local-development-with-identity-based-connections), when `credential` shouldn't be set. |
111-
| `<CONNECTION_NAME_PREFIX>__key` | Sets the shared secret key required to access the endpoint of the Azure OpenAI service using key-based authentication. As a security best practice, you should always use Microsoft Entra ID with managed identities for authentication. |
111+
| `<CONNECTION_NAME_PREFIX>__key` | Sets the shared secret key required to access the endpoint of Azure OpenAI using key-based authentication. As a security best practice, you should always use Microsoft Entra ID with managed identities for authentication. |
112112

113113
Consider these managed identity connection settings when then `AIConnectionName` property is set to `myAzureOpenAI`:
114114

0 commit comments

Comments
 (0)