Skip to content

Commit 7c0fb88

Browse files
committed
button templates
1 parent 3233350 commit 7c0fb88

6 files changed

+70
-0
lines changed

articles/cognitive-services/Speech-Service/how-to-custom-speech-create-project.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ Here's an example Speech CLI command that creates a project:
4545
spx csr project create --name "My Project" --description "My Project Description" --language "en-US"
4646
```
4747

48+
> [!div class="nextstepaction"]
49+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
50+
4851
You should receive a response body in the following format:
4952

5053
```json
@@ -98,6 +101,9 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
98101
} ' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/projects"
99102
```
100103

104+
> [!div class="nextstepaction"]
105+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
106+
101107
You should receive a response body in the following format:
102108

103109
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-deploy-model.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ Here's an example Speech CLI command to create an endpoint and deploy a model:
7070
spx csr endpoint create --project YourProjectId --model YourModelId --name "My Endpoint" --description "My Endpoint Description" --language "en-US"
7171
```
7272

73+
> [!div class="nextstepaction"]
74+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
75+
7376
You should receive a response body in the following format:
7477

7578
```json
@@ -141,6 +144,9 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
141144
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints"
142145
```
143146

147+
> [!div class="nextstepaction"]
148+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
149+
144150
You should receive a response body in the following format:
145151

146152
```json
@@ -206,6 +212,9 @@ Here's an example Speech CLI command that redeploys the custom endpoint with a n
206212
spx csr endpoint update --endpoint YourEndpointId --model YourModelId
207213
```
208214

215+
> [!div class="nextstepaction"]
216+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
217+
209218
You should receive a response body in the following format:
210219

211220
```json
@@ -262,6 +271,9 @@ curl -v -X PATCH -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content
262271
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints/YourEndpointId"
263272
```
264273

274+
> [!div class="nextstepaction"]
275+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
276+
265277
You should receive a response body in the following format:
266278

267279
```json
@@ -325,6 +337,9 @@ Here's an example Speech CLI command that gets logs for an endpoint:
325337
spx csr endpoint list --endpoint YourEndpointId
326338
```
327339

340+
> [!div class="nextstepaction"]
341+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
342+
328343
The location of each log file with more details are returned in the response body.
329344

330345
::: zone-end
@@ -339,6 +354,9 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
339354
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/endpoints/YourEndpointId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
340355
```
341356

357+
> [!div class="nextstepaction"]
358+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
359+
342360
You should receive a response body in the following format:
343361

344362
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-evaluate-data.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ Here's an example Speech CLI command that creates a test:
6363
spx csr evaluation create --project 9f8c4cbb-f9a5-4ec1-8bb0-53cfa9221226 --dataset be378d9d-a9d7-4d4a-820a-e0432e8678c7 --model1 ff43e922-e3e6-4bf0-8473-55c08fd68048 --model2 1aae1070-7972-47e9-a977-87e3b05c457d --name "My Evaluation" --description "My Evaluation Description"
6464
```
6565

66+
> [!div class="nextstepaction"]
67+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
68+
6669
You should receive a response body in the following format:
6770

6871
```json
@@ -163,6 +166,9 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
163166
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations"
164167
```
165168

169+
> [!div class="nextstepaction"]
170+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
171+
166172
You should receive a response body in the following format:
167173

168174
```json
@@ -252,6 +258,9 @@ Here's an example Speech CLI command that gets test results:
252258
spx csr evaluation status --evaluation 8bfe6b05-f093-4ab4-be7d-180374b751ca
253259
```
254260

261+
> [!div class="nextstepaction"]
262+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
263+
255264
The word error rates and more details are returned in the response body.
256265

257266
You should receive a response body in the following format:
@@ -328,6 +337,9 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
328337
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations/YourEvaluationId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
329338
```
330339

340+
> [!div class="nextstepaction"]
341+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
342+
331343
The word error rates and more details are returned in the response body.
332344

333345
You should receive a response body in the following format:

articles/cognitive-services/Speech-Service/how-to-custom-speech-inspect-data.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,9 @@ Here's an example Speech CLI command that creates a test:
5858
spx csr evaluation create --project 9f8c4cbb-f9a5-4ec1-8bb0-53cfa9221226 --dataset be378d9d-a9d7-4d4a-820a-e0432e8678c7 --model1 ff43e922-e3e6-4bf0-8473-55c08fd68048 --model2 1aae1070-7972-47e9-a977-87e3b05c457d --name "My Inspection" --description "My Inspection Description"
5959
```
6060

