You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
23
+
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.
24
24
25
25
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.
26
26
@@ -105,11 +105,11 @@ The OpenAI bindings have an `AIConnectionName` property that you can use to spec
105
105
106
106
| Setting name | Description |
107
107
|---|---|
108
-
|`<CONNECTION_NAME_PREFIX>__endpoint`| Sets the URI endpoint of the Azure OpenAI service. This setting is always required. |
108
+
|`<CONNECTION_NAME_PREFIX>__endpoint`| Sets the URI endpoint of Azure OpenAI. This setting is always required. |
109
109
|`<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. |
110
110
|`<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. |
111
111
|`<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. |
112
-
|`<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. |
112
+
|`<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. |
113
113
114
114
Consider these managed identity connection settings when then `AIConnectionName` property is set to `myAzureOpenAI`:
0 commit comments