Skip to content

Commit 2bf95a1

Browse files
committed
add alert notice
1 parent 54b6fb6 commit 2bf95a1

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +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

1616
> [!IMPORTANT]
17-
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. Following this date, support for the Entity Linking service is discontinued. During this 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.
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.
1818
1919

20-
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.
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.
2121

2222

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

2929
### Specify the entity linking model
3030

31-
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).
3232

3333
### Input languages
3434

35-
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.
3636

3737
## Submitting data
3838

39-
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.
4040

41-
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.
4242

4343
> [!NOTE]
44-
> 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**.
4545
4646
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.
4747

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: language-service-entity-linking
1414
# Entity linking language support
1515

1616
> [!IMPORTANT]
17-
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. Following this date, support for the Entity Linking service is discontinued. During this 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.
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.
1818
1919

2020
| Language | Language code | Notes |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.custom: language-service-entity-linking
1414
# What is entity linking in Azure AI Language?
1515

1616
> [!IMPORTANT]
17-
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. Following this date, support for the Entity Linking service is discontinued. During this 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.
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.
1818
1919

2020
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.

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

Lines changed: 2 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: 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
@@ -18,7 +18,7 @@ zone_pivot_groups: programming-languages-entity-linking
1818
# Quickstart: Entity Linking using the client library and REST API
1919

2020
> [!IMPORTANT]
21-
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. Following this date, support for the Entity Linking service is discontinued. During this 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.
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.
2222
2323

2424
::: zone pivot="programming-language-csharp"

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

Lines changed: 3 additions & 3 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:::
@@ -106,7 +106,7 @@ Conversation summarization recaps and segments long meetings into timestamped ch
106106
### Entity linking
107107

108108
> [!IMPORTANT]
109-
> Entity Linking is retiring from Azure AI Language effective **September 1, 2028**. Following this date, support for the Entity Linking service is discontinued. During this 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.
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.
110110
111111

112112
:::row:::

0 commit comments

Comments
 (0)