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-api-migration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ Azure AI Search breaks backward compatibility as a last resort. Upgrade is neces
43
43
44
44
## How to upgrade
45
45
46
-
In your application code that makes direct calls to the REST APIs, modify the `api-version` parameter on the requst header. For more information about structuring a REST call, see [Quickstart: using REST](search-get-started-rest.md#set-up-visual-studio-code).
46
+
The `api-version` parameter is specified in the request header. In your application code that makes direct calls to the REST APIs, search for all instances of the existing version and then replace it with the new version. For more information about structuring a REST call, see [Quickstart: using REST](search-get-started-rest.md#set-up-visual-studio-code).
47
47
48
48
If you're using an Azure SDK, those packages target specific versions of the REST API. Package updates might coincide with a REST API update, but each SDK is on it's own release schedule that ships independently of Azure AI Search REST API versions. Check the change log of your SDK package to determine whether a package release targets the latest REST API version.
Copy file name to clipboardExpand all lines: articles/search/search-get-started-portal-import-vectors.md
+26-8Lines changed: 26 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Key points about the wizard:
48
48
|---|---|
49
49
|[Azure OpenAI Service](https://aka.ms/oai/access)| text-embedding-ada-002, text-embedding-3-large, or text-embedding-3-small. |
50
50
|[Azure AI Studio model catalog](/azure/ai-studio/what-is-ai-studio)| Azure, Cohere, and Facebook embedding models. |
51
-
|[Azure AI services multiservice account](/azure/ai-services/multi-service-resource)|[Azure AI Vision multimodal](/azure/ai-services/computer-vision/how-to/image-retrieval) for image and text vectorization. Azure AI Vision multimodal is available in selected regions: East US, West US, West US2, North Europe, West Europe, France Central, Sweden Central, Switzerland North, Southeast Asia, Korea Central, Australia East, or Japan East. [Check the documentation](/azure/ai-services/computer-vision/how-to/image-retrieval?tabs=csharp) for an updated list. |
51
+
|[Azure AI services multiservice account](/azure/ai-services/multi-service-resource)|[Azure AI Vision multimodal](/azure/ai-services/computer-vision/how-to/image-retrieval) for image and text vectorization. Azure AI Vision multimodal is available in selected regions: East US, West US, West US2, North Europe, West Europe, France Central, Sweden Central, Switzerland North, Southeast Asia, Korea Central, Australia East, or Japan East. [Check the documentation](/azure/ai-services/computer-vision/how-to/image-retrieval?tabs=csharp) for an updated list. **If you want to use this resource, the account must be in an available region and in the same region as Azure AI Search**. |
52
52
53
53
### Public endpoint requirements
54
54
@@ -208,10 +208,19 @@ The next step is to connect to a data source to use for the search index.
208
208
209
209
1. Choose the storage account and container that provide the data.
210
210
211
-
1. Specify whether you want [deletion detection](search-howto-index-changed-deleted-blobs.md).
211
+
1. Specify whether you want [deletion detection](search-howto-index-changed-deleted-blobs.md) support. On subsequent indexing runs, the search index is updated to remove any search documents based on soft-deleted blobs on Azure Storage.
212
+
213
+
+ You're prompted to choose either **Native blob soft delete** or **Soft delete using custom data**.
214
+
+ Your blob container must have deletion detection enabled before you run the wizard.
215
+
+[Enable soft delete](/azure/storage/blobs/soft-delete-blob-overview) in Azure Storage, or [add custom metadata](search-howto-index-changed-deleted-blobs.md#soft-delete-strategy-using-custom-metadata) to your blobs that indexing recognizes as a deletion flag.
216
+
+ If you choose **Soft delete using custom data**, you're prompted to provide the metadata property name-value pair.
212
217
213
218
1. Specify whether you want your search service to [connect to Azure Storage using its managed identity](search-howto-managed-identities-storage.md).
214
219
220
+
+ You're prompted to choose either a system-managed or user-managed identity.
221
+
+ The identity should have a **Storage Blob Data Reader** role on Azure Storage.
222
+
+ Do not skip this option. A connection error occurs during indexing if the wizard can't connect to Azure Storage.
@@ -237,20 +246,28 @@ Support for OneLake indexing is in preview. For more information about supported
237
246
238
247
In this step, specify the embedding model for vectorizing chunked data.
239
248
240
-
1. On the **Vectorize your text** page, specify whether deployed models are on Azure OpenAI, the Azure AI Studio model catalog, or an existing Azure AI Vision multimodal resource in the same region as Azure AI Search.
249
+
1. On the **Vectorize your text** page, choose the source of the embedding model:
241
250
242
-
1. Specify the Azure subscription.
251
+
+ Azure OpenAI
252
+
+ Azure AI Studio model catalog
253
+
+ An existing Azure AI Vision multimodal resource in the same region as Azure AI Search. If there's no [Azure AI Services multi-service account](/azure/ai-services/multi-service-resource) in the same region, this option isn't available.
254
+
255
+
1. Choose the Azure subscription.
243
256
244
257
1. Make selections according to the resource:
245
258
246
-
1. For Azure OpenAI, select the service, model deployment, and authentication type.
259
+
+ For Azure OpenAI, choose an existing deployment of text-embedding-ada-002, text-embedding-3-large, or text-embedding-3-small.
247
260
248
-
1. For AI Studio catalog, select the project, model deployment, and authentication type.
261
+
+ For AI Studio catalog, choose an existing deployment of an Azure, Cohere, and Facebook embedding model.
249
262
250
-
1. For AI Vision vectorization, select the account.
263
+
+ For AI Vision multimodal embeddings, select the account.
251
264
252
265
For more information, see [Set up embedding models](#set-up-embedding-models) earlier in this article.
253
266
267
+
1. Specify whether you want your search service to authenticate using an API key or managed identity.
268
+
269
+
+ The identity should have a **Cognitive Services OpenAI User** role on the Azure AI multi-services account.
270
+
254
271
1. Select the checkbox that acknowledges the billing impact of using these resources.
255
272
256
273
1. Select **Next**.
@@ -260,7 +277,8 @@ In this step, specify the embedding model for vectorizing chunked data.
260
277
If your content includes images, you can apply AI in two ways:
261
278
262
279
+ Use a supported image embedding model from the catalog, or choose the Azure AI Vision multimodal embeddings API to vectorize images.
263
-
+ Use optical character recognition (OCR) to recognize text in images.
280
+
281
+
+ Use optical character recognition (OCR) to recognize text in images. This option invokes the [OCR skill](cognitive-search-skill-ocr.md) to read text from images.
264
282
265
283
Azure AI Search and your Azure AI resource must be in the same region.
0 commit comments