Skip to content

Commit 8688453

Browse files
committed
Edits for visual presentation
1 parent eb05a4a commit 8688453

File tree

3 files changed

+145
-162
lines changed

3 files changed

+145
-162
lines changed

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

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Skillsets add AI processing to raw content, making that content more uniform and
2525
This tutorial helps you learn how to:
2626

2727
> [!div class="checklist"]
28-
> + Define objects in an enrichment pipeline
29-
> + Build a skillset that invokes OCR, language detection, entity recognition, and key phrase extraction
30-
> + Execute the pipeline to invoke transformations, and to create and load a search index
31-
> + Check the results using full text search
28+
> + Define objects in an enrichment pipeline.
29+
> + Build a skillset. Invoke OCR, language detection, entity recognition, and key phrase extraction.
30+
> + Execute the pipeline. Create and load a search index.
31+
> + Check the results using full text search.
3232
3333
If you don't have an Azure subscription, open a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3434

@@ -50,40 +50,36 @@ Once content is extracted, the [skillset](cognitive-search-working-with-skillset
5050

5151
+ [Azure AI Search](search-create-app-portal.md)
5252

53-
+ [Sample data files (mixed media)](https://github.com/Azure-Samples/azure-search-sample-data/tree/main/ai-enrichment-mixed-media)
54-
5553
> [!NOTE]
5654
> 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.
5755
56+
### Download files
57+
58+
Download a zip file of the sample data repository and extract the contents.
59+
60+
+ [Sample data files (mixed media)](https://github.com/Azure-Samples/azure-search-sample-data/tree/main/ai-enrichment-mixed-media)
61+
5862
### Upload sample data to Azure Storage
5963

6064
1. In Azure Storage, create a new container and name it *cog-search-demo*.
6165

6266
1. [Upload the sample data files](/azure/storage/blobs/storage-quickstart-blobs-portal).
6367

64-
:::image type="content" source="media/cognitive-search-tutorial-blob/sample-files.png" alt-text="Screenshot of the files in File Explorer." border="true":::
65-
6668
1. Get a storage connection string so that you can formulate a connection in Azure AI Search.
6769

6870
1. On the left, select **Access keys**.
6971

7072
1. Copy the connection string for either key one or key two. The connection string is similar to the following example:
7173

7274
```http
73-
DefaultEndpointsProtocol=https;AccountName=cogsrchdemostorage;AccountKey=<your account key>;EndpointSuffix=core.windows.net
75+
DefaultEndpointsProtocol=https;AccountName=<your account name>;AccountKey=<your account key>;EndpointSuffix=core.windows.net
7476
```
7577
7678
### Azure AI services
7779
78-
AI enrichment is backed by Azure AI services, including Language service and Azure AI Vision for natural language and image processing. For small workloads like this tutorial, you can use the free allocation of 20 transactions per indexer. For larger workloads, [attach an Azure AI Services multi-region resource to a skillset](cognitive-search-attach-cognitive-services.md) for pay-as-you-go pricing.
79-
80-
### Azure AI Search
81-
82-
The third component is Azure AI Search, which you can [create in the portal](search-create-service-portal.md) or [find an existing search service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) in your subscription.
80+
Built-in AI enrichment is backed by Azure AI services, including Language service and Azure AI Vision for natural language and image processing. For small workloads like this tutorial, you can use the free allocation of 20 transactions per indexer. For larger workloads, [attach an Azure AI Services multi-region resource to a skillset](cognitive-search-attach-cognitive-services.md) for pay-as-you-go pricing.
8381
84-
You can use the Free tier to complete this walkthrough.
85-
86-
### Copy a key and URL
82+
### Copy a search service URL and API key
8783
8884
For this tutorial, connections to Azure AI Search require an endpoint and an API key. You can get these values from the Azure portal.
8985
@@ -93,8 +89,6 @@ For this tutorial, connections to Azure AI Search require an endpoint and an API
9389
9490
:::image type="content" source="media/search-get-started-rest/get-url-key.png" alt-text="Screenshot of the URL and API keys in the Azure portal.":::
9591
96-
A valid API key establishes trust, on a per request basis, between the application sending the request and the search service handling it.
97-
9892
## Set up your environment
9993
10094
Begin by opening Visual Studio and creating a new Console App project that can run on .NET Core.

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

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Skillsets add AI processing to raw content, making that content more uniform and
2121
This tutorial helps you learn how to:
2222

2323
> [!div class="checklist"]
24-
> + Define objects in an enrichment pipeline
25-
> + Build a skillset that invokes OCR, language detection, entity recognition, and key phrase extraction
26-
> + Execute the pipeline to invoke transformations, and to create and load a search index
27-
> + Check the results using full text search
24+
> + Define objects in an enrichment pipeline.
25+
> + Build a skillset. Invoke OCR, language detection, entity recognition, and key phrase extraction.
26+
> + Execute the pipeline. Create and load a search index.
27+
> + Check the results using full text search.
2828
2929
If you don't have an Azure subscription, open a [free account](https://azure.microsoft.com/free/?WT.mc_id=A261C142F) before you begin.
3030

@@ -66,20 +66,14 @@ Once content is extracted, the [skillset](cognitive-search-working-with-skillset
6666
1. Copy the connection string for either key one or key two. The connection string is similar to the following example:
6767

6868
```http
69-
DefaultEndpointsProtocol=https;AccountName=cogsrchdemostorage;AccountKey=<your account key>;EndpointSuffix=core.windows.net
69+
DefaultEndpointsProtocol=https;AccountName=<your account name>;AccountKey=<your account key>;EndpointSuffix=core.windows.net
7070
```
7171
7272
### Azure AI services
7373
74-
AI enrichment is backed by Azure AI services, including Language service and Azure AI Vision for natural language and image processing. For small workloads like this tutorial, you can use the free allocation of twenty transactions per indexer. For larger workloads, [attach an Azure AI Services multi-region resource to a skillset](cognitive-search-attach-cognitive-services.md) for pay-as-you-go pricing.
74+
Built-in AI enrichment is backed by Azure AI services, including Language service and Azure AI Vision for natural language and image processing. For small workloads like this tutorial, you can use the free allocation of twenty transactions per indexer. For larger workloads, [attach an Azure AI Services multi-region resource to a skillset](cognitive-search-attach-cognitive-services.md) for pay-as-you-go pricing.
7575
76-
### Azure AI Search
77-
78-
The third component is Azure AI Search, which you can [create in the portal](search-create-service-portal.md) or [find an existing search service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) in your subscription.
79-
80-
You can use the Free tier to complete this walkthrough.
81-
82-
### Copy a key and URL
76+
### Copy a search service URL and API key
8377
8478
For this tutorial, connections to Azure AI Search require an endpoint and an API key. You can get these values from the Azure portal.
8579
@@ -89,8 +83,6 @@ For this tutorial, connections to Azure AI Search require an endpoint and an API
8983
9084
:::image type="content" source="media/search-get-started-rest/get-url-key.png" alt-text="Screenshot of the URL and API keys in the Azure portal.":::
9185
92-
A valid API key establishes trust, on a per request basis, between the application sending the request and the search service handling it.
93-
9486
## Set up your REST file
9587
9688
1. Start Visual Studio Code and open the [skillset-tutorial.rest](https://github.com/Azure-Samples/azure-search-rest-samples/tree/main/skillset-tutorial) file. See [Quickstart: Text search using REST](search-get-started-rest.md) if you need help with the REST client.

0 commit comments

Comments
 (0)