Skip to content

Commit 321566c

Browse files
committed
Found and fixed a typo
1 parent 15eae7b commit 321566c

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: HeidiSteen
77
ms.author: heidist
88
ms.service: cognitive-search
99
ms.topic: quickstart
10-
ms.date: 10/07/2021
10+
ms.date: 05/31/2022
1111
ms.custom: mode-ui
1212
---
1313
# Quickstart: Translate text and recognize entities using the Import data wizard
@@ -26,7 +26,7 @@ Before you begin, have the following prerequisites in place:
2626

2727
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/).
2828

29-
+ Azure Cognitive Search service. [Create a service](search-create-service-portal.md) or [find an existing service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) under your current subscription. You can use a free service for this quickstart.
29+
+ Azure Cognitive Search. [Create a service](search-create-service-portal.md) or [find an existing service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices). You can use a free service for this quickstart.
3030

3131
+ Azure Storage account with Blob Storage. [Create a storage account](../storage/common/storage-account-create.md?tabs=azure-portal) or [find an existing account](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Storage%2storageAccounts/).
3232

@@ -35,7 +35,7 @@ Before you begin, have the following prerequisites in place:
3535
+ Choose the StorageV2 (general purpose V2).
3636

3737
> [!NOTE]
38-
> This quickstart also uses [Cognitive Services](https://azure.microsoft.com/services/cognitive-services/) for the AI. Because the workload is so small, Cognitive Services is tapped behind the scenes for free processing for up to 20 transactions. This means that you can complete this exercise without having to create an additional Cognitive Services resource.
38+
> This quickstart uses [Cognitive Services](https://azure.microsoft.com/services/cognitive-services/) for the AI. Because the workload is so small, Cognitive Services is tapped behind the scenes for free processing for up to 20 transactions. You can complete this exercise without having to create a Cognitive Services resource.
3939
4040
## Set up your data
4141

articles/search/cognitive-search-quickstart-ocr.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: HeidiSteen
77
ms.author: heidist
88
ms.service: cognitive-search
99
ms.topic: quickstart
10-
ms.date: 10/07/2021
10+
ms.date: 05/31/2022
1111
ms.custom: mode-ui
1212
---
1313

@@ -27,7 +27,7 @@ Before you begin, have the following prerequisites in place:
2727

2828
+ An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/).
2929

30-
+ Azure Cognitive Search service. [Create a service](search-create-service-portal.md) or [find an existing service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) under your current subscription. You can use a free service for this quickstart.
30+
+ Azure Cognitive Search . [Create a service](search-create-service-portal.md) or [find an existing service](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices). You can use a free service for this quickstart.
3131

3232
+ Azure Storage account with Blob Storage. [Create a storage account](../storage/common/storage-account-create.md?tabs=azure-portal) or [find an existing account](https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Storage%2storageAccounts/).
3333

@@ -36,7 +36,7 @@ Before you begin, have the following prerequisites in place:
3636
+ Choose the StorageV2 (general purpose V2).
3737

3838
> [!NOTE]
39-
> This quickstart also uses [Cognitive Services](https://azure.microsoft.com/services/cognitive-services/) for the AI. Because the workload is so small, Cognitive Services is tapped behind the scenes for free processing for up to 20 transactions. This means that you can complete this exercise without having to create an additional Cognitive Services resource.
39+
> This quickstart uses [Cognitive Services](https://azure.microsoft.com/services/cognitive-services/) for the AI. Because the workload is so small, Cognitive Services is tapped behind the scenes for free processing for up to 20 transactions. You can complete this exercise without having to create a Cognitive Services resource.
4040
4141
## Set up your data
4242

articles/search/search-what-is-azure-search.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: HeidiSteen
88
ms.author: heidist
99
ms.service: cognitive-search
1010
ms.topic: overview
11-
ms.date: 01/03/2022
11+
ms.date: 05/31/2022
1212
ms.custom: contperf-fy21q1
1313
---
1414
# What is Azure Cognitive Search?
@@ -21,7 +21,7 @@ When you create a search service, you'll work with the following capabilities:
2121

2222
+ A search engine for full text search with storage for user-owned content in a search index
2323
+ Rich indexing, with [text analysis](search-analyzers.md) and [optional AI enrichment](cognitive-search-concept-intro.md) for advanced content extraction and transformation
24-
+ Rich query capabilities, including simple syntax, full Lucene syntax, and typeahead search
24+
+ Rich query syntax that supplements free text search with filters, autocomplete, regex, geo-search and more
2525
+ Programmability through REST APIs and client libraries in Azure SDKs for .NET, Python, Java, and JavaScript
2626
+ Azure integration at the data layer, machine learning layer, and AI (Cognitive Services)
2727

@@ -35,15 +35,15 @@ Across the Azure platform, Cognitive Search can integrate with other Azure servi
3535

3636
On the search service itself, the two primary workloads are *indexing* and *querying*.
3737

38-
+ [Indexing](search-what-is-an-index.md) is an intake process that loads content into to your search service and makes it searchable. Internally, inbound text is processed into tokens and stored in inverted indexes for fast scans. You can upload any text that is in the form of JSON documents.
38+
+ [**Indexing**](search-what-is-an-index.md) is an intake process that loads content into to your search service and makes it searchable. Internally, inbound text is processed into tokens and stored in inverted indexes for fast scans. You can upload any text that is in the form of JSON documents.
3939

4040
Additionally, if your content includes mixed files, you have the option of adding *AI enrichment* through [cognitive skills](cognitive-search-working-with-skillsets.md). AI enrichment can extract text embedded in application files, and also infer text and structure from non-text files by analyzing the content.
4141

4242
The skills providing the analysis are predefined ones from Microsoft, or custom skills that you create. The subsequent analysis and transformations can result in new information and structures that did not previously exist, providing high utility for many search and knowledge mining scenarios.
4343

44-
+ [Querying](search-query-overview.md) can happen once an index is populated with searchable text, when your client app sends query requests to a search service and handles responses. All query execution is over a search index that you create, own, and store in your service. In your client app, the search experience is defined using APIs from Azure Cognitive Search, and can include relevance tuning, autocomplete, synonym matching, fuzzy matching, pattern matching, filter, and sort.
44+
+ [**Querying**](search-query-overview.md) can happen once an index is populated with searchable text, when your client app sends query requests to a search service and handles responses. All query execution is over a search index that you create, own, and store in your service. In your client app, the search experience is defined using APIs from Azure Cognitive Search, and can include relevance tuning, autocomplete, synonym matching, fuzzy matching, pattern matching, filter, and sort.
4545

46-
Functionality is exposed through a simple [REST API](/rest/api/searchservice/) or [.NET SDK](search-howto-dotnet-sdk.md) that masks the inherent complexity of information retrieval. You can also use the Azure portal for service administration and content management, with tools for prototyping and querying your indexes and skillsets. Because the service runs in the cloud, infrastructure and availability are managed by Microsoft.
46+
Functionality is exposed through a simple [REST API](/rest/api/searchservice/), or Azure SDKs like the [Azure SDK for .Net](search-howto-dotnet-sdk.md), that masks the inherent complexity of information retrieval. You can also use the Azure portal for service administration and content management, with tools for prototyping and querying your indexes and skillsets. Because the service runs in the cloud, infrastructure and availability are managed by Microsoft.
4747

4848
## Why use Cognitive Search?
4949

@@ -63,15 +63,15 @@ For more information about specific functionality, see [Features of Azure Cognit
6363

6464
An end-to-end exploration of core search features can be accomplished in four steps:
6565

66-
1. [**Decide on a tier**](search-sku-tier.md). One free search service is allowed per subscription. All quickstarts can be completed on the free tier. For more capacity and capabilities, you will need a [billable tier](https://azure.microsoft.com/pricing/details/search/).
66+
1. [**Decide on a tier**](search-sku-tier.md) and region. One free search service is allowed per subscription. All quickstarts can be completed on the free tier. For more capacity and capabilities, you'll need a [billable tier](https://azure.microsoft.com/pricing/details/search/).
6767

6868
1. [**Create a search service**](search-create-service-portal.md) in the Azure portal.
6969

7070
1. [**Start with Import data wizard**](search-get-started-portal.md). Choose a built-in sample or a supported data source to create, load, and query an index in minutes.
7171

7272
1. [**Finish with Search Explorer**](search-explorer.md), using a portal client to query the search index you just created.
7373

74-
Alternatively, you can create, load, and query a search index in atomically:
74+
Alternatively, you can create, load, and query a search index in atomic steps:
7575

7676
1. [**Create a search index**](search-what-is-an-index.md) using the portal, [REST API](/rest/api/searchservice/create-index), [.NET SDK](search-howto-dotnet-sdk.md), or another SDK. The index schema defines the structure of searchable content.
7777

@@ -98,8 +98,8 @@ Among cloud providers, Azure Cognitive Search is strongest for full text search
9898
Key strengths include:
9999

100100
+ Data integration (crawlers) at the indexing layer.
101+
+ AI and machine learning integration with Azure Cognitive Services, useful if you need to make unsearchable content full text-searchable.
101102
+ Security integration with Azure Active Directory for trusted connections, and with Azure Private Link integration to support private connections to a search index in no-internet scenarios.
102-
+ Machine learning and AI integration with Azure Cognitive Services, useful if you need to make unsearchable content types full text-searchable.
103103
+ Linguistic and custom text analysis in 56 languages.
104104
+ [Full search experience](search-features-list.md): rich query language, relevance tuning and semantic ranking, faceting, autocomplete queries and suggested results, and synonyms.
105105
+ Azure scale, reliability, and world-class availability.

0 commit comments

Comments
 (0)