Skip to content

Commit 24ed2ed

Browse files
Merge pull request #7324 from MicrosoftDocs/main
Auto Publish – main to live - 2025-09-27 05:07 UTC
2 parents 8df9d90 + 6e5175b commit 24ed2ed

File tree

20 files changed

+2837
-93
lines changed

20 files changed

+2837
-93
lines changed

articles/ai-foundry/how-to/model-deployment-policy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Manage AI model deployment in Azure AI Foundry (Preview)
3-
description: Control AI model deployment in Azure AI Foundry Portal with built-in Azure Policy definitions. Learn how to govern and manage model deployments effectively.
2+
title: Built-in policy for model deployment (Preview)
3+
description: Manage AI model deployment in Azure AI Foundry Portal with built-in Azure Policy definitions. Learn how to govern and manage model deployments effectively.
44
#customer intent: As an IT admin, I want to control the deployment of AI models in Azure AI Foundry Portal so that I can ensure compliance with organizational policies.
55
author: jonburchel
66
ms.author: jburchel
@@ -11,7 +11,7 @@ ms.service: azure-ai-foundry
1111
ai-usage: ai-assisted
1212
---
1313

14-
# Control AI model deployment with built-in policy in Azure AI Foundry portal (Preview)
14+
# Built-in policy for model deployment in Azure AI Foundry portal (Preview)
1515

1616
Azure Policy provides built-in policy definitions that help you govern the deployment of AI models in Azure AI Foundry Portal. You can use
1717
these policies to control what models your developers can deploy in Azure AI Foundry portal.

articles/ai-foundry/toc-files/security-governance/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ items:
2222
href: ../../how-to/disable-local-auth.md
2323
- name: Azure policies
2424
items:
25-
- name: Manage model deployment policy (Preview)
25+
- name: Built-in policy for model deployment (Preview)
2626
href: ../../how-to/model-deployment-policy.md
2727
- name: Built-in policy definitions
2828
displayName: samples, policies, definitions, Azure Policy

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":::

articles/ai-services/speech-service/includes/quickstarts/voice-live-agents/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ You can create and run an application to use voice live with agents for real-tim
1616

1717
- This separation also supports better maintainability and scalability for scenarios where multiple conversational experiences or business logic variations are needed.
1818

19-
To instead use the voice live API without agents, see the [voice live quickstart](/azure/ai-services/speech-service/voice-live-quickstart).
19+
To instead use the Voice live API without agents, see the [Voice live API quickstart](/azure/ai-services/speech-service/voice-live-quickstart).

articles/ai-services/speech-service/includes/quickstarts/voice-live-api/intro.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
author: PatrickFarley
2+
author: goergenj
33
ms.service: azure-ai-speech
44
ms.topic: include
5-
ms.date: 7/31/2025
6-
ms.author: pafarley
5+
ms.date: 9/26/2025
6+
ms.author: jagoerge
77
---
88

99
You create and run an application to use voice live directly with generative AI models for real-time voice agents.
@@ -16,4 +16,4 @@ You create and run an application to use voice live directly with generative AI
1616

1717
- Direct model use is suitable for scenarios where agent-level abstraction or built-in logic is unnecessary.
1818

19-
To instead use the voice live API with agents, see the [voice live agents quickstart](/azure/ai-services/speech-service/voice-live-agents-quickstart).
19+
To instead use the Voice live API with agents, see the [Voice live API agents quickstart](/azure/ai-services/speech-service/voice-live-agents-quickstart).

articles/ai-services/speech-service/regions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author: goergenj
66
manager: nitinme
77
ms.service: azure-ai-speech
88
ms.topic: conceptual
9-
ms.date: 9/16/2025
9+
ms.date: 9/26/2025
1010
ms.author: jagoerge
1111
ms.custom: references_regions
1212
#Customer intent: As a developer, I want to learn about the available regions and endpoints for the Speech service.
@@ -187,9 +187,9 @@ The regions in these tables support most of the core features of the Speech serv
187187
|uksouth| - | - | Global standard | Global standard | Global standard | Global standard | - | - | - | - | - | - |
188188
|westeurope| - | - | Data zone standard | Data zone standard | Data zone standard | Data zone standard | - | - | - | - | - | - |
189189

190-
<sup>1</sup> The Azure AI Foundry resource must be in Central India. Azure AI Speech features remain in Central India. The voice live API uses Sweden Central as needed for generative AI load balancing.
190+
<sup>1</sup> The Azure AI Foundry resource must be in Central India. Azure AI Speech features remain in Central India. The Voice live API uses Sweden Central as needed for generative AI load balancing.
191191

192-
<sup>2</sup> The Azure AI Foundry resource must be in West US 2. Azure AI Speech features remain in West US 2. The voice live API uses East US 2 as needed for generative AI load balancing.
192+
<sup>2</sup> The Azure AI Foundry resource must be in West US 2. Azure AI Speech features remain in West US 2. The Voice live API uses East US 2 as needed for generative AI load balancing.
193193

194194
# [Intent recognition](#tab/intent-recognition)
195195

0 commit comments

Comments
 (0)