Skip to content

Commit fab8f29

Browse files
Merge pull request #112036 from diberry/diberry/0420-luis-fresh-1
[Cogsvcs] LUIS - fresh - quickstart - iot app id
2 parents 4da913f + bd2ebd5 commit fab8f29

10 files changed

+18
-25
lines changed

articles/cognitive-services/LUIS/includes/get-started-get-intent-rest-csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ author: diberry
66
manager: nitinme
77
ms.service: cognitive-services
88
ms.topic: include
9-
ms.date: 01/31/2020
9+
ms.date: 04/20/2020
1010
ms.author: diberry
1111
---
1212

1313
## Prerequisites
1414

1515
* [.NET Core V2.2+](https://dotnet.microsoft.com/download)
1616
* [Visual Studio Code](https://code.visualstudio.com/)
17-
* Public app ID: `df67dcdb-c37d-46af-88e1-8b97951ca1c2`
17+
* 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.
1818

1919
## Create LUIS runtime key for predictions
2020

articles/cognitive-services/LUIS/includes/get-started-get-intent-rest-go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ author: diberry
66
manager: nitinme
77
ms.service: cognitive-services
88
ms.topic: include
9-
ms.date: 01/31/2020
9+
ms.date: 04/20/2020
1010
ms.author: diberry
1111
---
1212

1313
## Prerequisites
1414

1515
* [Go](https://golang.org/) programming language
1616
* [Visual Studio Code](https://code.visualstudio.com/)
17-
* Public app ID: `df67dcdb-c37d-46af-88e1-8b97951ca1c2`
17+
* 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.
1818

1919
## Create LUIS runtime key for predictions
2020

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ author: diberry
66
manager: nitinme
77
ms.service: cognitive-services
88
ms.topic: include
9-
ms.date: 01/31/2020
9+
ms.date: 04/20/2020
1010
ms.author: diberry
1111
---
1212
## Prerequisites
1313

1414
* [JDK SE](https://aka.ms/azure-jdks) (Java Development Kit, Standard Edition)
1515
* [Visual Studio Code](https://code.visualstudio.com/) or your favorite IDE
16-
* Public app ID: `df67dcdb-c37d-46af-88e1-8b97951ca1c2`
16+
* 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.
1717

1818
## Create LUIS runtime key for predictions
1919

articles/cognitive-services/LUIS/includes/get-started-get-intent-rest-nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ author: diberry
66
manager: nitinme
77
ms.service: cognitive-services
88
ms.topic: include
9-
ms.date: 01/31/2020
9+
ms.date: 04/20/2020
1010
ms.author: diberry
1111
---
1212

1313
## Prerequisites
1414

1515
* [Node.js](https://nodejs.org/) programming language
1616
* [Visual Studio Code](https://code.visualstudio.com/)
17-
* Public app ID: `df67dcdb-c37d-46af-88e1-8b97951ca1c2`
17+
* 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.
1818

1919
## Create LUIS runtime key for predictions
2020

articles/cognitive-services/LUIS/includes/get-started-get-intent-rest-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ author: diberry
66
manager: nitinme
77
ms.service: cognitive-services
88
ms.topic: include
9-
ms.date: 01/31/2020
9+
ms.date: 04/20/2020
1010
ms.author: diberry
1111
---
1212

1313
## Prerequisites
1414

1515
* [Python 3.6](https://www.python.org/downloads/) or later.
1616
* [Visual Studio Code](https://code.visualstudio.com/)
17-
* Public app ID: `df67dcdb-c37d-46af-88e1-8b97951ca1c2`
17+
* 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.
1818

1919
## Create LUIS runtime key for predictions
2020

articles/cognitive-services/LUIS/includes/sdk-csharp-prediction.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,15 @@ ms.author: diberry
1616
Use the Language Understanding (LUIS) prediction client library for .NET to:
1717

1818
* Get prediction by slot
19+
* Prediction by Version
1920

2021
[Reference documentation](https://docs.microsoft.com/dotnet/api/overview/azure/cognitiveservices/client/languageunderstanding?view=azure-dotnet) | [Library source code](https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/cognitiveservices/Language.LUIS.Runtime) | [Prediction runtime Package (NuGet)](https://www.nuget.org/packages/Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime/) | [C# Samples](https://github.com/Azure-Samples/cognitive-services-quickstart-code/tree/master/dotnet/LanguageUnderstanding/predict-with-sdk-3x)
2122

2223
## Prerequisites
2324

2425
* Language Understanding (LUIS) portal account - [Create one for free](https://www.luis.ai)
2526
* The current version of [.NET Core](https://dotnet.microsoft.com/download/dotnet-core).
26-
27-
Looking for more documentation?
28-
29-
* [SDK reference documentation](https://docs.microsoft.com/dotnet/api/overview/azure/cognitiveservices/client/languageunderstanding?view=azure-dotnet)
27+
* 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.
3028

3129
## Setting up
3230

articles/cognitive-services/LUIS/includes/sdk-nodejs-prediction.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Use the Language Understanding (LUIS) runtime client library for Node.js to:
2222

2323
* Language Understanding runtime resource: [Create one in the Azure portal](https://ms.portal.azure.com/#create/Microsoft.CognitiveServicesLUISAllInOne)
2424
* [Node.js](https://nodejs.org)
25+
* 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.
2526

2627
## Setting up
2728

@@ -31,9 +32,9 @@ Get your [runtime key](../luis-how-to-azure-subscription.md) by creating a LUIS
3132

3233
[!INCLUDE [Set up environment variables for prediction quickstart](sdk-prediction-environment-variables.md)]
3334

34-
### Create a new javascript (Node.js) file
35+
### Create a new JavaScript (Node.js) file
3536

36-
Create a new javascript file in your preferred editor or IDE, named `luis_prediction.js`.
37+
Create a new JavaScript file in your preferred editor or IDE, named `luis_prediction.js`.
3738

3839
### Install the NPM library for the LUIS runtime
3940

articles/cognitive-services/LUIS/includes/sdk-python-prediction.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Use the Language Understanding (LUIS) prediction client library for Python to:
2424

2525
* Language Understanding (LUIS) portal account - [Create one for free](https://www.luis.ai)
2626
* [Python 3.x](https://www.python.org/)
27+
* 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.
2728

2829
## Setting up
2930

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Quickstart: Get intent with REST APIs - LUIS"
33
description: In this REST API quickstart, use an available public LUIS app to determine a user's intention from conversational text.
44
ms.topic: quickstart
5-
ms.date: 02/03/2020
5+
ms.date: 04/20/2020
66

77
zone_pivot_groups: programming-languages-set-one
88
#Customer intent: As an API developer familiar with REST but new to the LUIS service, I want to query the LUIS endpoint of a published model so that I can see the JSON prediction response.

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

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,8 @@
11
---
22
title: "Quickstart: SDK query prediction endpoint - LUIS"
3-
titleSuffix: Azure Cognitive Services
43
description: This quickstart will show you how to use the SDK to send a user utterance to the Azure Cognitive Services LUIS application and receive a prediction.
5-
author: diberry
6-
manager: nitinme
7-
ms.service: cognitive-services
8-
services: cognitive-services
9-
ms.subservice: language-understanding
104
ms.topic: quickstart
11-
ms.date: 01/17/2020
12-
ms.author: diberry
5+
ms.date: 04/20/2020
136
zone_pivot_groups: programming-languages-set-diberry-3core
147
---
158

0 commit comments

Comments
 (0)