Skip to content

Commit ddb5925

Browse files
author
Panu Koponen
committed
Revert "Add and update notes about the deprecation of intent recognition"
This reverts commit 22a1130.
1 parent 96ed493 commit ddb5925

File tree

6 files changed

+8
-17
lines changed

6 files changed

+8
-17
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, deprecation
1616
# Quickstart: Recognize intents with the Speech service and LUIS
1717

1818
> [!IMPORTANT]
19-
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
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.
2020
>
21-
> As of April 1st 2023 you can't create new LUIS resources.
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.
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: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ In this guide, you use the Speech SDK to develop a console application that deri
3030
> - Add custom entities via the Speech SDK API
3131
> - Use asynchronous, event-driven continuous recognition
3232
33-
> [!IMPORTANT]
34-
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
35-
3633
## When to use pattern matching
3734

3835
Use pattern matching if:

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

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

3835
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-
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
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.
1313

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

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

1818
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.
1919

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

2722
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.
@@ -45,6 +40,11 @@ Both an AI Foundry resource for Speech and Language resource are required to use
4540
4641
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).
4742

43+
> [!IMPORTANT]
44+
> 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.
45+
>
46+
> 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.
47+
4848
## Related content
4949

5050
* [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: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ Pattern matching can be customized to group together pattern intents and entitie
2121

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

24-
> [!IMPORTANT]
25-
> Intent recognition services will be retired on October 1st 2025. The IntentRecognizer API in the Speech SDK will be deprecated shortly after.
26-
2724
## Patterns vs. Exact Phrases
2825

2926
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)