Skip to content

Commit 0bc45d7

Browse files
authored
Merge pull request #42274 from v-geberr/0525-move-qs-to-tutorial
move quickstarts to tutorials - part of new Azure standards alignment…
2 parents 9caba27 + f58f802 commit 0bc45d7

16 files changed

+244
-104
lines changed

.openpublishing.redirection.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21940,6 +21940,41 @@
2194021940
"source_path": "articles/security/azure-security-getting-started.md",
2194121941
"redirect_url": "https://docs.microsoft.com/azure/security",
2194221942
"redirect_document_id": true
21943+
},
21944+
{
21945+
"source_path": "articles/cognitive-services/LUIS/luis-quickstart-cs-add-utterance.md",
21946+
"redirect_url": "/azure/cognitive-services/LUIS/luis-get-started-cs-add-utterance",
21947+
"redirect_document_id": true
21948+
},
21949+
{
21950+
"source_path": "articles/cognitive-services/LUIS/luis-quickstart-java-add-utterance.md",
21951+
"redirect_url": "/azure/cognitive-services/LUIS/luis-get-started-java-add-utterance",
21952+
"redirect_document_id": true
21953+
},
21954+
{
21955+
"source_path": "articles/cognitive-services/LUIS/luis-quickstart-javascript-add-utterance.md",
21956+
"redirect_url": "/azure/cognitive-services/LUIS/luis-get-started-javascript-add-utterance",
21957+
"redirect_document_id": true
21958+
},
21959+
{
21960+
"source_path": "articles/cognitive-services/LUIS/luis-quickstart-node-add-utterance.md",
21961+
"redirect_url": "/azure/cognitive-services/LUIS/luis-get-started-node-add-utterance",
21962+
"redirect_document_id": true
21963+
},
21964+
{
21965+
"source_path": "articles/cognitive-services/LUIS/luis-quickstart-php-add-utterance.md",
21966+
"redirect_url": "/azure/cognitive-services/LUIS/luis-get-started-php-add-utterance",
21967+
"redirect_document_id": true
21968+
},
21969+
{
21970+
"source_path": "articles/cognitive-services/LUIS/luis-quickstart-python-add-utterance.md",
21971+
"redirect_url": "/azure/cognitive-services/LUIS/luis-get-started-python-add-utterance",
21972+
"redirect_document_id": true
21973+
},
21974+
{
21975+
"source_path": "articles/cognitive-services/LUIS/luis-quickstart-ruby-add-utterance.md",
21976+
"redirect_url": "/azure/cognitive-services/LUIS/luis-get-started-ruby-add-utterance",
21977+
"redirect_document_id": true
2194321978
}
2194421979
]
2194521980
}

articles/cognitive-services/LUIS/luis-quickstart-cs-add-utterance.md renamed to articles/cognitive-services/LUIS/luis-get-started-cs-add-utterance.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
---
2-
title: Add utterances to a LUIS app using C# | Microsoft Docs
3-
description: Learn to call a LUIS app using C# in this quickstart.
2+
title: Tutorial learning how to add utterances to a LUIS app using C# | Microsoft Docs
3+
description: In this tutorial, you learn to call a LUIS app using C# in this quickstart.
44
services: cognitive-services
55
author: v-geberr
66
manager: kaiqb
77
ms.service: cognitive-services
88
ms.component: language-understanding
9-
ms.topic: quickstart
9+
ms.topic: tutorial
1010
ms.date: 02/20/2018
1111
ms.author: v-geberr
1212
#Customer intent: As a developer new to LUIS, I want to add an utterance to the LUIS app model using C#.
1313
---
1414

15-
# Quickstart: Add utterances to a LUIS app using C#
15+
# Tutorial: Add utterances to a LUIS app using C#
1616
In this quickstart, write a program to add an utterance to an intent using the Authoring APIs in C#.
1717

18-
For more information, see the technical documentation for the [add utterance](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08), [train](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45), and [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) APIs.
18+
<!-- green checkmark -->
19+
> [!div class="checklist"]
20+
> * Create Visual Studio console project
21+
> * Add method to call LUIS API to add utterance and train app
22+
> * Add JSON file with example utterances for BookFlight intent
23+
> * Run console and see training status for utterances
24+
25+
For more information, see the technical documentation for the [add example utterance to intent](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08), [train](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45), and [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) APIs.
1926

2027
For this article, you need a free [LUIS][LUIS] account in order to author your LUIS application.
2128

@@ -30,7 +37,6 @@ For this article, you need a free [LUIS][LUIS] account in order to author your L
3037
> [!NOTE]
3138
> The complete C# solution including an example `utterances.json` file are available from the [**LUIS-Samples** Github repository](https://github.com/Microsoft/LUIS-Samples/blob/master/documentation-samples/authoring-api-samples/csharp/).
3239
33-
3440
## Create the project in Visual Studio
3541

