Skip to content

Commit c249eb1

Browse files
authored
Merge pull request #3981 from MicrosoftDocs/release-azure-search
Release azure search -> main -- 04/09 07:00 AM PST
2 parents 8b28e79 + 08226c0 commit c249eb1

File tree

74 files changed

+2192
-1135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+2192
-1135
lines changed

articles/search/.openpublishing.redirection.search.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,4 +382,4 @@
382382
"redirect_document_id": false
383383
}
384384
]
385-
}
385+
}

articles/search/cognitive-search-attach-cognitive-services.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Using the Azure portal or newer preview REST APIs and beta SDK packages, you can
5050

5151
1. On your Azure AI services multi-service resource, [assign the identity](/azure/role-based-access-control/role-assignments-portal) to the **Cognitive Services User** role.
5252

53-
1. Using the Azure portal, or the [Skillset 2024-11-01-preview REST API](/rest/api/searchservice/skillsets/create-or-update?view=rest-searchservice-2024-11-01-preview&preserve-view=true), or an Azure SDK beta package that provides the syntax, configure a skillset to use an identity:
53+
1. Using the Azure portal, or the [Skillset 2024-11-01-preview REST API](/rest/api/searchservice/skillsets/create-or-update?view=rest-searchservice-2024-11-01-preview&preserve-view=true) or later, or an Azure SDK beta package that provides the syntax, configure a skillset to use an identity:
5454

5555
+ The managed identity used on the connection belongs to the search service. It can be system managed or user assigned.
5656

articles/search/cognitive-search-skill-document-intelligence-layout.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.custom:
1111
- references_regions
1212
- ignite-2024
1313
ms.topic: reference
14-
ms.date: 02/13/2025
14+
ms.date: 04/07/2025
1515
---
1616

1717
# Document Layout skill
@@ -22,12 +22,13 @@ The **Document Layout** skill analyzes a document to extract regions of interest
2222

2323
This article is the reference documentation for the Document Layout skill. For usage information, see [Structure-aware chunking and vectorization](search-how-to-semantic-chunking.md).
2424

25-
The **Document Layout** skill calls the [Document Intelligence Public preview version 2024-07-31-preview](/rest/api/aiservices/operation-groups?view=rest-aiservices-v4.0%20(2024-07-31-preview)&preserve-view=true). It's currently only available in the following Azure regions:
25+
The **Document Layout** skill calls the [Document Intelligence Public preview version 2024-07-31-preview](/rest/api/aiservices/operation-groups?view=rest-aiservices-v4.0%20(2024-07-31-preview)&preserve-view=true).
2626

