Skip to content

Commit 32ba1a7

Browse files
rmca14CelesteDG
andauthored
Apply suggestions from code review
Co-authored-by: Celeste de Guzman <[email protected]>
1 parent b0bbf3b commit 32ba1a7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

articles/ai-services/document-intelligence/how-to-guides/build-train-custom-generative-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Once you have your Azure blob storage containers, upload your training data to y
6363

6464
## Azure AI Studio
6565

66-
1. Navigate to the [Azure AI Studio](https://ai.azure.com/?tid=aaaabbbb-0000-cccc-1111-dddd2222eeee). The first time you use the Studio, you need to [initialize your subscription and create a hub](../../../ai-studio/how-to/create-azure-ai-resource.md) before creating a project. Custom generative models are only available in East US and North Central US in preview. Ensure your resource group is set to East US or North Central US during hub creation.
66+
1. Navigate to the [Azure AI Studio](https://ai.azure.com/?tid=72f988bf-86f1-41af-91ab-2d7cd011db47). The first time you use the Studio, you need to [initialize your subscription and create a hub](../../../ai-studio/how-to/create-azure-ai-resource.md) before creating a project. Custom generative models are only available in East US and North Central US in preview. Ensure your resource group is set to East US or North Central US during hub creation.
6767

6868
1. Select the Vision + Document tile.
6969

articles/ai-services/luis/luis-get-started-get-intent-from-browser.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In order to query a public app, you need:
2626
* Your Language Understanding (LUIS) resource information:
2727
* **Prediction key** - which can be obtained from [LUIS Portal](https://www.luis.ai/). If you do not already have a subscription to create a key, you can register for a [free account](https://azure.microsoft.com/free/cognitive-services).
2828
* **Prediction endpoint subdomain** - the subdomain is also the **name** of your LUIS resource.
29-
* A LUIS app ID - use the public IoT app ID of `00001111-aaaa-2222-bbbb-3333cccc4444`. The user query used in the quickstart code is specific to that app. This app should work with any prediction resource other than the Europe or Australia regions, since it uses "westus" as the authoring region.
29+
* A LUIS app ID - use the public IoT app ID of `df67dcdb-c37d-46af-88e1-8b97951ca1c2`. The user query used in the quickstart code is specific to that app. This app should work with any prediction resource other than the Europe or Australia regions, since it uses "westus" as the authoring region.
3030

3131
## Use the browser to see predictions
3232

@@ -103,7 +103,7 @@ In order to query a public app, you need:
103103
Add `show-all-intents=true` to the end of the querystring to **show all intents**, and `verbose=true` to return all detailed information for entities.
104104

105105
`
106-
https://YOUR-LUIS-ENDPOINT-SUBDOMAIN.api.cognitive.microsoft.com/luis/prediction/v3.0/apps/00001111-aaaa-2222-bbbb-3333cccc4444/slots/production/predict?query=turn on all lights&subscription-key=YOUR-LUIS-PREDICTION-KEY&show-all-intents=true&verbose=true
106+
https://YOUR-LUIS-ENDPOINT-SUBDOMAIN.api.cognitive.microsoft.com/luis/prediction/v3.0/apps/df67dcdb-c37d-46af-88e1-8b97951ca1c2/slots/production/predict?query=turn on all lights&subscription-key=YOUR-LUIS-PREDICTION-KEY&show-all-intents=true&verbose=true
107107
`
108108

109109
```JSON
@@ -136,7 +136,7 @@ In order to query a public app, you need:
136136
Add `verbose=true` to the end of the querystring to **show all intents**:
137137

138138
`
139-
https://YOUR-LUIS-ENDPOINT-SUBDOMAIN.api.cognitive.microsoft.com/luis/v2.0/apps/00001111-aaaa-2222-bbbb-3333cccc4444?q=turn on all lights&subscription-key=YOUR-LUIS-PREDICTION-KEY&verbose=true
139+
https://YOUR-LUIS-ENDPOINT-SUBDOMAIN.api.cognitive.microsoft.com/luis/v2.0/apps/df67dcdb-c37d-46af-88e1-8b97951ca1c2?q=turn on all lights&subscription-key=YOUR-LUIS-PREDICTION-KEY&verbose=true
140140
`
141141

142142
```json

articles/ai-services/openai/how-to/quota.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ This is only a subset of the available request body parameters. For the full lis
142142
#### Example request
143143

144144
```Bash
145-
curl -X PUT https://management.azure.com/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/resource-group-temp/providers/Microsoft.CognitiveServices/accounts/docs-openai-test-001/deployments/gpt-35-turbo-test-deployment?api-version=2023-05-01 \
145+
curl -X PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group-temp/providers/Microsoft.CognitiveServices/accounts/docs-openai-test-001/deployments/gpt-35-turbo-test-deployment?api-version=2023-05-01 \
146146
-H "Content-Type: application/json" \
147147
-H 'Authorization: Bearer YOUR_AUTH_TOKEN' \
148148
-d '{"sku":{"name":"Standard","capacity":10},"properties": {"model": {"format": "OpenAI","name": "gpt-35-turbo","version": "0613"}}}'
@@ -175,7 +175,7 @@ GET https://management.azure.com/subscriptions/{subscriptionId}/providers/Micros
175175
#### Example request
176176

177177
```Bash
178-
curl -X GET https://management.azure.com/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/providers/Microsoft.CognitiveServices/locations/eastus/usages?api-version=2023-05-01 \
178+
curl -X GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.CognitiveServices/locations/eastus/usages?api-version=2023-05-01 \
179179
-H "Content-Type: application/json" \
180180
-H 'Authorization: Bearer YOUR_AUTH_TOKEN'
181181
```

articles/ai-services/openai/how-to/working-with-models.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ This is only a subset of the available request body parameters. For the full lis
225225
#### Example request
226226

227227
```Bash
228-
curl -X PUT https://management.azure.com/subscriptions/aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e/resourceGroups/resource-group-temp/providers/Microsoft.CognitiveServices/accounts/docs-openai-test-001/deployments/gpt-35-turbo?api-version=2023-05-01 \
228+
curl -X PUT https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group-temp/providers/Microsoft.CognitiveServices/accounts/docs-openai-test-001/deployments/gpt-35-turbo?api-version=2023-05-01 \
229229
-H "Content-Type: application/json" \
230230
-H 'Authorization: Bearer YOUR_AUTH_TOKEN' \
231231
-d '{"sku":{"name":"Standard","capacity":120},"properties": {"model": {"format": "OpenAI","name": "gpt-35-turbo","version": "0613"},"versionUpgradeOption":"OnceCurrentVersionExpired"}}'

0 commit comments

Comments
 (0)