Skip to content

Commit 2d81b3c

Browse files
committed
Updated vector wizard to include current field mapping feature
1 parent 2246f6e commit 2d81b3c

File tree

1 file changed

+36
-10
lines changed

1 file changed

+36
-10
lines changed

articles/search/search-get-started-portal-import-vectors.md

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: azure-ai-search
88
ms.custom:
99
- build-2024
1010
ms.topic: quickstart
11-
ms.date: 10/17/2024
11+
ms.date: 10/18/2024
1212
---
1313

1414
# Quickstart: Vectorize text and images by using the Azure portal
@@ -17,9 +17,11 @@ This quickstart helps you get started with [integrated vectorization](vector-sea
1717

1818
Key points about the wizard:
1919

20-
+ Source data is either Azure Blob Storage, Azure Data Lake Storage (ADLS) Gen2, or OneLake files and shortcuts.
21-
+ Document parsing mode is the default (one search document per blob or file).
22-
+ Index schema is nonconfigurable. It provides vector and nonvector fields for chunked data.
20+
+ Supported data sources are Azure Blob Storage, Azure Data Lake Storage (ADLS) Gen2, or OneLake files and shortcuts.
21+
+ Supported embedding models are hosted on Azure OpenAI, Azure AI Studio model catalog, Azure AI Vision multimodal.
22+
+ Index schema provides vector and nonvector fields for chunked data.
23+
+ You can add fields, but you can't delete autogenerated fields.
24+
+ Document parsing mode creates chunks (one search document per chunk).
2325
+ Chunking is nonconfigurable. The effective settings are:
2426

2527
```json
@@ -78,7 +80,7 @@ For more secure connections:
7880
7981
### Check for space
8082

81-
If you're starting with the free service, you're limited to 3 indexes, data sources, skillsets, and indexers. Basic limits you to 15. Make sure you have room for extra items before you begin. This quickstart creates one of each object.
83+
If you're starting with the free service, you're limited to three indexes, data sources, skillsets, and indexers. Basic limits you to 15. Make sure you have room for extra items before you begin. This quickstart creates one of each object.
8284

8385
### Check for semantic ranker
8486

@@ -351,17 +353,41 @@ Azure AI Search and your Azure AI resource must be in the same region.
351353

352354
1. Select **Next**.
353355

354-
## Choose advanced settings
356+
## Add semantic ranking
355357

356-
1. On the **Advanced settings** page, you can optionally add [semantic ranking](semantic-search-overview.md) to rerank results at the end of query execution. Reranking promotes the most semantically relevant matches to the top.
358+
On the **Advanced settings** page, you can optionally add [semantic ranking](semantic-search-overview.md) to rerank results at the end of query execution. Reranking promotes the most semantically relevant matches to the top.
357359

358-
1. Optionally, specify a [run schedule](search-howto-schedule-indexers.md) for the indexer.
360+
## Map new fields
359361

360-
1. Select **Next**.
362+
On the **Advanced settings** page, you can optionally add new fields. By default, the wizard generates the following fields with these attributes:
363+
364+
| Field | Description |
365+
|-------|-------------|
366+
| chunk_id | String field. Searchable but not retrievable, filterable, facetable, or sortable. This is the document key for the index. |
367+
| parent_id | String field. Searchable but not retrievable, filterable, facetable, or sortable. Identifies the parent document from which the chunk originates. |
368+
| chunk | String field. Human readable version of the data chunk. Searchable and retrievable, but not filterable, facetable, or sortable. |
369+
| title | String field. Human readable document title or page title or page number. |
370+
| text_vector | Collection(Edm.single). Vector representation of the chunk. Searchable and retrievable, but not filterable, facetable, or sortable.|
371+
372+
You can't modify the generated fields or their attributes, but you can add new fields if your data source provides them. For example, Azure blob storage provides metadata fields.
373+
374+
1. Select **Add new**.
375+
376+
1. Choose a source field from the list of available fields, provide a field name for the index, and accept the default data type or override as needed.
377+
378+
Metadata fields are searchable, but not retrievable, filterable, facetable, or sortable.
379+
380+
1. Select **Reset** if you want to restore the schema to its original version.
381+
382+
## Schedule indexing
383+
384+
On the **Advanced settings** page, you can optionally specify a [run schedule](search-howto-schedule-indexers.md) for the indexer.
385+
386+
1. Select **Next** when you're done with the **Advanced settings** page.
361387

362388
## Finish the wizard
363389

364-
1. On the **Review your configuration** page, specify a prefix for the objects that the wizard will create. A common prefix helps you stay organized.
390+
1. On the **Review your configuration** page, specify a prefix for the objects that the wizard creates. A common prefix helps you stay organized.
365391

366392
1. Select **Create**.
367393

0 commit comments

Comments
 (0)