Skip to content

Commit b748569

Browse files
Merge pull request #102460 from kraigb/kraigb-zpg-org
Organize and normalize pivot groups
2 parents 6bfe200 + 521fd4e commit b748569

16 files changed

+147
-226
lines changed

articles/cognitive-services/LUIS/get-started-get-model-rest-apis.md

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,31 +20,21 @@ zone_pivot_groups: programming-languages-set-one
2020
In this quickstart, add example utterances to a Travel Agent app and train the app. Example utterances are conversational user text mapped to an intent. By providing example utterances for intents, you teach LUIS what kinds of user-supplied text belongs to which intent.
2121

2222
::: zone pivot="programming-language-csharp"
23-
2423
[!INCLUDE [Get intent with C# and REST](./includes/get-started-get-model-rest-csharp.md)]
25-
2624
::: zone-end
2725

2826
::: zone pivot="programming-language-java"
29-
3027
[!INCLUDE [Get intent with Java and REST](./includes/get-started-get-model-rest-java.md)]
31-
3228
::: zone-end
3329

34-
::: zone pivot="programming-language-python"
35-
36-
[!INCLUDE [Get intent with Python and REST](./includes/get-started-get-model-rest-python.md)]
37-
30+
::: zone pivot="programming-language-go"
31+
[!INCLUDE [Get intent with Go and REST](./includes/get-started-get-model-rest-go.md)]
3832
::: zone-end
3933

40-
::: zone pivot="programming-language-nodejs"
41-
34+
::: zone pivot="programming-language-javascript"
4235
[!INCLUDE [Get intent with Node.js and REST](./includes/get-started-get-model-rest-nodejs.md)]
43-
4436
::: zone-end
4537

46-
::: zone pivot="programming-language-go"
47-
48-
[!INCLUDE [Get intent with Go and REST](./includes/get-started-get-model-rest-go.md)]
49-
50-
::: zone-end
38+
::: zone pivot="programming-language-python"
39+
[!INCLUDE [Get intent with Python and REST](./includes/get-started-get-model-rest-python.md)]
40+
::: zone-end

articles/cognitive-services/LUIS/luis-get-started-get-intent-from-rest.md

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -19,31 +19,22 @@ For this article, you need a free [LUIS](https://www.luis.ai) account.
1919
<a name="create-luis-subscription-key"></a>
2020

2121
::: zone pivot="programming-language-csharp"
22-
2322
[!INCLUDE [Get intent with C# and REST](./includes/get-started-get-intent-rest-csharp.md)]
23+
::: zone-end
2424

25+
::: zone pivot="programming-language-go"
26+
[!INCLUDE [Get intent with Go and REST](./includes/get-started-get-intent-rest-go.md)]
2527
::: zone-end
2628

2729
::: zone pivot="programming-language-java"
28-
2930
[!INCLUDE [Get intent with Java and REST](./includes/get-started-get-intent-rest-java.md)]
31+
::: zone-end
3032

33+
::: zone pivot="programming-language-javascript"
34+
[!INCLUDE [Get intent with Node.js and REST](./includes/get-started-get-intent-rest-nodejs.md)]
3135
::: zone-end
3236

3337
::: zone pivot="programming-language-python"
34-
3538
[!INCLUDE [Get intent with Python and REST](./includes/get-started-get-intent-rest-python.md)]
36-
3739
::: zone-end
3840

39-
::: zone pivot="programming-language-nodejs"
40-
41-
[!INCLUDE [Get intent with Node.js and REST](./includes/get-started-get-intent-rest-nodejs.md)]
42-
43-
::: zone-end
44-
45-
::: zone pivot="programming-language-go"
46-
47-
[!INCLUDE [Get intent with Go and REST](./includes/get-started-get-intent-rest-go.md)]
48-
49-
::: zone-end

articles/cognitive-services/LUIS/sdk-authoring.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ Get started with the Language Understanding (LUIS) client library. Follow these
1313
[!INCLUDE [Get intent with C# SDK](./includes/sdk-csharp-authoring.md)]
1414
::: zone-end
1515

16-
::: zone pivot="programming-language-python"
17-
[!INCLUDE [Get intent with Python SDK](./includes/sdk-python-authoring.md)]
16+
::: zone pivot="programming-language-javascript"
17+
[!INCLUDE [Get intent with Node.js SDK](./includes/sdk-nodejs-authoring.md)]
1818
::: zone-end
1919

20-
21-
::: zone pivot="programming-language-nodejs"
22-
[!INCLUDE [Get intent with Node.js SDK](./includes/sdk-nodejs-authoring.md)]
20+
::: zone pivot="programming-language-python"
21+
[!INCLUDE [Get intent with Python SDK](./includes/sdk-python-authoring.md)]
2322
::: zone-end
2423

2524
## Next steps

articles/cognitive-services/LUIS/sdk-query-prediction-endpoint.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,15 @@ Use the SDK, to send a user utterance to Language Understanding (LUIS) and recei
2121
[!INCLUDE [Get prediction with C# SDK](./includes/sdk-csharp-prediction.md)]
2222
::: zone-end
2323

24-
::: zone pivot="programming-language-python"
25-
[!INCLUDE [Get prediction with Python SDK](./includes/sdk-python-prediction.md)]
26-
::: zone-end
27-
28-
::: zone pivot="programming-language-nodejs"
24+
::: zone pivot="programming-language-javascript"
2925
[!INCLUDE [Get prediction with Node.js SDK](./includes/sdk-nodejs-prediction.md)]
3026
::: zone-end
3127

28+
::: zone pivot="programming-language-python"
29+
[!INCLUDE [Get prediction with Python SDK](./includes/sdk-python-prediction.md)]
30+
::: zone-end
3231

3332
## Next steps
3433

3534
> [!div class="nextstepaction"]
36-
> [Tutorial: Build LUIS app to determine user intentions](luis-quickstart-intents-only.md)
35+
> [Tutorial: Build LUIS app to determine user intentions](luis-quickstart-intents-only.md)

articles/cognitive-services/QnAMaker/Quickstarts/quickstart-sdk.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Get started with the QnA Maker client library. Follow these steps to install the
1414
[!INCLUDE [Get intent with C# and REST](../includes/quickstart-sdk-csharp.md)]
1515
::: zone-end
1616

17-
::: zone pivot="programming-language-python"
18-
[!INCLUDE [Get intent with Python and REST](../includes/quickstart-sdk-python.md)]
17+
::: zone pivot="programming-language-javascript"
18+
[!INCLUDE [Get intent with Node.js and REST](../includes/quickstart-sdk-nodejs.md)]
1919
::: zone-end
2020

21-
::: zone pivot="programming-language-nodejs"
22-
[!INCLUDE [Get intent with Node.js and REST](../includes/quickstart-sdk-nodejs.md)]
21+
::: zone pivot="programming-language-python"
22+
[!INCLUDE [Get intent with Python and REST](../includes/quickstart-sdk-python.md)]
2323
::: zone-end
2424

2525
## Next steps

articles/cognitive-services/Translator/quickstart-detect.md

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,33 +20,23 @@ In this quickstart, you'll learn how to detect the language of provided text wit
2020
This quickstart requires an [Azure Cognitive Services account](https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account) with a Translator Text resource. If you don't have an account, you can use the [free trial](https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
2121

2222
::: zone pivot="programming-language-csharp"
23-
2423
[!INCLUDE [C# quickstart](includes/detect-csharp.md)]
24+
::: zone-end
2525

26+
::: zone pivot="programming-language-go"
27+
[!INCLUDE [Go quickstart](includes/detect-go.md)]
2628
::: zone-end
2729

2830
::: zone pivot="programming-language-java"
29-
3031
[!INCLUDE [Java quickstart](includes/detect-java.md)]
31-
32-
::: zone-end
33-
34-
::: zone pivot="programming-language-python"
35-
36-
[!INCLUDE [Python quickstart](includes/detect-python.md)]
37-
3832
::: zone-end
3933

40-
::: zone pivot="programming-language-nodejs"
41-
34+
::: zone pivot="programming-language-javascript"
4235
[!INCLUDE [Node.js quickstart](includes/detect-nodejs.md)]
43-
4436
::: zone-end
4537

46-
::: zone pivot="programming-language-go"
47-
48-
[!INCLUDE [Go quickstart](includes/detect-go.md)]
49-
38+
::: zone pivot="programming-language-python"
39+
[!INCLUDE [Python quickstart](includes/detect-python.md)]
5040
::: zone-end
5141

5242
## See also

articles/cognitive-services/Translator/quickstart-dictionary.md

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,33 +20,23 @@ In this quickstart, you'll learn how to get alternate translations for a term, a
2020
This quickstart requires an [Azure Cognitive Services account](https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account) with a Translator Text resource. If you don't have an account, you can use the [free trial](https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
2121

2222
::: zone pivot="programming-language-csharp"
23-
2423
[!INCLUDE [C# quickstart](includes/dictionary-csharp.md)]
24+
::: zone-end
2525

26+
::: zone pivot="programming-language-go"
27+
[!INCLUDE [Go quickstart](includes/dictionary-go.md)]
2628
::: zone-end
2729

2830
::: zone pivot="programming-language-java"
29-
3031
[!INCLUDE [Java quickstart](includes/dictionary-java.md)]
31-
32-
::: zone-end
33-
34-
::: zone pivot="programming-language-python"
35-
36-
[!INCLUDE [Python quickstart](includes/dictionary-python.md)]
37-
3832
::: zone-end
3933

40-
::: zone pivot="programming-language-nodejs"
41-
34+
::: zone pivot="programming-language-javascript"
4235
[!INCLUDE [Node.js quickstart](includes/dictionary-nodejs.md)]
43-
4436
::: zone-end
4537

46-
::: zone pivot="programming-language-go"
47-
48-
[!INCLUDE [Go quickstart](includes/dictionary-go.md)]
49-
38+
::: zone pivot="programming-language-python"
39+
[!INCLUDE [Python quickstart](includes/dictionary-python.md)]
5040
::: zone-end
5141

5242
## See also

articles/cognitive-services/Translator/quickstart-languages.md

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,33 +18,23 @@ zone_pivot_groups: programming-languages-set-one
1818
In this quickstart, you get a list of languages supported for translation, transliteration, and dictionary lookup using the Translator Text API.
1919

2020
::: zone pivot="programming-language-csharp"
21-
2221
[!INCLUDE [C# quickstart](includes/languages-csharp.md)]
22+
::: zone-end
2323

24+
::: zone pivot="programming-language-go"
25+
[!INCLUDE [Go quickstart](includes/languages-go.md)]
2426
::: zone-end
2527

2628
::: zone pivot="programming-language-java"
27-
2829
[!INCLUDE [Java quickstart](includes/languages-java.md)]
29-
30-
::: zone-end
31-
32-
::: zone pivot="programming-language-python"
33-
34-
[!INCLUDE [Python quickstart](includes/languages-python.md)]
35-
3630
::: zone-end
3731

38-
::: zone pivot="programming-language-nodejs"
39-
32+
::: zone pivot="programming-language-javascript"
4033
[!INCLUDE [Node.js quickstart](includes/languages-nodejs.md)]
41-
4234
::: zone-end
4335

44-
::: zone pivot="programming-language-go"
45-
46-
[!INCLUDE [Go quickstart](includes/languages-go.md)]
47-
36+
::: zone pivot="programming-language-python"
37+
[!INCLUDE [Python quickstart](includes/languages-python.md)]
4838
::: zone-end
4939

5040
## See also

articles/cognitive-services/Translator/quickstart-sentences.md

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,33 +20,23 @@ In this quickstart, you'll learn how to determine the length of sentences using
2020
This quickstart requires an [Azure Cognitive Services account](https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account) with a Translator Text resource. If you don't have an account, you can use the [free trial](https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
2121

2222
::: zone pivot="programming-language-csharp"
23-
2423
[!INCLUDE [C# quickstart](includes/sentences-csharp.md)]
24+
::: zone-end
2525

26+
::: zone pivot="programming-language-go"
27+
[!INCLUDE [Go quickstart](includes/sentences-go.md)]
2628
::: zone-end
2729

2830
::: zone pivot="programming-language-java"
29-
3031
[!INCLUDE [Java quickstart](includes/sentences-java.md)]
31-
32-
::: zone-end
33-
34-
::: zone pivot="programming-language-python"
35-
36-
[!INCLUDE [Python quickstart](includes/sentences-python.md)]
37-
3832
::: zone-end
3933

40-
::: zone pivot="programming-language-nodejs"
41-
34+
::: zone pivot="programming-language-javascript"
4235
[!INCLUDE [Node.js quickstart](includes/sentences-nodejs.md)]
43-
4436
::: zone-end
4537

46-
::: zone pivot="programming-language-go"
47-
48-
[!INCLUDE [Go quickstart](includes/sentences-go.md)]
49-
38+
::: zone pivot="programming-language-python"
39+
[!INCLUDE [Python quickstart](includes/sentences-python.md)]
5040
::: zone-end
5141

5242
## See also

articles/cognitive-services/Translator/quickstart-translate.md

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -20,33 +20,23 @@ In this quickstart, you'll learn how to translate a text string from English to
2020
This quickstart requires an [Azure Cognitive Services account](https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account) with a Translator Text resource. If you don't have an account, you can use the [free trial](https://azure.microsoft.com/try/cognitive-services/) to get a subscription key.
2121

2222
::: zone pivot="programming-language-csharp"
23-
2423
[!INCLUDE [C# quickstart](includes/translate-csharp.md)]
24+
::: zone-end
2525

26+
::: zone pivot="programming-language-go"
27+
[!INCLUDE [Go quickstart](includes/translate-go.md)]
2628
::: zone-end
2729

2830
::: zone pivot="programming-language-java"
29-
3031
[!INCLUDE [Java quickstart](includes/translate-java.md)]
31-
32-
::: zone-end
33-
34-
::: zone pivot="programming-language-python"
35-
36-
[!INCLUDE [Python quickstart](includes/translate-python.md)]
37-
3832
::: zone-end
3933

40-
::: zone pivot="programming-language-nodejs"
41-
34+
::: zone pivot="programming-language-javascript"
4235
[!INCLUDE [Node.js quickstart](includes/translate-nodejs.md)]
43-
4436
::: zone-end
4537

46-
::: zone pivot="programming-language-go"
47-
48-
[!INCLUDE [Go quickstart](includes/translate-go.md)]
49-
38+
::: zone pivot="programming-language-python"
39+
[!INCLUDE [Python quickstart](includes/translate-python.md)]
5040
::: zone-end
5141

5242
## See also

0 commit comments

Comments
 (0)