Skip to content

Commit d4d37a6

Browse files
authored
Merge pull request #42580 from v-geberr/0530-add-intents
rename add-intents
2 parents fc3e502 + a1f2880 commit d4d37a6

10 files changed

+13
-8
lines changed

.openpublishing.redirection.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22030,6 +22030,11 @@
2203022030
"source_path": "articles/java-add-certificate-ca-store.md",
2203122031
"redirect_url": "/java/azure/java-sdk-add-certificate-ca-store",
2203222032
"redirect_document_id": true
22033+
},
22034+
{
22035+
"source_path": "articles/cognitive-services/LUIS/Add-intents.md",
22036+
"redirect_url": "/azure/cognitive-services/LUIS/luis-how-to-add-intents",
22037+
"redirect_document_id": true
2203322038
}
2203422039
]
2203522040
}

articles/cognitive-services/LUIS/Create-new-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ text i'm driving and will be 30 minutes late to the meeting,02/13/2018 15:18:43,
8282

8383
## Next steps
8484

85-
Your first task in the app is to [add intents](Add-intents.md).
85+
Your first task in the app is to [add intents](luis-how-to-add-intents.md).

articles/cognitive-services/LUIS/Home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Create a [new LUIS app](LUIS-get-started-create-app.md).
127127
[speech]:../Speech/index.md
128128
[flow]:https://docs.microsoft.com/connectors/luis/
129129
[entity-concept]:luis-concept-entity-types.md
130-
[add-intents]:Add-intents.md
130+
[add-intents]:luis-how-to-add-intents.md
131131
[add-entities]:luis-how-to-add-entities.md
132132
[authoring-apis]:https://aka.ms/luis-authoring-api
133133
[endpoint-apis]:https://aka.ms/luis-endpoint-apis

articles/cognitive-services/LUIS/luis-concept-intent.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ If reducing the number of intents or dividing your intents into multiple apps do
9595
## Next steps
9696

9797
* Learn more about [entities](luis-concept-entity-types.md), which are important words relevant to intents
98-
* Learn how to [add and manage intents](Add-intents.md) in your LUIS app.
98+
* Learn how to [add and manage intents](luis-how-to-add-intents.md) in your LUIS app.
9999
* Review intent [best practices](luis-concept-best-practices.md)
100100

101101
[LUIS]:luis-reference-regions.md#luis-website

articles/cognitive-services/LUIS/luis-csharp-tutorial-build-bot-framework-sample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ Learn more about [Bot Framework](https://dev.botframework.com/) and the [3.x](ht
155155
Add the LUIS intents and Bot service dialogs for handling **Help**, **Cancel**, and **Greeting** intents. Remember to train, publish and to [build](#build-the-bot) the web app bot. Both LUIS and the bot should have the same intents.
156156

157157
> [!div class="nextstepaction"]
158-
> [Add intents](./add-intents.md)
158+
> [Add intents](./luis-how-to-add-intents.md)
159159
> [Speech priming](https://docs.microsoft.com/bot-framework/bot-service-manage-speech-priming)
160160
<!-- Links -->
161161
[Github-BotFramework-Emulator-Download]: https://aka.ms/bot-framework-emulator

articles/cognitive-services/LUIS/luis-how-to-add-example-utterances.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ See [Add pattern from existing utterance on intent or entity page](luis-how-to-m
173173
If you add the pattern.any entities to your LUIS app, you can't label utterances with these entities. They are only valid in patterns. To learn more about pattern.any entities and how to add them, see [Add entities](luis-how-to-add-entities.md#add-patternany-entities).
174174

175175
<!--
176-
Fix this - moved to add-intents.md - how ?
176+
Fix this - moved to luis-how-to-add-intents.md - how ?
177177
178178
## Search in utterances
179179
## Prediction discrepancy errors
File renamed without changes.

articles/cognitive-services/LUIS/luis-how-to-use-prebuilt-domains.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ms.author: v-geberr
1313

1414
# Use prebuilt domains in LUIS apps
1515

16-
Language Understanding (LUIS) provides *prebuilt domains*, which are prebuilt sets of [intents](Add-intents.md) and [entities](luis-concept-entity-types.md) that work together for domains or common categories of client applications.
16+
Language Understanding (LUIS) provides *prebuilt domains*, which are prebuilt sets of [intents](luis-how-to-add-intents.md) and [entities](luis-concept-entity-types.md) that work together for domains or common categories of client applications.
1717
The prebuilt domains have been pre-trained and are ready for you to add to your LUIS app. The intents and entities in a prebuilt domain are fully customizable once you've added them to your app - you can train them with utterances from your system so they work for your users. You can use an entire prebuilt domain as a starting point for customization, or just borrow a few intents or entities from a prebuilt domain.
1818

1919
Browse the **Prebuilt domains** tab to see other prebuilt domains you can use in your app. Click on the tile for a domain to add it to your app, or click on **Learn more** in its tile to learn about its intents and entities.

articles/cognitive-services/LUIS/luis-nodejs-tutorial-build-bot-framework-sample.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ You can try to add other intents, like Help, Cancel, and Greeting, to the LUIS a
245245
> The default LUIS app that the template created contains example utterances for Cancel, Greeting, and Help intents. In the list of apps, find the app that begins with the name specified in **App name** in the **Bot Service** blade when you created the Bot Service. -->
246246

247247
> [!div class="nextstepaction"]
248-
> [Add intents](./add-intents.md)
248+
> [Add intents](./luis-how-to-add-intents.md)
249249
> [Speech priming](https://docs.microsoft.com/bot-framework/bot-service-manage-speech-priming)
250250
251251

articles/cognitive-services/LUIS/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
- name: Build Model
135135
items:
136136
- name: Add intents
137-
href: Add-intents.md
137+
href: luis-how-to-add-intents.md
138138
- name: Add utterances
139139
href: luis-how-to-add-example-utterances.md
140140
- name: Add entities

0 commit comments

Comments
 (0)