27-
+ East US
28-
+ West US2
29-
+ West Europe
30-
+ North Central US
27+
Supported regions varies by modality:
28+
29+
+ In code, your skillset can call Document Intelligence through an Azure AI multi-service resource in any region that provides both AI enrichment and Document Intelligence. See [Product availability by region](https://azure.microsoft.com/explore/global-infrastructure/products-by-region/table) to find regions that provide both *AI enrichment* in Azure AI Search and *Document Intelligence* under Azure AI services.
30+
31+
+ In the [Import and vectorize data](search-import-data-portal.md) wizard in the Azure portal, you can enable document layout detection in the data source connection step. Document layout detection in the portal is available in the following Azure regions: **East US**, **West Europe**, **North Central US**. Create an Azure AI multi-service resource in one of these three regions to get the portal experience.
3132

3233
Supported file formats include:
3334

@@ -59,7 +60,7 @@ Microsoft.Skills.Util.DocumentIntelligenceLayoutSkill
5960

6061
## Supported languages
6162

62-
Refer to [Azure AI Document Intelligence layout model supported languages](/azure/ai-services/document-intelligence/language-support/ocr?view=doc-intel-3.1.0&tabs=read-print%2Clayout-print%2Cgeneral#layout) for printed text.
63+
Refer to [Azure AI Document Intelligence layout model supported languages](/azure/ai-services/document-intelligence/language-support/ocr?view=doc-intel-3.1.0&tabs=read-print%2Clayout-print%2Cgeneral#layout&preserve-view=true) for printed text.
6364

6465
## Limitations
6566

articles/search/cognitive-search-tutorial-blob-dotnet.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Tutorial: Skillsets using C#'
2+
title: 'Tutorial: Skillsets Using C#'
33
titleSuffix: Azure AI Search
44
description: Use C# and the Azure SDK for .NET to create skillsets. This skillset applies AI transformations and analyses to create searchable content from images and unstructured text.
55

@@ -9,7 +9,7 @@ manager: nitinme
99

1010
ms.service: azure-ai-search
1111
ms.topic: tutorial
12-
ms.date: 01/17/2025
12+
ms.date: 03/31/2025
1313
ms.custom:
1414
- devx-track-csharp
1515
- devx-track-dotnet
@@ -18,19 +18,17 @@ ms.custom:
1818

1919
# C# Tutorial: Use skillsets to generate searchable content in Azure AI Search
2020

21-
In this tutorial, learn how to use the [Azure SDK for .NET](https://www.nuget.org/packages/Azure.Search.Documents/) to create an [AI enrichment pipeline](cognitive-search-concept-intro.md) for content extraction and transformations during indexing.
21+
Learn how to use the [Azure SDK for .NET](https://www.nuget.org/packages/Azure.Search.Documents/) to create an [AI enrichment pipeline](cognitive-search-concept-intro.md) for content extraction and transformations during indexing.
2222

23-
Skillsets add AI processing to raw content, making that content more uniform and searchable. Once you know how skillsets work, you can support a broad range of transformations: from image analysis, to natural language processing, to customized processing that you provide externally.
23+
Skillsets add AI processing to raw content, making it more uniform and searchable. Once you know how skillsets work, you can support a broad range of transformations, from image analysis to natural language processing to customized processing that you provide externally.
2424

25-
This tutorial helps you learn how to:
25+
In this tutorial, you:
2626

2727
> [!div class="checklist"]
2828
> + Define objects in an enrichment pipeline.
2929
> + Build a skillset. Invoke OCR, language detection, entity recognition, and key phrase extraction.
3030
> + Execute the pipeline. Create and load a search index.
31-
> + Check the results using full text search.
32-
33-
If you don't have an Azure subscription, open a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
31+
> + Check the results using full-text search.
3432
3533
## Overview
3634

@@ -42,16 +40,18 @@ Once content is extracted, the [skillset](cognitive-search-working-with-skillset
4240

4341
## Prerequisites
4442

45-
+ [Visual Studio](https://visualstudio.microsoft.com/downloads/)
43+
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
44+
45+
+ [Azure Storage](/azure/storage/common/storage-account-create).
4646

47-
+ [Azure.Search.Documents 11.x NuGet package](https://www.nuget.org/packages/Azure.Search.Documents)
47+
+ [Azure AI Search](search-create-app-portal.md).
4848

49-
+ [Azure Storage](/azure/storage/common/storage-account-create)
49+
+ [Azure.Search.Documents 11.x NuGet package](https://www.nuget.org/packages/Azure.Search.Documents).
5050

51-
+ [Azure AI Search](search-create-app-portal.md)
51+
+ [Visual Studio](https://visualstudio.microsoft.com/downloads/).
5252

5353
> [!NOTE]
54-
> You can use a free search service for this tutorial. The free tier limits you to three indexes, three indexers, and three data sources. This tutorial creates one of each. Before starting, make sure you have room on your service to accept the new resources.
54+
> You can use a free search service for this tutorial. The Free tier limits you to three indexes, three indexers, and three data sources. This tutorial creates one of each. Before you start, make sure you have room on your service to accept the new resources.
5555
5656
### Download files
5757

articles/search/cognitive-search-tutorial-blob.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Tutorial: Skillsets using REST'
2+
title: 'Tutorial: Skillsets Using REST'
33
titleSuffix: Azure AI Search
44
description: Use the Search REST APIs to create skillsets. This skillset applies AI transformations and analyses to create searchable content from images and unstructured text.
55

@@ -9,25 +9,23 @@ ms.service: azure-ai-search
99
ms.custom:
1010
- ignite-2023
1111
ms.topic: tutorial
12-
ms.date: 01/17/2025
12+
ms.date: 03/31/2025
1313
---
1414

1515
# REST Tutorial: Use skillsets to generate searchable content in Azure AI Search
1616

17-
In this tutorial, learn how to call REST APIs that create an [AI enrichment pipeline](cognitive-search-concept-intro.md) for content extraction and transformations during indexing.
17+
Learn how to call REST APIs that create an [AI enrichment pipeline](cognitive-search-concept-intro.md) for content extraction and transformations during indexing.
1818

19-
Skillsets add AI processing to raw content, making that content more uniform and searchable. Once you know how skillsets work, you can support a broad range of transformations: from image analysis, to natural language processing, to customized processing that you provide externally.
19+
Skillsets add AI processing to raw content, making it more uniform and searchable. Once you know how skillsets work, you can support a broad range of transformations, from image analysis to natural language processing to customized processing that you provide externally.
2020

21-
This tutorial helps you learn how to:
21+
In this tutorial, you:
2222

2323
> [!div class="checklist"]
2424
> + Define objects in an enrichment pipeline.
2525
> + Build a skillset. Invoke OCR, language detection, entity recognition, and key phrase extraction.
2626
> + Execute the pipeline. Create and load a search index.
2727
> + Check the results using full text search.
2828
29-
If you don't have an Azure subscription, open a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
30-
3129
## Overview
3230

3331
This tutorial uses a REST client and the [Azure AI Search REST APIs](/rest/api/searchservice/) to create a data source, index, indexer, and skillset.
@@ -38,20 +36,22 @@ Once content is extracted, the [skillset](cognitive-search-working-with-skillset
3836

3937
## Prerequisites
4038

41-
+ [Visual Studio Code](https://code.visualstudio.com/download) with a [REST client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client)
39+
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
4240

4341
+ [Azure Storage](/azure/storage/common/storage-account-create)
4442

4543
+ [Azure AI Search](search-create-app-portal.md)
4644

45+
+ [Visual Studio Code](https://code.visualstudio.com/download) with a [REST client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client)
46+
4747
> [!NOTE]
48-
> You can use a free search service for this tutorial. The free tier limits you to three indexes, three indexers, and three data sources. This tutorial creates one of each. Before starting, make sure you have room on your service to accept the new resources.
48+
> You can use a free search service for this tutorial. The Free tier limits you to three indexes, three indexers, and three data sources. This tutorial creates one of each. Before you start, make sure you have room on your service to accept the new resources.
4949
5050
### Download files
5151

5252
Download a zip file of the sample data repository and extract the contents. [Learn how](https://docs.github.com/get-started/start-your-journey/downloading-files-from-github).
5353

54-
+ [Sample data files (mixed media)](https://github.com/Azure-Samples/azure-search-sample-data/tree/main/ai-enrichment-mixed-media).
54+
+ [Sample data files (mixed media)](https://github.com/Azure-Samples/azure-search-sample-data/tree/main/ai-enrichment-mixed-media).
5555

5656
+ [Sample REST file](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/skillset-tutorial)
5757

0 commit comments

Comments
 (0)