Skip to content

Commit 07c11c7

Browse files
committed
Merge branch 'release-ignite-azure-ai-language' of https://github.com/MicrosoftDocs/azure-ai-docs-pr into release-ignite-azure-ai-language
2 parents 24d89bf + 5819b90 commit 07c11c7

File tree

18 files changed

+162
-68
lines changed

18 files changed

+162
-68
lines changed

articles/ai-services/containers/docker-compose-recipe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: aahill
77
manager: nitinme
88
ms.service: azure-ai-services
99
ms.topic: how-to
10-
ms.date: 02/22/2024
10+
ms.date: 11/06/2024
1111
ms.author: aahi
1212

1313
# SME: Brendan Walsh

articles/ai-services/content-safety/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The groundedness detection API includes a correction feature that automatically
4545

4646
### New features are GA
4747

48-
The Prompt Shields API and groundedness detection API are now generally available (GA). Follow a quickstart to try them out.
48+
The Prompt Shields API and Protected Material for text API are now generally available (GA). Follow a quickstart to try them out.
4949
* [Prompt Shields quickstart](/azure/ai-services/content-safety/quickstart-jailbreak)
5050
* [Protected Material quickstart](/azure/ai-services/content-safety/quickstart-protected-material?tabs=curl)
5151
## July 2024

articles/ai-services/create-account-bicep.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ keywords: Azure AI services, cognitive solutions, cognitive intelligence, cognit
55
author: eric-urban
66
ms.service: azure-ai-services
77
ms.topic: quickstart
8-
ms.date: 8/1/2024
8+
ms.date: 11/06/2024
99
ms.author: eur
1010
ms.custom:
1111
- subject-armqs

articles/ai-services/language-service/native-document-support/use-native-documents.md

Lines changed: 15 additions & 17 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: how-to
9-
ms.date: 06/20/2024
9+
ms.date: 11/19/2024
1010
ms.author: lajanuar
1111
---
1212

@@ -21,8 +21,6 @@ ms.author: lajanuar
2121