3642
In Visual Studio, create a new **Windows Classic Desktop Console** app using the .Net Framework.
@@ -297,12 +303,11 @@ Requested training status.
297303
]
298304
```
299305

300-
## Next steps
306+
## Clean up resources
307+
When you are done with the tutorial, remove Visual Studio and the console application if you don't need them anymore.
301308

302-
309+
## Next steps
303310
> [!div class="nextstepaction"]
304311
> [Build a LUIS app programmatically](luis-tutorial-node-import-utterances-csv.md)
305312
306-
> [Authoring APIs](https://aka.ms/luis-authoring-api)
307-
308313
[LUIS]: luis-reference-regions.md#luis-website

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

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,31 @@
11
---
2-
title: Call a Language Understanding (LUIS) app using C# | Microsoft Docs
3-
description: Learn to call a LUIS app using C# in this quickstart.
2+
title: Tutorial learning how to call a Language Understanding (LUIS) app using C# | Microsoft Docs
3+
description: In this tutorial, you learn to call a LUIS app using C# in this quickstart.
44
services: cognitive-services
55
author: v-geberr
66
manager: kaiqb
77
ms.service: cognitive-services
88
ms.component: language-understanding
9-
ms.topic: quickstart
9+
ms.topic: tutorial
1010
ms.date: 12/13/2017
1111
ms.author: v-geberr
1212
#Customer intent: As a developer new to LUIS, I want to query the endpoint of a published model using C#.
1313
---
1414

15-
# Quickstart: Call a LUIS endpoint using C#
15+
# Tutorial: Call a LUIS endpoint using C#
1616

1717
Pass utterances to a LUIS endpoint and get intent and entities back.
1818

19+
<!-- green checkmark -->
20+
> [!div class="checklist"]
21+
> * Create LUIS subscription and copy key value for later use
22+
> * View LUIS endpoint results from browser to public sample IoT app
23+
> * Create Visual Studio C# console app to make HTTPS call to LUIS endpoint
24+
25+
<!-- link to free account -->
1926
For this article, you need a free [LUIS][LUIS] account in order to author your LUIS application.
2027

21-
## Before you begin
28+
## Create LUIS subscription key
2229
1. You first need to create a [Cognitive Services API account](https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account) in the Azure portal. If you don't have an Azure subscription, create a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
2330

2431
2. Log in to the Azure portal at https://portal.azure.com.
@@ -57,6 +64,9 @@ You can use C# to access the same results you saw in the browser window in the p
5764

5865
![Console window displays JSON result from LUIS](./media/luis-get-started-cs-get-intent/console-turn-on.png)
5966

67+
## Clean up resources
68+
The two resources created in this tutorial are the LUIS subscription key and the C# project. Delete the LUIS subscription key from the Azure portal. Close the Visual Studio project and remove the directory from the file system.
69+
6070
## Next steps
6171
> [!div class="nextstepaction"]
6272
> [Add utterances](luis-quickstart-cs-add-utterance.md)

articles/cognitive-services/LUIS/luis-quickstart-java-add-utterance.md renamed to articles/cognitive-services/LUIS/luis-get-started-java-add-utterance.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
11
---
2-
title: Add utterances to a LUIS app using Java | Microsoft Docs
3-
description: Learn to call a LUIS app using Java in this quickstart.
2+
title: Tutorial learning how to add utterances to a LUIS app using Java | Microsoft Docs
3+
description: In this tutorial, you learn to call a LUIS app using Java in this quickstart.
44
services: cognitive-services
55
author: v-geberr
66
manager: kaiqb
77
ms.service: cognitive-services
88
ms.component: language-understanding
9-
ms.topic: quickstart
9+
ms.topic: tutorial
1010
ms.date: 12/13/2017
1111
ms.author: v-geberr
1212
#Customer intent: As a developer new to LUIS, I want to add an utterance to the LUIS app model using Java.
1313
---
1414

15-
# Quickstart: Add utterances to app using Java
15+
# Tutorial: Add utterances to app using Java
1616
In this quickstart, write a program to add an utterance to an intent using the Authoring APIs in Java.
1717

18-
For more information, refer to the technical documentation for the [add utterance](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08), [train](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45), and [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) APIs.
18+
<!-- green checkmark -->
19+
> [!div class="checklist"]
20+
> * Create Visual Studio console project
21+
> * Add method to call LUIS API to add utterance and train app
22+
> * Add JSON file with example utterances for BookFlight intent
23+
> * Run console and see training status for utterances
24+
25+
For more information, see the technical documentation for the [add example utterance to intent](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08), [train](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45), and [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) APIs.
1926

2027
For this article, you need a free [LUIS][LUIS] account in order to author your LUIS application.
2128

@@ -171,12 +178,11 @@ Call the app with the `-status` argument to check the training status and write
171178
> java -classpath .;gson-2.8.2.jar AddUtterances -status
172179
````
173180

174-
## Next steps
181+
## Clean up resources
182+
When you are done with the tutorial, remove Visual Studio and the console application if you don't need them anymore.
175183

184+
## Next steps
176185
> [!div class="nextstepaction"]
177186
> [Build a LUIS app programmatically](luis-tutorial-node-import-utterances-csv.md)
178187
179-
> [Authoring APIs](https://aka.ms/luis-authoring-api)
180-
181-
182188
[LUIS]: luis-reference-regions.md#luis-website

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

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,29 @@
11
---
2-
title: Call a Language Understanding (LUIS) app using Java | Microsoft Docs
3-
description: Learn to call a LUIS app using Java in this quickstart.
2+
title: Tutorial learning how to call a Language Understanding (LUIS) app using Java | Microsoft Docs
3+
description: In this tutorial, you learn to call a LUIS app using Java in this quickstart.
44
services: cognitive-services
55
author: v-geberr
66
manager: kaiqb
77
ms.service: cognitive-services
88
ms.component: language-understanding
9-
ms.topic: quickstart
9+
ms.topic: tutorial
1010
ms.date: 12/13/2017
1111
ms.author: v-geberr
1212
#Customer intent: As a developer new to LUIS, I want to query the endpoint of a published model using Java.
13-
1413
---
1514

16-
# Quickstart: Call a LUIS endpoint using Java
15+
# Tutorial: Call a LUIS endpoint using Java
1716
Pass utterances to a LUIS endpoint and get intent and entities back.
1817

18+
<!-- green checkmark -->
19+
> [!div class="checklist"]
20+
> * Create LUIS subscription and copy key value for later use
21+
> * View LUIS endpoint results from browser to public sample IoT app
22+
> * Create Visual Studio C# console app to make HTTPS call to LUIS endpoint
23+
1924
For this article, you need a free [LUIS][LUIS] account in order to author your LUIS application.
2025

21-
## Before you begin
26+
## Create LUIS subscription key
2227
You need a Cognitive Services API key to make calls to the sample LUIS app used in this walkthrough.
2328

2429
To get an API key, follow these steps:
@@ -59,6 +64,9 @@ You can use Java to access the same results you saw in the browser window in the
5964

6065
![Console window displays JSON result from LUIS](./media/luis-get-started-java-get-intent/console-turn-on.png)
6166

67+
## Clean up resources
68+
The two resources created in this tutorial are the LUIS subscription key and the C# project. Delete the LUIS subscription key from the Azure portal. Close the Visual Studio project and remove the directory from the file system.
69+
6270
## Next steps
6371
> [!div class="nextstepaction"]
6472
> [Add utterances](luis-quickstart-java-add-utterance.md)

articles/cognitive-services/LUIS/luis-quickstart-javascript-add-utterance.md renamed to articles/cognitive-services/LUIS/luis-get-started-javascript-add-utterance.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,27 @@
11
---
2-
title: Add utterances to a LUIS app using JavaScript | Microsoft Docs
3-
description: Learn to call a LUIS app using JavaScript in this quickstart.
2+
title: Tutorial learning how to add utterances to a LUIS app using JavaScript | Microsoft Docs
3+
description: In this tutorial, you learn to call a LUIS app using JavaScript in this quickstart.
44
services: cognitive-services
55
author: v-geberr
66
manager: kaiqb
77
ms.service: cognitive-services
88
ms.component: language-understanding
9-
ms.topic: quickstart
9+
ms.topic: tutorial
1010
ms.date: 12/18/2017
1111
ms.author: v-geberr
1212
#Customer intent: As a developer new to LUIS, I want to add an utterance to the LUIS app model using Javascript.
1313
---
14-
# Quickstart: Add utterances to app using JavaScript
14+
# Tutorial: Add utterances to app using JavaScript
1515
In this quickstart, write a program to add an utterance to an intent using the Authoring APIs in Javascript.
1616

17-
For more information, see the technical documentation for the [add utterance](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08), [train](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45), and [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) APIs.
17+
<!-- green checkmark -->
18+
> [!div class="checklist"]
19+
> * Create Visual Studio console project
20+
> * Add method to call LUIS API to add utterance and train app
21+
> * Add JSON file with example utterances for BookFlight intent
22+
> * Run console and see training status for utterances
23+
24+
For more information, see the technical documentation for the [add example utterance to intent](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08), [train](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45), and [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) APIs.
1825

1926
For this article, you need a free [LUIS][LUIS] account in order to author your LUIS application.
2027

@@ -70,6 +77,9 @@ Create `add-utterances.html` and add the following code:
7077

7178
![Add-utterances.html](./media/luis-quickstart-javascript-add-utterance/add-utterance.png)
7279

80+
## Clean up resources
81+
When you are done with the tutorial, remove Visual Studio and the console application if you don't need them anymore.
82+
7383
## Next steps
7484
> [!div class="nextstepaction"]
7585
> [Integrate LUIS with a bot](luis-csharp-tutorial-build-bot-framework-sample.md)

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

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Call a Language Understanding (LUIS) app using Node.js | Microsoft Docs
3-
description: Learn to call a LUIS app using Node.js in this quickstart.
2+
title: Tutorial learning how to call a Language Understanding (LUIS) app using Node.js | Microsoft Docs
3+
description: In this tutorial, you learn to call a LUIS app using Node.js in this quickstart.
44
services: cognitive-services
55
author: v-geberr
66
manager: kaiqb
@@ -12,12 +12,18 @@ ms.author: v-geberr
1212
#Customer intent: As a developer new to LUIS, I want to query the endpoint of a published model using Javascript.
1313
---
1414

15-
# Quickstart: Call a LUIS endpoint using JavaScript
15+
# Tutorial: Call a LUIS endpoint using JavaScript
1616
Pass utterances to a LUIS endpoint and get intent and entities back.
1717

18+
<!-- green checkmark -->
19+
> [!div class="checklist"]
20+
> * Create LUIS subscription and copy key value for later use
21+
> * View LUIS endpoint results from browser to public sample IoT app
22+
> * Create Visual Studio C# console app to make HTTPS call to LUIS endpoint
23+
1824
For this article, you need a free [LUIS][LUIS] account in order to author your LUIS application.
1925

20-
## Before you begin
26+
## Create LUIS subscription key
2127
You need a Cognitive Services API key to make calls to the sample LUIS app used in this walkthrough.
2228

2329
To get an API key, follow these steps:
@@ -59,6 +65,9 @@ You can use JavaScript to access the same results you saw in the browser window
5965

6066
![Popup that says TurnOn](./media/luis-get-started-node-get-intent/popup-turn-on.png)
6167

68+
## Clean up resources
69+
The two resources created in this tutorial are the LUIS subscription key and the C# project. Delete the LUIS subscription key from the Azure portal. Close the Visual Studio project and remove the directory from the file system.
70+
6271
## Next steps
6372
> [!div class="nextstepaction"]
6473
> [Add utterances](luis-quickstart-javascript-add-utterance.md)

articles/cognitive-services/LUIS/luis-quickstart-node-add-utterance.md renamed to articles/cognitive-services/LUIS/luis-get-started-node-add-utterance.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
11
---
2-
title: Add utterances to a LUIS app using Node.js | Microsoft Docs
3-
description: Learn to call a LUIS app using Node.js in this quickstart.
2+
title: Tutorial learning how to add utterances to a LUIS app using Node.js | Microsoft Docs
3+
description: In this tutorial, you learn to call a LUIS app using Node.js in this quickstart.
44
services: cognitive-services
55
author: v-geberr
66
manager: kaiqb
77
ms.service: cognitive-services
88
ms.component: language-understanding
9-
ms.topic: quickstart
9+
ms.topic: tutorial
1010
ms.date: 12/13/2017
1111
ms.author: v-geberr
1212
#Customer intent: As a developer new to LUIS, I want to add an utterance to the LUIS app model using Node.js.
1313
---
1414

15-
# Quickstart: Add utterances app using Node.js
15+
# Tutorial: Add utterances app using Node.js
1616
In this quickstart, you write a program to add an utterance to an intent using the Authoring APIs in Node.js.
1717

18+
<!-- green checkmark -->
19+
> [!div class="checklist"]
20+
> * Create Visual Studio console project
21+
> * Add method to call LUIS API to add utterance and train app
22+
> * Add JSON file with example utterances for BookFlight intent
23+
> * Run console and see training status for utterances
1824
1925
For more information,
20-
refer to the technical documentation for the [add utterance](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08), [train](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45), and [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) APIs.
26+
refer to the technical documentation for the [add example utterance to intent](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c08), [train](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45), and [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) APIs.
2127

2228
For this article, you need a free [LUIS][LUIS] account in order to author your LUIS application.
2329

@@ -171,12 +177,11 @@ Call the sample with the `-status` argument to check the training status and wri
171177
> node add-utterances.js -status
172178
````
173179

174-
## Next steps
180+
## Clean up resources
181+
When you are done with the tutorial, remove Visual Studio and the console application if you don't need them anymore.
175182

176-
183+
## Next steps
177184
> [!div class="nextstepaction"]
178185
> [Build a LUIS app programmatically](luis-tutorial-node-import-utterances-csv.md)
179186
180-
> [Authoring APIs](https://aka.ms/luis-authoring-api)
181-
182187
[LUIS]: luis-reference-regions.md#luis-website

0 commit comments

Comments
 (0)