Skip to content

Commit 6e5175b

Browse files
Merge pull request #7321 from laujan/492660-add-important-alert
add alert notice
2 parents 5dd5493 + 2bf95a1 commit 6e5175b

File tree

5 files changed

+30
-10
lines changed

5 files changed

+30
-10
lines changed

articles/ai-services/language-service/entity-linking/how-to/call-api.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,18 @@ author: laujan
66
manager: nitinme
77
ms.service: azure-ai-language
88
ms.topic: how-to
9-
ms.date: 06/21/2025
9+
ms.date: 09/26/2025
1010
ms.author: lajanuar
1111
ms.custom: language-service-entity-linking
1212
---
1313

1414
# How to use entity linking
1515

16-
The entity linking feature can be used to identify and disambiguate the identity of an entity found in text (for example, determining whether an occurrence of the word "*Mars*" refers to the planet, or to the Roman god of war). It will return the entities in the text with links to [Wikipedia](https://www.wikipedia.org/) as a knowledge base.
16+
> [!IMPORTANT]
17+
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. After this date, the Entity Linking feature is no longer supported. During the support window, we recommend that users migrate existing workloads and direct all new projects to Azure AI Language [**Named Entity Recognition**](../../named-entity-recognition/overview.md) or consider other alternative solutions.
18+
19+
20+
The entity linking feature enables the detection and clarification of the specific identity of entities mentioned within text. For instance, it can determine whether the term "Mars" refers to the planet or to the Roman god of war. This capability helps eliminate ambiguity by associating each entity with the correct context. It returns the entities in the text with links to [Wikipedia](https://www.wikipedia.org/) as a knowledge base.
1721

1822

1923
## Development options
@@ -24,20 +28,20 @@ The entity linking feature can be used to identify and disambiguate the identity
2428

2529
### Specify the entity linking model
2630

27-
By default, entity linking will use the latest available AI model on your text. You can also configure your API requests to use a specific [model version](../../concepts/model-lifecycle.md).
31+
By default, entity linking uses the latest available AI model on your text. You can also configure your API requests to use a specific [model version](../../concepts/model-lifecycle.md).
2832

2933
### Input languages
3034

31-
When you submit documents to be processed by entity linking, you can specify which of [the supported languages](../language-support.md) they're written in. if you don't specify a language, entity linking will default to English. Due to [multilingual and emoji support](../../concepts/multilingual-emoji-support.md), the response may contain text offsets.
35+
When you submit documents to for entity linking processing, you can specify which of [the supported languages](../language-support.md) they're written in. If you don't specify a language, entity linking defaults to English. Due to [multilingual and emoji support](../../concepts/multilingual-emoji-support.md), the response may contain text offsets.
3236

3337
## Submitting data
3438

35-
Entity linking produces a higher-quality result when you give it smaller amounts of text to work on. This is opposite from some features, like key phrase extraction which performs better on larger blocks of text. To get the best results from both operations, consider restructuring the inputs accordingly.
39+
Entity linking produces a higher-quality result when you give it smaller amounts of text to work on. This characteristic is opposite from some features, like key phrase extraction that performs better on larger blocks of text. To get the best results from both operations, consider restructuring the inputs accordingly.
3640

37-
To send an API request, you will need a Language resource endpoint and key.
41+
To send an API request, you need a Language resource endpoint and API key.
3842

3943
> [!NOTE]
40-
> You can find the key and endpoint for your Language resource on the Azure portal. They will be located on the resource's **Key and endpoint** page, under **resource management**.
44+
> You can find the key and endpoint for your Language resource on the Azure portal. They're located on the resource's **Key and endpoint** page, under **resource management**.
4145
4246
Analysis is performed upon receipt of the request. Using entity linking synchronously is stateless. No data is stored in your account, and results are returned immediately in the response.
4347

articles/ai-services/language-service/entity-linking/language-support.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ ms.custom: language-service-entity-linking
1313

1414
# Entity linking language support
1515

16+
> [!IMPORTANT]
17+
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. After this date, the Entity Linking feature is no longer supported. During the support window, we recommend that users migrate existing workloads and direct all new projects to Azure AI Language [**Named Entity Recognition**](../named-entity-recognition/overview.md) or consider other alternative solutions.
18+
19+
1620
| Language | Language code | Notes |
1721
|:---------|:-------------:|:-----:|
1822
| English | `en` | |

articles/ai-services/language-service/entity-linking/overview.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ ms.custom: language-service-entity-linking
1313

1414
# What is entity linking in Azure AI Language?
1515

16+
> [!IMPORTANT]
17+
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. After this date, the Entity Linking feature is no longer supported. During the support window, we recommend that users migrate existing workloads and direct all new projects to Azure AI Language [**Named Entity Recognition**](../named-entity-recognition/overview.md) or consider other alternative solutions.
18+
19+
1620
Entity linking is one of the features offered by [Azure AI Language](../overview.md), a collection of machine learning and AI algorithms in the cloud for developing intelligent applications that involve written language. Entity linking identifies and disambiguates the identity of entities found in text. For example, in the sentence "*We went to Seattle last week.*", the word "*Seattle*" would be identified, with a link to more information on Wikipedia.
1721

1822
This documentation contains the following types of articles:

articles/ai-services/language-service/entity-linking/quickstart.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: laujan
66
manager: nitinme
77
ms.service: azure-ai-language
88
ms.topic: quickstart
9-
ms.date: 06/21/2025
9+
ms.date: 09/26/2025
1010
ms.author: lajanuar
1111
ms.devlang: csharp
1212
# ms.devlang: csharp, java, javascript, python
@@ -17,6 +17,10 @@ zone_pivot_groups: programming-languages-entity-linking
1717

1818
# Quickstart: Entity Linking using the client library and REST API
1919

20+
> [!IMPORTANT]
21+
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. After this date, the Entity Linking feature is no longer supported. During the support window, we recommend that users migrate existing workloads and direct all new projects to Azure AI Language [**Named Entity Recognition**](../named-entity-recognition/overview.md) or consider other alternative solutions.
22+
23+
2024
::: zone pivot="programming-language-csharp"
2125

2226
[!INCLUDE [C# quickstart](includes/quickstarts/csharp-sdk.md)]

articles/ai-services/language-service/overview.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: laujan
66
manager: nitinme
77
ms.service: azure-ai-language
88
ms.topic: overview
9-
ms.date: 07/17/2025
9+
ms.date: 09/26/2025
1010
ms.author: lajanuar
1111
---
1212

@@ -48,7 +48,7 @@ The Language service also provides several new features as well, which can eithe
4848
:::image type="content" source="media/overview/text-pii.png" alt-text="A screenshot of text personally identifying information in Azure AI Foundry." lightbox="media/overview/text-pii.png":::
4949
:::column-end:::
5050
:::column span="":::
51-
[PII detection](./personally-identifiable-information/overview.md) identifies entities in text and conversations (chat or transcripts) that are associated with individuals.
51+
[Personally Identifiable Information (PII) detection](./personally-identifiable-information/overview.md) identifies entities in text and conversations (chat or transcripts) that are associated with individuals.
5252

5353
:::column-end:::
5454
:::row-end:::
@@ -105,6 +105,10 @@ Conversation summarization recaps and segments long meetings into timestamped ch
105105

106106
### Entity linking
107107

108+
> [!IMPORTANT]
109+
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. After this date, the Entity Linking feature is no longer supported. During the support window, we recommend that users migrate existing workloads and direct all new projects to Azure AI Language [**Named Entity Recognition**](named-entity-recognition/overview.md) or consider other alternative solutions.
110+
111+
108112
:::row:::
109113
:::column span="":::
110114
:::image type="content" source="media/studio-examples/entity-linking.png" alt-text="A screenshot of an entity linking example." lightbox="media/studio-examples/entity-linking.png":::

0 commit comments

Comments
 (0)