61+
> [!div class="nextstepaction"]
62+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
63+
6164
You should receive a response body in the following format:
6265

6366
```json
@@ -154,6 +157,9 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
154157
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations"
155158
```
156159

160+
> [!div class="nextstepaction"]
161+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
162+
157163
You should receive a response body in the following format:
158164

159165
```json
@@ -241,6 +247,9 @@ Here's an example Speech CLI command that gets test results:
241247
spx csr evaluation status --evaluation 8bfe6b05-f093-4ab4-be7d-180374b751ca
242248
```
243249

250+
> [!div class="nextstepaction"]
251+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
252+
244253
The models, audio dataset, transcriptions, and more details are returned in the response body.
245254

246255
You should receive a response body in the following format:
@@ -314,6 +323,9 @@ Make an HTTP GET request using the URI as shown in the following example. Replac
314323
curl -v -X GET "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/evaluations/YourEvaluationId" -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey"
315324
```
316325

326+
> [!div class="nextstepaction"]
327+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
328+
317329
The models, audio dataset, transcriptions, and more details are returned in the response body.
318330

319331
You should receive a response body in the following format:

articles/cognitive-services/Speech-Service/how-to-custom-speech-train-model.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,13 @@ Here's an example Speech CLI command that creates a model with datasets for trai
6767
```azurecli-interactive
6868
spx csr model create --project YourProjectId --name "My Model" --description "My Model Description" --dataset YourDatasetId --language "en-US"
6969
```
70+
7071
> [!NOTE]
7172
> In this example, the `baseModel` isn't set, so the default base model for the locale is used. The base model URI is returned in the response.
7273
74+
> [!div class="nextstepaction"]
75+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
76+
7377
You should receive a response body in the following format:
7478

7579
```json
@@ -152,6 +156,9 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
152156
> [!NOTE]
153157
> In this example, the `baseModel` isn't set, so the default base model for the locale is used. The base model URI is returned in the response.
154158
159+
> [!div class="nextstepaction"]
160+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
161+
155162
You should receive a response body in the following format:
156163

157164
```json
@@ -241,6 +248,9 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
241248
> [!NOTE]
242249
> Only the `targetSubscriptionKey` property in the request body has information about the destination Speech resource.
243250
251+
> [!div class="nextstepaction"]
252+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
253+
244254
You should receive a response body in the following format:
245255

246256
```json
@@ -304,6 +314,9 @@ Here's an example Speech CLI command that connects a model to a project:
304314
spx csr model update --model YourModelId --project YourProjectId
305315
```
306316

317+
> [!div class="nextstepaction"]
318+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
319+
307320
You should receive a response body in the following format:
308321

309322
```json
@@ -338,6 +351,9 @@ curl -v -X PATCH -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content
338351
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/models"
339352
```
340353

354+
> [!div class="nextstepaction"]
355+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
356+
341357
You should receive a response body in the following format:
342358

343359
```json

articles/cognitive-services/Speech-Service/how-to-custom-speech-upload-data.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ Here's an example Speech CLI command that creates a dataset and connects it to a
5656
spx csr dataset create --kind "Acoustic" --name "My Acoustic Dataset" --description "My Acoustic Dataset Description" --project YourProjectId --content YourContentUrl --language "en-US"
5757
```
5858

59+
> [!div class="nextstepaction"]
60+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
61+
5962
You should receive a response body in the following format:
6063

6164
```json
@@ -119,6 +122,9 @@ curl -v -X POST -H "Ocp-Apim-Subscription-Key: YourSubscriptionKey" -H "Content-
119122
}' "https://YourServiceRegion.api.cognitive.microsoft.com/speechtotext/v3.0/datasets"
120123
```
121124

125+
> [!div class="nextstepaction"]
126+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CLI&Pillar=Speech&Product=CustomSpeech&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
127+
122128
You should receive a response body in the following format:
123129

124130
```json

0 commit comments

Comments
 (0)