2222
> [!IMPORTANT]
2323
>
24-
> * Native document support is a gated preview. To request access to the native document support feature, complete and submit the [**Apply for access to Language Service previews**](https://aka.ms/gating-native-document) form.
25-
>
2624
> * Azure AI Language public preview releases provide early access to features that are in active development.
2725
> * Features, approaches, and processes may change, prior to General Availability (GA), based on user feedback.
2826
@@ -213,7 +211,7 @@ For this quickstart, you need a **source document** uploaded to your **source co
213211
1. Here's the preliminary structure of the POST request:
214212

215213
```bash
216-
POST {your-language-endpoint}/language/analyze-documents/jobs?api-version=2023-11-15-preview
214+
POST {your-language-endpoint}/language/analyze-documents/jobs?api-version=2024-11-15-preview
217215
```
218216

219217
1. Before you run the **POST** request, replace `{your-language-resource-endpoint}` and `{your-key}` with the values from your Azure portal Language service instance.
@@ -224,21 +222,21 @@ For this quickstart, you need a **source document** uploaded to your **source co
224222
***PowerShell***
225223

226224
```powershell
227-
cmd /c curl "{your-language-resource-endpoint}/language/analyze-documents/jobs?api-version=2023-11-15-preview" -i -X POST --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}" --data "@pii-detection.json"
225+
cmd /c curl "{your-language-resource-endpoint}/language/analyze-documents/jobs?api-version=2024-11-15-preview" -i -X POST --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}" --data "@pii-detection.json"
228226
```
229227
230228
***command prompt / terminal***
231229
232230
```bash
233-
curl -v -X POST "{your-language-resource-endpoint}/language/analyze-documents/jobs?api-version=2023-11-15-preview" --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}" --data "@pii-detection.json"
231+
curl -v -X POST "{your-language-resource-endpoint}/language/analyze-documents/jobs?api-version=2024-11-15-preview" --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}" --data "@pii-detection.json"
234232
```
235233
236234
1. Here's a sample response:
237235
238236
```http
239237
HTTP/1.1 202 Accepted
240238
Content-Length: 0
241-
operation-location: https://{your-language-resource-endpoint}/language/analyze-documents/jobs/f1cc29ff-9738-42ea-afa5-98d2d3cabf94?api-version=2023-11-15-preview
239+
operation-location: https://{your-language-resource-endpoint}/language/analyze-documents/jobs/f1cc29ff-9738-42ea-afa5-98d2d3cabf94?api-version=2024-11-15-preview
242240
apim-request-id: e7d6fa0c-0efd-416a-8b1e-1cd9287f5f81
243241
x-ms-region: West US 2
244242
Date: Thu, 25 Jan 2024 15:12:32 GMT
@@ -257,7 +255,7 @@ You receive a 202 (Success) response that includes a read-only Operation-Locatio
257255
1. Here's the preliminary structure of the **GET** request:
258256

259257
```bash
260-
GET {your-language-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2023-11-15-preview
258+
GET {your-language-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2024-11-15-preview
261259
```
262260

263261
1. Before you run the command, make these changes:
@@ -269,11 +267,11 @@ You receive a 202 (Success) response that includes a read-only Operation-Locatio
269267
### Get request
270268

271269
```powershell
272-
cmd /c curl "{your-language-resource-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2023-11-15-preview" -i -X GET --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}"
270+
cmd /c curl "{your-language-resource-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2024-11-15-preview" -i -X GET --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}"
273271
```
274272

275273
```bash
276-
curl -v -X GET "{your-language-resource-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2023-11-15-preview" --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}"
274+
curl -v -X GET "{your-language-resource-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2024-11-15-preview" --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}"
277275
```
278276

279277
#### Examine the response
@@ -380,21 +378,21 @@ Before you run the **POST** request, replace `{your-language-resource-endpoint}`
380378
***PowerShell***
381379

382380
```powershell
383-
cmd /c curl "{your-language-resource-endpoint}/language/analyze-documents/jobs?api-version=2023-11-15-preview" -i -X POST --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}" --data "@document-summarization.json"
381+
cmd /c curl "{your-language-resource-endpoint}/language/analyze-documents/jobs?api-version=2024-11-15-preview" -i -X POST --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}" --data "@document-summarization.json"
384382
```
385383

386384
***command prompt / terminal***
387385

388386
```bash
389-
curl -v -X POST "{your-language-resource-endpoint}/language/analyze-documents/jobs?api-version=2023-11-15-preview" --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}" --data "@document-summarization.json"
387+
curl -v -X POST "{your-language-resource-endpoint}/language/analyze-documents/jobs?api-version=2024-11-15-preview" --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}" --data "@document-summarization.json"
390388
```
391389

392390
Here's a sample response:
393391

394392
```http
395393
HTTP/1.1 202 Accepted
396394
Content-Length: 0
397-
operation-location: https://{your-language-resource-endpoint}/language/analyze-documents/jobs/f1cc29ff-9738-42ea-afa5-98d2d3cabf94?api-version=2023-11-15-preview
395+
operation-location: https://{your-language-resource-endpoint}/language/analyze-documents/jobs/f1cc29ff-9738-42ea-afa5-98d2d3cabf94?api-version=2024-11-15-preview
398396
apim-request-id: e7d6fa0c-0efd-416a-8b1e-1cd9287f5f81
399397
x-ms-region: West US 2
400398
Date: Thu, 25 Jan 2024 15:12:32 GMT
@@ -412,8 +410,8 @@ You receive a 202 (Success) response that includes a read-only Operation-Locatio
412410

413411
1. Here's the structure of the **GET** request:
414412

