Skip to content

Commit 1799de5

Browse files
committed
edit pass: search-get-started-articles
1 parent 3bd1f19 commit 1799de5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

articles/search/search-get-started-powershell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ All requests require an API key on every request sent to your service. Having a
7272
}
7373
```
7474
75-
## 1 - Create an index
75+
## Create an index
7676
7777
Unless you're using the portal, an index must exist on the service before you can load data. This step defines the index and pushes it to the service. The [Create Index REST API](/rest/api/searchservice/create-index) is used for this step.
7878
@@ -168,7 +168,7 @@ This index is named `hotels-quickstart` and has the field definitions you see in
168168
169169
<a name="load-documents"></a>
170170
171-
## 2 - Load documents
171+
## Load documents
172172
173173
To push documents, use an HTTP POST request to your index's URL endpoint. The REST API for this task is [Add, Update, or Delete Documents](/rest/api/searchservice/addupdate-or-delete-documents).
174174
@@ -306,7 +306,7 @@ To push documents, use an HTTP POST request to your index's URL endpoint. The RE
306306
}
307307
```
308308
309-
## 3 - Search an index
309+
## Search an index
310310
311311
This step shows you how to query an index by using the [Search Documents API](/rest/api/searchservice/search-documents).
312312

articles/search/search-get-started-rest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ If you're not familiar with the REST client for Visual Studio Code, this section
7070
7171
:::image type="content" source="media/search-get-started-rest/rest-client-request-setup.png" lightbox="media/search-get-started-rest/rest-client-request-setup.png" alt-text="Screenshot that shows a REST client configured for a search service request.":::
7272
73-
**Key points:**
73+
Key points:
7474
7575
- Parameters are specified by using an `@` prefix.
7676
- `###` designates a REST call. The next line contains the request, which must include `HTTP/1.1`.

articles/search/search-get-started-vector.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ The index schema is organized around hotel content. Sample data consists of vect
223223
224224
1. Select **Send request**. Recall that you need the REST client to send requests. You should have an `HTTP/1.1 201 Created` response. The response body should include the JSON representation of the index schema.
225225
226-
**Key points:**
226+
Key points:
227227
228228
- The `fields` collection includes a required key field and text and vector fields (such as `Description` and `DescriptionVector`) for text and vector search. Colocating vector and nonvector fields in the same index enables hybrid queries. For instance, you can combine filters, text search with semantic ranking, and vectors into a single query operation.
229229
- Vector fields must be `type: Collection(Edm.Single)` with `dimensions` and `vectorSearchProfile` properties.
@@ -371,7 +371,7 @@ api-key: {{apiKey}}
371371
}
372372
```
373373

374-
**Key points:**
374+
Key points:
375375

376376
- Documents in the payload consist of fields defined in the index schema.
377377
- Vector fields contain floating point values. The dimensions attribute has a minimum of 2 and a maximum of 3,072 floating point values each. This quickstart sets the dimensions attribute to 1,536 because that's the size of embeddings generated by the Open AI's **text-embedding-ada-002** model.
@@ -385,7 +385,7 @@ There are several queries to demonstrate various patterns:
385385
- [Single vector search](#single-vector-search)
386386
- [Single vector search with filter](#single-vector-search-with-filter)
387387
- [Hybrid search](#hybrid-search)
388-
- [Semantic hybrid search with filter](#semantic-hybrid-search-with-filter)
388+
- [Semantic hybrid search with filter](#semantic-hybrid-search-with-a-filter)
389389

390390
The vector queries in this section are based on two strings:
391391

@@ -791,7 +791,7 @@ Here's the last query in the collection. This hybrid query with semantic ranking
791791
}
792792
```
793793
794-
**Key points:**
794+
Key points:
795795
796796
- Vector search is specified through the `vectors.value` property. Keyword search is specified through the `search` property.
797797
- In a hybrid search, you can integrate vector search with full-text search over keywords. Filters, spell check, and semantic ranking apply to textual content only, and not vectors. In this final query, there's no semantic `answer` because the system didn't produce one that was sufficiently strong.

0 commit comments

Comments
 (0)