Skip to content

Commit 1845be4

Browse files
committed
updating links
1 parent 47ad24f commit 1845be4

13 files changed

+31
-33
lines changed

articles/ai-services/LUIS/concepts/utterances.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ If you turn on a normalization setting, scores in the **Test** pane, batch tes
7878

7979
When you clone a version in the LUIS portal, the version settings are kept in the new cloned version.
8080

81-
Set your app's version settings using the LUIS portal by selecting **Manage** from the top navigation menu, in the **Application Settings** page. You can also use the [Update Version Settings API](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/versions-update-application-version-settings). See the [Reference](../luis-reference-application-settings.md) documentation for more information.
81+
Set your app's version settings using the LUIS portal by selecting **Manage** from the top navigation menu, in the **Application Settings** page. You can also use the [Update Version Settings API](/rest/api/cognitiveservices-luis/authoring/versions/update?view=rest-cognitiveservices-luis-authoring-v3.0-preview&tabs=HTTP&preserve-view=true). See the [Reference](../luis-reference-application-settings.md) documentation for more information.
8282

8383
## Word forms
8484

@@ -108,7 +108,7 @@ If you want to ignore specific words or punctuation in patterns, use a [pattern]
108108

109109
## Training with all utterances
110110

111-
Training is generally non-deterministic: utterance prediction can vary slightly across versions or apps. You can remove non-deterministic training by updating the [version settings](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/versions-update-application-version-settings) API with the UseAllTrainingData name/value pair to use all training data.
111+
Training is generally non-deterministic: utterance prediction can vary slightly across versions or apps. You can remove non-deterministic training by updating the [version settings](/rest/api/cognitiveservices-luis/authoring/settings/update?view=rest-cognitiveservices-luis-authoring-v3.0-preview&tabs=HTTP&preserve-view=true) API with the UseAllTrainingData name/value pair to use all training data.
112112

113113
## Testing utterances
114114

articles/ai-services/LUIS/how-to/sign-in.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ There are a couple of ways to create a LUIS app. You can create a LUIS app in th
5555
* Import a LUIS app from a .lu or .json file that already contains intents, utterances, and entities.
5656

