Skip to content

Commit fd6d250

Browse files
committed
Fixed broken links
1 parent 99ceea3 commit fd6d250

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

articles/search/vector-search-how-to-configure-vectorizer.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To add a vectorizer to search index, you can use the index designer in Azure por
2727

2828
+ [An index with searchable vector fields](vector-search-how-to-create-index.md) on Azure AI Search.
2929

30-
+ A deployed embedding model, such as **text-embedding-ada-002** on Azure OpenAI. The embedding model used to vectorize a query must be identical to the one used to generate embeddings in the index.
30+
+ A deployed embedding model, such as **text-embedding-ada-002** on Azure OpenAI. It's used to vectorize a query. It must be identical to the model used to generate embeddings in the index.
3131

3232
+ Permissions to use the embedding model. If you're using Azure OpenAI, the caller must have [Cognitive Services OpenAI User](/azure/ai-services/openai/how-to/role-based-access-control#azure-openai-roles) permissions. Or, you can provide an API key.
3333

@@ -37,9 +37,9 @@ We recommend that you enable diagnostic logging on your search service to confir
3737

3838
## Try a vectorizer with sample data
3939

40-
The [Import and vectorize data wizard](search-get-started-portal-import-vectors.md) reads files from Azure Blob storage, creates an index with chunked and vectorized fields, and adds a vectorizer. By design, the vectorizer is set to the same embedding model used to index the content.
40+
The [Import and vectorize data wizard](search-get-started-portal-import-vectors.md) reads files from Azure Blob storage, creates an index with chunked and vectorized fields, and adds a vectorizer. By design, the vectorizer created by the wizard is set to the same embedding model used to index the blob content.
4141

42-
1. [Upload sample data files](/storage/blobs/storage-quickstart-blobs-portal) to a container on Azure Storage. We used [some text files from NASA's earth book](https://github.com/Azure-Samples/azure-search-sample-data/tree/main/nasa-e-book/earth-txt-10) to test these instructions on a free search service.
42+
1. [Upload sample data files](/azure/storage/blobs/storage-quickstart-blobs-portal) to a container on Azure Storage. We used some [small text files from NASA's earth book](https://github.com/Azure-Samples/azure-search-sample-data/tree/main/nasa-e-book/earth-txt-10) to test these instructions on a free search service.
4343

4444
1. Run the [Import and vectorize data wizard](search-get-started-portal-import-vectors.md), choosing the blob container for the data source.
4545

@@ -89,11 +89,11 @@ The [Import and vectorize data wizard](search-get-started-portal-import-vectors.
8989

9090
1. Skip ahead to [test your vectorizer](#test-a-vectorizer) for text-to-vector conversion during query execution.
9191

92-
## Define a vectorizer and vector profile.
92+
## Define a vectorizer and vector profile
9393

94-
This section explains the modifications to an index schema for defining a vectorizer.
94+
This section explains the modifications to an index schema for defining a vectorizer manually.
9595

96-
1. Use [Create or Update Index (preview)](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2023-10-01-preview&preserve-view=true) to add `vectorizers` to the search index.
96+
1. Use [Create or Update Index (preview)](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2023-10-01-preview&preserve-view=true) to add `vectorizers` to a search index.
9797

9898
1. Add the following JSON to your index definition. The vectorizers section provides connection information to a deployed embedding model. This step shows two vectorizer examples so that you can compare an Azure OpenAI embedding model and a custom web API side by side.
9999

articles/search/vector-search-integrated-vectorization.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.service: cognitive-search
99
ms.custom:
1010
- ignite-2023
1111
ms.topic: conceptual
12-
ms.date: 11/07/2023
12+
ms.date: 03/27/2024
1313
---
1414

1515
# Integrated data chunking and embedding in Azure AI Search
@@ -77,9 +77,9 @@ We recommend using the built-in vectorization support of Azure AI Studio. If thi
7777

7878
For query-only vectorization:
7979

80-
1. [Add a vectorizer](vector-search-how-to-configure-vectorizer.md#define-a-vectorizer) to an index. It should be the same embedding model used to generate vectors in the index.
81-
1. [Assign the vectorizer](vector-search-how-to-configure-vectorizer.md#assign-a-vector-profile-to-a-field) to the vector field.
82-
1. [Formulate a vector query](vector-search-how-to-query.md#query-with-integrated-vectorization-preview) that specifies the text string to vectorize.
80+
1. [Add a vectorizer](vector-search-how-to-configure-vectorizer.md#define-a-vectorizer-and-vector-profile) to an index. It should be the same embedding model used to generate vectors in the index.
81+
1. [Assign the vectorizer](vector-search-how-to-configure-vectorizer.md#define-a-vectorizer-and-vector-profile) to a vector profile, and then assign a vector profile to the vector field.
82+
1. [Formulate a vector query](vector-search-how-to-configure-vectorizer.md#test-a-vectorizer) that specifies the text string to vectorize.
8383

8484
A more common scenario - data chunking and vectorization during indexing:
8585

0 commit comments

Comments
 (0)