You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/search-get-started-vector.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ You use the [Create Index](/rest/api/searchservice/indexes/create) REST API to c
104
104
105
105
The index schema in this example is organized around hotel content. Sample data consists of vector and nonvector names and descriptions of fictitious hotels. This schema includes configurations for vector indexing and queries, and for semantic ranking.
106
106
107
-
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you created earlier.
107
+
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you [created earlier](#create-or-download-the-code-file).
108
108
109
109
1. Find the `### Create a new index` code block in the file. This block contains the request to create the `hotels-vector-quickstart` index on your search service.
110
110
@@ -444,7 +444,7 @@ Creating and loading the index are separate steps. You created the index schema
444
444
445
445
In Azure AI Search, the index contains all searchable data and queries run on the search service. For REST calls, the data is provided as JSON documents. Use [Documents- Index REST API](/rest/api/searchservice/documents/) for this task. The URI is extended to include the `docs` collection and the `index` operation.
446
446
447
-
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you created earlier.
447
+
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you [created earlier](#create-or-download-the-code-file).
448
448
449
449
1. Find the `### Upload documents` code block in the file. This block contains the request to upload documents to the `hotels-vector-quickstart` index on your search service.
450
450
@@ -611,7 +611,7 @@ The vector query string is semantically similar to the search string, but it inc
611
611
612
612
### Single vector search
613
613
614
-
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you created earlier.
614
+
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you [created earlier](#create-or-download-the-code-file).
615
615
616
616
1. Find the `### Run a single vector query` code block in the file. This block contains the request to query the search index.
617
617
@@ -712,7 +712,7 @@ The response for the vector equivalent of `classic lodging near running trails,
712
712
713
713
You can add filters, but the filters are applied to the nonvector content in your index. In this example, the filter applies to the `Tags` field to filter out any hotels that don't provide free Wi-Fi.
714
714
715
-
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you created earlier.
715
+
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you [created earlier](#create-or-download-the-code-file).
716
716
717
717
1. Find the `### Run a vector query with a filter` code block in the file. This block contains the request to query the search index.
718
718
@@ -800,7 +800,7 @@ Hybrid search consists of keyword queries and vector queries in a single search
800
800
- **Search string**: `historic hotel walk to restaurants and shopping`
801
801
- **Vector query string** (vectorized into a mathematical representation): `classic lodging near running trails, eateries, retail`
802
802
803
-
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you created earlier.
803
+
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you [created earlier](#create-or-download-the-code-file).
804
804
805
805
1. Find the `### Run a hybrid query` code block in the file. This block contains the request to query the search index.
806
806
@@ -955,7 +955,7 @@ In the vector-only query, which uses HNSW for finding matches, the Sublime Palac
955
955
956
956
Here's the last query in the collection. This hybrid query with semantic ranking is filtered to show only the hotels within a 500-kilometer radius of Washington D.C. You can set `vectorFilterMode` to null, which is equivalent to the default (`preFilter` for newer indexes and `postFilter` for older ones).
957
957
958
-
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you created earlier.
958
+
1. In Visual Studio Code, open the `az-search-vector-quickstart.rest` file you [created earlier](#create-or-download-the-code-file).
959
959
960
960
1. Find the `### Run a hybrid query with semantic reranking` code block in the file. This block contains the request to query the search index.
0 commit comments