Skip to content

Commit 1ae73eb

Browse files
committed
fixed acrolinx bugs
1 parent d72f5c0 commit 1ae73eb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/search/search-create-service-portal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: 'Create a search service in the portal'
33
titleSuffix: Azure AI Search
4-
description: Learn how to set up an Azure AI Search resource in the Azure portal. Choose resource groups, regions, and the SKU or pricing tier.
4+
description: Learn how to set up an Azure AI Search resource in the Azure portal. Choose resource groups, regions, and a pricing tier.
55

66
manager: nitinme
77
author: HeidiSteen
@@ -61,7 +61,7 @@ A resource group is a container that holds related resources for your Azure solu
6161

6262
Over time, you can track current and projected costs all-up or you can view charges for individual resources. The following screenshot shows the kind of cost information you can expect to see when you combine multiple resources into one group.
6363

64-
:::image type="content" source="media/search-create-service-portal/resource-group-cost-management.png" lightbox="media/search-create-service-portal/resource-group-cost-management.png" alt-text="Screenshot of the Manage costs page in the portal." border="true":::
64+
:::image type="content" source="media/search-create-service-portal/resource-group-cost-management.png" lightbox="media/search-create-service-portal/resource-group-cost-management.png" alt-text="Screenshot of the Managing costs page in the portal." border="true":::
6565

6666
> [!TIP]
6767
> Resource groups simplify cleanup because deleting a resource group deletes everything within it.
@@ -161,7 +161,7 @@ Adding resources increases your monthly bill. The [pricing calculator](https://a
161161
1. In the left-navigation pane, select **Settings** > **Scale**.
162162
1. Use the slidebar to add resources of either type.
163163

164-
:::image type="content" source="media/search-create-service-portal/settings-scale.png" lightbox="media/search-create-service-portal/settings-scale.png" alt-text="Screenshot of the Add capacity page." border="true":::
164+
:::image type="content" source="media/search-create-service-portal/settings-scale.png" lightbox="media/search-create-service-portal/settings-scale.png" alt-text="Screenshot of the scale page." border="true":::
165165

166166
## When to add a second service
167167

articles/search/vector-search-how-to-query.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This article uses REST examples. For code samples in other languages, see the [a
3030

3131
+ [A vector store on Azure AI Search](vector-search-how-to-create-index.md).
3232

33-
+ Visual Studio Code with a [REST client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client) and sample data if you want to run these examples on your own. See [Quickstart: Create a search index in Azure AI Search using REST](search-get-started-rest.md) for help getting started.
33+
+ Visual Studio Code with a [REST client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client) and sample data if you want to run these examples on your own. See [Quickstart: Create a search index in Azure AI Search using REST](search-get-started-rest.md) for help with getting started.
3434

3535
> [!TIP]
3636
> To quickly determine whether your index has vectors, look for fields of type `Collection(Edm.Single)`, with a `dimensions` attribute, and a `vectorSearchProfile` assignment.
@@ -296,7 +296,7 @@ If you do want vector fields in the result, here's the basic structure of a resp
296296

297297
+ The **`@search.score`** is determined by the [vector search algorithm](vector-search-ranking.md).
298298

299-
+ Fields in search results are either all `retrievable` fields, or fields in a `select` clause. During vector query execution, the match is made on vector data alone. However, a response can include any `retrievable` field in an index. Because there's no facility for decoding a vector field result, the inclusion of nonvector text fields is helpful for their human readable values..
299+
+ Fields in search results are either all `retrievable` fields, or fields in a `select` clause. During vector query execution, the match is made on vector data alone. However, a response can include any `retrievable` field in an index. Because there's no facility for decoding a vector field result, the inclusion of nonvector text fields is helpful for their human readable values.
300300

301301
## Vector query with filter
302302

0 commit comments

Comments
 (0)