415-
```http
416-
GET {cognitive-service-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2023-11-15-preview
413+
```bash
414+
GET {cognitive-service-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2024-11-15-preview
417415
```
418416

419417
1. Before you run the command, make these changes:
@@ -425,11 +423,11 @@ You receive a 202 (Success) response that includes a read-only Operation-Locatio
425423
### Get request
426424

427425
```powershell
428-
cmd /c curl "{your-language-resource-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2023-11-15-preview" -i -X GET --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}"
426+
cmd /c curl "{your-language-resource-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2024-11-15-preview" -i -X GET --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}"
429427
```
430428

431429
```bash
432-
curl -v -X GET "{your-language-resource-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2023-11-15-preview" --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}"
430+
curl -v -X GET "{your-language-resource-endpoint}/language/analyze-documents/jobs/{jobId}?api-version=2024-11-15-preview" --header "Content-Type: application/json" --header "Ocp-Apim-Subscription-Key: {your-key}"
433431
```
434432

435433
#### Examine the response

articles/ai-services/language-service/personally-identifiable-information/concepts/conversations-entity-categories.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,6 @@ This category contains the following entities:
154154
Any numeric or alphanumeric identifier that could contain any PII information.
155155
Examples:
156156
* Case Number
157-
* Driver's license
158-
* Medicare Beneficiary Identifier (MBI)
159157
* Member Number
160158
* Ticket number
161159
* Bank account number

articles/ai-services/language-service/whats-new.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,15 @@ Azure AI Language is updated on an ongoing basis. To stay up-to-date with recent
1717

1818
## November 2024
1919

20-
* [Native document support](native-document-support/use-native-documents.md) is now available in public preview `20224-11-15-preview` without gated preview limitations.
20+
* [Native document support](native-document-support/use-native-documents.md) is now available in public preview `2024-11-15-preview` without gated preview limitations.
21+
22+
## October 2024
23+
24+
* Custom language service features enable you to deploy your project to multiple [resources within a single region](concepts/custom-features/multi-region-deployment.md) via the API, so that you can use your custom model wherever you need.
2125

2226
## September 2024
2327

24-
* PII detection now has container support. See more details in the Azure Update post: [Announcing Text PII Redaction Container Release](https://techcommunity.microsoft.com/t5/ai-azure-ai-services-blog/announcing-text-pii-redaction-container-release/ba-p/4264655).
28+
* PII detection now has container support. See more details in the Azure Update post: [Announcing Text PII Redaction Container Release](https://techcommunity.microsoft.com/blog/azure-ai-services-blog/announcing-text-pii-redaction-container-release/4264655).
2529
* Custom sentiment analysis (preview) will be retired on January 10th, 2025. Please transition to other custom model training services, such as custom text classification in Azure AI Language, by that date.  See more details in the Azure Update post: [Retirement: Announcing upcoming retirement of custom sentiment analysis (preview) in Azure AI Language (microsoft.com)](https://azure.microsoft.com/updates/v2/custom-sentiment-analysis-retirement).
2630
* Custom text analytics for health (preview) will be retired on January 10th, 2025. Please transition to other custom model training services, such as custom named entity recognition in Azure AI Language, by that date.  See more details in the Azure Update post: [Retirement: Announcing upcoming retirement of custom text analytics for health (preview) in Azure AI Language (microsoft.com)](https://azure.microsoft.com/updates/v2/custom-text-analytics-for-health-retirement).
2731

@@ -31,7 +35,7 @@ Azure AI Language is updated on an ongoing basis. To stay up-to-date with recent
3135

3236
## July 2024
3337

34-
* [Conversational PII redaction](https://techcommunity.microsoft.com/t5/ai-azure-ai-services-blog/announcing-conversational-pii-detection-service-s-general/ba-p/4162881) service in English-language contexts is now Generally Available (GA).
38+
* [Conversational PII redaction](https://techcommunity.microsoft.com/blog/ai-azure-ai-services-blog/announcing-conversational-pii-detection-service-s-general/4162881) service in English-language contexts is now Generally Available (GA).
3539
* Conversation Summarization now supports 12 additional languages in preview as listed [here](summarization/language-support.md).
3640
* Summarization Meeting or Conversation Chapter titles features will now support reduced length to focus on the key topics.
3741
* Enable support for data augmentation for diacritics to generate variations of training data for diacritic variations used in some natural languages which is especially useful for Germanic and Slavic languages.

articles/ai-services/luis/client-libraries-rest-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
title: "Quickstart: Language Understanding (LUIS) SDK client libraries and REST API"
33
description: Create and query a LUIS app with the LUIS SDK client libraries and REST API.
44
ms.topic: quickstart
5-
ms.date: 01/19/2024
5+
ms.date: 11/06/2024
66
ms.service: azure-ai-language
7-
ms.author: aahi
7+
ms.author: jboback
88
manager: nitinme
99
ms.subservice: azure-ai-luis
10-
author: aahill
10+
author: jboback
1111
keywords: Azure, artificial intelligence, ai, natural language processing, nlp, LUIS, azure luis, natural language understanding, ai chatbot, chatbot maker, understanding natural language
1212
ms.devlang: csharp
1313
# ms.devlang: csharp, javascript, python

articles/ai-services/luis/concepts/entities.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ title: Entities
33
titleSuffix: Azure AI services
44
description: Entities concepts
55
#services: cognitive-services
6-
ms.author: aahi
7-
author: aahill
6+
ms.author: jboback
7+
author: jboback
88
manager: nitinme
99
ms.service: azure-ai-language
1010
ms.subservice: azure-ai-luis
1111
ms.topic: conceptual
12-
ms.date: 01/19/2024
12+
ms.date: 11/06/2024
1313
---
1414

1515
# Entity types
@@ -23,10 +23,10 @@ An entity is an item or an element that is relevant to the user's intent. Entiti
2323
| Utterance | Intent predicted | Entities extracted | Explanation |
2424
|--|--|--|--|
2525
| Hello, how are you? | Greeting | - | Nothing to extract. |
26-
| I want to order a small pizza | orderPizza | 'small' | 'Size' entity is extracted as 'small'. |
27-
| Turn off bedroom light | turnOff | 'bedroom' | 'Room' entity is extracted as 'bedroom'. |
28-
| Check balance in my savings account ending in 4406 | checkBalance | 'savings', '4406' | 'accountType' entity is extracted as 'savings' and 'accountNumber' entity is extracted as '4406'. |
29-
| Buy 3 tickets to New York | buyTickets | '3', 'New York' | 'ticketsCount' entity is extracted as '3' and 'Destination' entity is extracted as 'New York". |
26+
| I want to order a small pizza | orderPizza | 'small' | 'Size' entity is extracted as 'small.' |
27+
| Turn-off bedroom light | turnOff | 'bedroom' | 'Room' entity is extracted as 'bedroom.' |
28+
| Check balance in my savings account ending in 4406 | checkBalance | 'savings', '4406' | 'accountType' entity is extracted as 'savings' and 'accountNumber' entity is extracted as '4406.' |
29+
| Buy 3 tickets to New York | buyTickets | '3', 'New York' | 'ticketsCount' entity is extracted as '3' and 'Destination' entity is extracted as 'New York." |
3030

3131
Entities are optional but recommended. You don't need to create entities for every concept in your app, only when:
3232

articles/ai-services/luis/index.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ summary: Learn how Language Understanding enables your applications to understan
55

66
metadata:
77
ms.topic: landing-page
8-
ms.date: 01/19/2024
9-
ms.author: aahi
10-
author: aahill
8+
ms.date: 11/06/2024
9+
ms.author: jboback
10+
author: jboback
1111
manager: nitinme
1212
ms.service: azure-ai-language
1313
ms.subservice: azure-ai-luis

articles/ai-services/luis/luis-container-howto.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ title: Install and run Docker containers for LUIS
33
titleSuffix: Azure AI services
44
description: Use the LUIS container to load your trained or published app, and gain access to its predictions on-premises.
55
#services: cognitive-services
6-
author: aahill
6+
author: jboback
77
manager: nitinme
88
ms.service: azure-ai-language
99
ms.subservice: azure-ai-luis
1010
ms.topic: how-to
11-
ms.date: 01/19/2024
12-
ms.author: aahi
11+
ms.date: 11/06/2024
12+
ms.author: jboback
1313
keywords: on-premises, Docker, container
1414
---
1515

0 commit comments

Comments
 (0)