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
Copy file name to clipboardExpand all lines: articles/ai-services/openai/includes/use-your-data-common-variables.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ You need to retrieve the following information to authenticate your application
15
15
|Variable name | Value |
16
16
|--------------------------|-------------|
17
17
|`AZURE_OPENAI_ENDPOINT`| This value can be found in the **Keys & Endpoint** section when examining your Azure OpenAI resource from the Azure portal. An example endpoint is: `https://my-resoruce.openai.azure.com`.|
18
-
|`AZURE_OPENAI_DEPLOYMENT_ID`| This value corresponds to the custom name you chose for your deployment when you deployed a model. This value can be found under **Resource Management** > **Deployments** in the Azure portal.|
18
+
|`AZURE_OPENAI_DEPLOYMENT_NAME`| This value corresponds to the custom name you chose for your deployment when you deployed a model. This value can be found under **Resource Management** > **Deployments** in the Azure portal.|
19
19
|`AZURE_AI_SEARCH_ENDPOINT`| This value can be found in the **Overview** section when examining your Azure AI Search resource from the Azure portal. |
20
20
|`AZURE_AI_SEARCH_INDEX`| This value corresponds to the name of the index you created to store your data. You can find it in the **Overview** section when examining your Azure AI Search resource from the Azure portal. |
21
21
@@ -27,7 +27,7 @@ Learn more about [keyless authentication](/azure/ai-services/authentication) and
27
27
|--------------------------|-------------|
28
28
|`AZURE_OPENAI_ENDPOINT`| This value can be found in the **Keys & Endpoint** section when examining your Azure OpenAI resource from the Azure portal. An example endpoint is: `https://my-resoruce.openai.azure.com`.|
29
29
|`AZURE_OPENAI_API_KEY`| This value can be found in **Resource management** > **Keys & Endpoint** section when examining your Azure OpenAI resource from the Azure portal. You can use either `KEY1` or `KEY2`. Always having two keys allows you to securely rotate and regenerate keys without causing a service disruption. |
30
-
|`AZURE_OPENAI_DEPLOYMENT_ID`| This value corresponds to the custom name you chose for your deployment when you deployed a model. This value can be found under **Resource Management** > **Deployments** in the Azure portal.|
30
+
|`AZURE_OPENAI_DEPLOYMENT_NAME`| This value corresponds to the custom name you chose for your deployment when you deployed a model. This value can be found under **Resource Management** > **Deployments** in the Azure portal.|
31
31
|`AZURE_AI_SEARCH_ENDPOINT`| This value can be found in the **Overview** section when examining your Azure AI Search resource from the Azure portal. |
32
32
|`AZURE_AI_SEARCH_API_KEY`| This value can be found in the **Settings** > **Keys** section when examining your Azure AI Search resource from the Azure portal. You can use either the primary admin key or secondary admin key. Always having two keys allows you to securely rotate and regenerate keys without causing a service disruption. |
33
33
|`AZURE_AI_SEARCH_INDEX`| This value corresponds to the name of the index you created to store your data. You can find it in the **Overview** section when examining your Azure AI Search resource from the Azure portal. |
Copy file name to clipboardExpand all lines: articles/ai-services/openai/includes/use-your-data-rest.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ To trigger a response from the model, you should end with a user message indicat
20
20
> There are several parameters you can use to change the model's response, such as `temperature` or `top_p`. See the [reference documentation](../reference.md#completions-extensions) for more information.
21
21
22
22
```bash
23
-
curl -i -X POST $AZURE_OPENAI_ENDPOINT/openai/deployments/$AZURE_OPENAI_DEPLOYMENT_ID/chat/completions?api-version=2024-10-21 \
23
+
curl -i -X POST $AZURE_OPENAI_ENDPOINT/openai/deployments/$AZURE_OPENAI_DEPLOYMENT_NAME/chat/completions?api-version=2024-10-21 \
0 commit comments