5757
**Using the authoring APIs** You can create a new app with the authoring APIs in a couple of ways:
58-
* [Add application](https://westeurope.dev.cognitive.microsoft.com/docs/services/luis-programmatic-apis-v3-0-preview/operations/5890b47c39e2bb052c5b9c2f) - start with an empty app and create intents, utterances, and entities.
59-
* [Add prebuilt application](https://westeurope.dev.cognitive.microsoft.com/docs/services/luis-programmatic-apis-v3-0-preview/operations/59104e515aca2f0b48c76be5) - start with a prebuilt domain, including intents, utterances, and entities.
58+
* [Add application](/rest/api/cognitiveservices-luis/authoring/apps/add?view=rest-cognitiveservices-luis-authoring-v3.0-preview&tabs=HTTP&preserve-view=true) - start with an empty app and create intents, utterances, and entities.
59+
* [Add prebuilt application](/rest/api/cognitiveservices-luis/authoring/apps/add-custom-prebuilt-domain?view=rest-cognitiveservices-luis-authoring-v3.0-preview&tabs=HTTP&preserve-view=true) - start with a prebuilt domain, including intents, utterances, and entities.
6060

6161
## Create new app in LUIS using portal
6262
1. On **My Apps** page, select your **Subscription** , and **Authoring resource** then select **+ New App**.

articles/ai-services/LUIS/how-to/train-test.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ To train your app in the LUIS portal, you only need to select the **Train** butt
4141

4242
Training with the REST APIs is a two-step process.
4343

44-
1. Send an HTTP POST [request for training](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c45).
45-
2. Request the [training status](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/5890b47c39e2bb052c5b9c46) with an HTTP GET request.
44+
1. Send an HTTP POST [request for training](/rest/api/cognitiveservices-luis/authoring/train/train-version?view=rest-cognitiveservices-luis-authoring-v3.0-preview&tabs=HTTP&preserve-view=true).
45+
2. Request the [training status](/rest/api/cognitiveservices-luis/authoring/train/get-status?view=rest-cognitiveservices-luis-authoring-v3.0-preview&tabs=HTTP&preserve-view=true) with an HTTP GET request.
4646

4747
In order to know when training is complete, you must poll the status until all models are successfully trained.
4848

@@ -87,7 +87,7 @@ Inspect the test result details in the **Inspect** panel.
8787
8888
## Change deterministic training settings using the version settings API
8989

90-
Use the [Version settings API](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/versions-update-application-version-settings) with the UseAllTrainingData set to *true* to turn off deterministic training.
90+
Use the [Version settings API](/rest/api/cognitiveservices-luis/authoring/settings/update?view=rest-cognitiveservices-luis-authoring-v3.0-preview&tabs=HTTP&preserve-view=true) with the UseAllTrainingData set to *true* to turn off deterministic training.
9191

9292
## Change deterministic training settings using the LUIS portal
9393

articles/ai-services/LUIS/includes/app-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.custom: include file
55
ms.date: 01/19/2024
66
---
77

8-
Use [app](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/58aeface39e2bb03dcd5909e) APIs to update settings or use the LUIS portal's **Manage** section, **Settings** page.
8+
Use [app](/rest/api/cognitiveservices-luis/authoring/settings/update?view=rest-cognitiveservices-luis-authoring-v3.0-preview&tabs=HTTP&preserve-view=true) APIs to update settings or use the LUIS portal's **Manage** section, **Settings** page.
99

1010

1111
|UI setting|API setting|Information|

articles/ai-services/LUIS/includes/app-version-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ms.custom: include file
55
ms.date: 01/19/2024
66
---
77

8-
Learn [concepts](../concepts/utterances.md#utterance-normalization) of normalization and how to use [version](https://westus.dev.cognitive.microsoft.com/docs/services/5890b47c39e2bb17b84a55ff/operations/versions-update-application-version-settings) APIs to update these settings or use the LUIS portal's **Manage** section, **Settings** page.
8+
Learn [concepts](../concepts/utterances.md#utterance-normalization) of normalization and how to use [version](/rest/api/cognitiveservices-luis/authoring/versions?view=rest-cognitiveservices-luis-authoring-v3.0-preview&preserve-view=true) APIs to update these settings or use the LUIS portal's **Manage** section, **Settings** page.
99

1010

1111
|UI setting|API setting|Information|

articles/ai-services/LUIS/includes/get-started-get-model-rest-csharp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 01/19/2024
1212
ms.custom: devx-track-csharp
1313
---
1414

15-
[Reference documentation](https://westeurope.dev.cognitive.microsoft.com/docs/services/luis-programmatic-apis-v3-0-preview/operations/5890b47c39e2bb052c5b9c45) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/dotnet/LanguageUnderstanding/csharp-model-with-rest/Program.cs)
15+
[Reference documentation](/rest/api/cognitiveservices-luis/?view=rest-cognitiveservices-luis-authoring-v3.0-preview&preserve-view=true) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/dotnet/LanguageUnderstanding/csharp-model-with-rest/Program.cs)
1616

1717
## Prerequisites
1818

articles/ai-services/LUIS/includes/get-started-get-model-rest-go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 01/19/2024
1111

1212
---
1313

14-
[Reference documentation](https://westeurope.dev.cognitive.microsoft.com/docs/services/luis-programmatic-apis-v3-0-preview/operations/5890b47c39e2bb052c5b9c45) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/go/LUIS/go-rest-model/model.go)
14+
[Reference documentation](/rest/api/cognitiveservices-luis/?view=rest-cognitiveservices-luis-authoring-v3.0-preview&preserve-view=true) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/go/LUIS/go-rest-model/model.go)
1515

1616
## Prerequisites
1717

articles/ai-services/LUIS/includes/get-started-get-model-rest-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.custom: devx-track-java
1212

1313
---
1414

15-
[Reference documentation](https://westeurope.dev.cognitive.microsoft.com/docs/services/luis-programmatic-apis-v3-0-preview/operations/5890b47c39e2bb052c5b9c45) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/java/LUIS/java-model-with-rest/Model.java)
15+
[Reference documentation](/rest/api/cognitiveservices-luis/?view=rest-cognitiveservices-luis-authoring-v3.0-preview&preserve-view=true) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/java/LUIS/java-model-with-rest/Model.java)
1616

1717
## Prerequisites
1818

articles/ai-services/LUIS/includes/get-started-get-model-rest-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.date: 01/19/2024
1212
ms.custom: devx-track-js
1313
---
1414

15-
[Reference documentation](https://westeurope.dev.cognitive.microsoft.com/docs/services/luis-programmatic-apis-v3-0-preview/operations/5890b47c39e2bb052c5b9c45) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/javascript/LUIS/node-model-with-rest/model.js)
15+
[Reference documentation](/rest/api/cognitiveservices-luis/?view=rest-cognitiveservices-luis-authoring-v3.0-preview&preserve-view=true) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/javascript/LUIS/node-model-with-rest/model.js)
1616

1717
## Prerequisites
1818

articles/ai-services/LUIS/includes/get-started-get-model-rest-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.date: 01/19/2024
1111

1212
---
1313

14-
[Reference documentation](https://westeurope.dev.cognitive.microsoft.com/docs/services/luis-programmatic-apis-v3-0-preview/operations/5890b47c39e2bb052c5b9c45) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/python/LUIS/python-model-with-rest/model.py)
14+
[Reference documentation](/rest/api/cognitiveservices-luis/?view=rest-cognitiveservices-luis-authoring-v3.0-preview&preserve-view=true) | [Sample](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/python/LUIS/python-model-with-rest/model.py)
1515

1616
## Prerequisites
1717

0 commit comments

Comments
 (0)