Skip to content

Commit 22a1130

Browse files
author
Panu Koponen
committed
Add and update notes about the deprecation of intent recognition
1 parent fd670e3 commit 22a1130

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

articles/ai-services/speech-service/get-started-intent-recognition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ keywords: intent recognition
1616
# Quickstart: Recognize intents with the Speech service and LUIS
1717

1818
> [!IMPORTANT]
19-
> LUIS will be retired on October 1st 2025. As of April 1st 2023 you can't create new LUIS resources. We recommend [migrating your LUIS applications](../language-service/conversational-language-understanding/how-to/migrate-from-luis.md) to [conversational language understanding](../language-service/conversational-language-understanding/overview.md) to benefit from continued product support and multilingual capabilities.
19+
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
2020
>
21-
> Conversational Language Understanding (CLU) is available for C# and C++ with the [Speech SDK](speech-sdk.md) version 1.25 or later. See the [quickstart](get-started-intent-recognition-clu.md) to recognize intents with the Speech SDK and CLU.
21+
> As of April 1st 2023 you can't create new LUIS resources.
2222
2323
::: zone pivot="programming-language-csharp"
2424
[!INCLUDE [C# include](includes/quickstarts/intent-recognition/csharp.md)]

articles/ai-services/speech-service/how-to-use-custom-entity-pattern-matching.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ In this guide, you use the Speech SDK to develop a console application that deri
2828
> - Add custom entities via the Speech SDK API
2929
> - Use asynchronous, event-driven continuous recognition
3030
31+
> [!IMPORTANT]
32+
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
33+
3134
## When to use pattern matching
3235

3336
Use pattern matching if:

articles/ai-services/speech-service/how-to-use-simple-language-pattern-matching.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ In this guide, you use the Speech SDK to develop a C++ console application that
2828
> - Recognize speech from a microphone
2929
> - Use asynchronous, event-driven continuous recognition
3030
31+
> [!IMPORTANT]
32+
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
33+
3134
## When to use pattern matching
3235

3336
Use pattern matching if:

articles/ai-services/speech-service/includes/quickstarts/intent-recognition-clu/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ ms.author: eur
99
In this quickstart, you'll use Speech and Language services to recognize intents from audio data captured from a microphone. Specifically, you'll use the Speech service to recognize speech, and a [Conversational Language Understanding (CLU)](../../../../language-service/conversational-language-understanding/overview.md) model to identify intents.
1010

1111
> [!IMPORTANT]
12-
> Conversational Language Understanding (CLU) is available for C# and C++ with the [Speech SDK](~/articles/ai-services/speech-service/speech-sdk.md) version 1.25 or later.
12+
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
1313

articles/ai-services/speech-service/intent-recognition.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ ms.date: 3/10/2025
1515

1616
In this overview, you learn about the benefits and capabilities of intent recognition. An intent is something the user wants to do: book a flight, check the weather, or make a call. With intent recognition, your applications, tools, and devices can determine what the user wants to initiate or do based on options. You define user intent in the intent recognizer or conversational language understanding (CLU) model.
1717

18+
> [!IMPORTANT]
19+
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
20+
>
21+
> As of April 1st 2023 you can't create new LUIS resources.
22+
1823
## Pattern matching
1924

2025
The Speech SDK provides an embedded pattern matcher that you can use to recognize intents in a strict way. This is useful for when you need a quick offline solution. This works especially well when the user is going to be trained in some way or can be expected to use specific phrases to trigger intents. For example: "Go to floor seven", or "Turn on the lamp" etc. It's recommended to start here and if it no longer meets your needs, switch to using [CLU](#conversational-language-understanding) or a combination of the two.
@@ -38,11 +43,6 @@ Both an AI Foundry resource for Speech and Language resource are required to use
3843
3944
For information about how to use conversational language understanding without the Speech SDK and without speech recognition, see the [Language service documentation](../language-service/conversational-language-understanding/overview.md).
4045

41-
> [!IMPORTANT]
42-
> LUIS will be retired on October 1st 2025. As of April 1st 2023 you can't create new LUIS resources. We recommend [migrating your LUIS applications](../language-service/conversational-language-understanding/how-to/migrate-from-luis.md) to [conversational language understanding](../language-service/conversational-language-understanding/overview.md) to benefit from continued product support and multilingual capabilities.
43-
>
44-
> Conversational Language Understanding (CLU) is available for C# and C++ with the [Speech SDK](speech-sdk.md) version 1.25 or later. See the [quickstart](get-started-intent-recognition-clu.md) to recognize intents with the Speech SDK and CLU.
45-
4646
## Related content
4747

4848
* [Intent recognition with simple pattern matching](how-to-use-simple-language-pattern-matching.md)

articles/ai-services/speech-service/pattern-matching-overview.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ Pattern matching can be customized to group together pattern intents and entitie
1919

2020
For supported locales, see [here](./language-support.md?tabs=intent-recognition).
2121

22+
> [!IMPORTANT]
23+
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
24+
2225
## Patterns vs. Exact Phrases
2326

2427
There are two types of strings used in the pattern matcher: "exact phrases" and "patterns". It's important to understand the differences.

0 commit comments

Comments
 (0)