Skip to content

Commit 67f6365

Browse files
committed
Add field mapping section to image vector getstart
1 parent 2d81b3c commit 67f6365

File tree

2 files changed

+38
-10
lines changed

2 files changed

+38
-10
lines changed

articles/search/search-get-started-portal-image-search.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: HeidiSteen
77
ms.author: heidist
88
ms.service: azure-ai-search
99
ms.topic: quickstart
10-
ms.date: 08/05/2024
10+
ms.date: 10/18/2024
1111
ms.custom:
1212
- references_regions
1313
---
@@ -112,6 +112,31 @@ The inclusion of plain text in the `chunk` field is useful if you want to use re
112112

113113
1. Select **Next**.
114114

115+
## Map new fields
116+
117+
On the **Advanced settings** page, you can optionally add new fields. By default, the wizard generates the following fields with these attributes:
118+
119+
| Field | Applies to | Description |
120+
|-------|------------|-------------|
121+
| chunk_id | Text and image vectors | Generated string field. Searchable, retrievable, sortable. This is the document key for the index. |
122+
| parent_id | Text vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the chunk originates. |
123+
| text_parent_id | Image vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the chunk originates. |
124+
| image_parent_id | Image vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the image originates. |
125+
| chunk | Text and image vectors | String field. Human readable version of the data chunk. Searchable and retrievable, but not filterable, facetable, or sortable. |
126+
| title | Text and image vectors | String field. Human readable document title or page title or page number. Searchable and retrievable, but not filterable, facetable, or sortable. |
127+
| text_vector | Text vectors | Collection(Edm.single). Vector representation of the chunk. Searchable and retrievable, but not filterable, facetable, or sortable.|
128+
| image_vector | Image vectors | Collection(Edm.single). Vector representation of the image. Searchable and retrievable, but not filterable, facetable, or sortable.|
129+
130+
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 a collection of metadata fields.
131+
132+
1. Select **Add new**.
133+
134+
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.
135+
136+
Metadata fields are searchable, but not retrievable, filterable, facetable, or sortable.
137+
138+
1. Select **Reset** if you want to restore the schema to its original version.
139+
115140
## Schedule indexing
116141

117142
1. On the **Advanced settings** page, under **Schedule indexing**, specify a [run schedule](search-howto-schedule-indexers.md) for the indexer. We recommend **Once** for this exercise. For data sources where the underlying data is volatile, you can schedule indexing to pick up the changes.

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

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -361,15 +361,18 @@ On the **Advanced settings** page, you can optionally add [semantic ranking](sem
361361

362362
On the **Advanced settings** page, you can optionally add new fields. By default, the wizard generates the following fields with these attributes:
363363

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.
364+
| Field | Applies to | Description |
365+
|-------|------------|-------------|
366+
| chunk_id | Text and image vectors | Generated string field. Searchable, retrievable, sortable. This is the document key for the index. |
367+
| parent_id | Text vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the chunk originates. |
368+
| text_parent_id | Image vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the chunk originates. |
369+
| image_parent_id | Image vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the image originates. |
370+
| chunk | Text and image vectors | String field. Human readable version of the data chunk. Searchable and retrievable, but not filterable, facetable, or sortable. |
371+
| title | Text and image vectors | String field. Human readable document title or page title or page number. Searchable and retrievable, but not filterable, facetable, or sortable. |
372+
| text_vector | Text vectors | Collection(Edm.single). Vector representation of the chunk. Searchable and retrievable, but not filterable, facetable, or sortable.|
373+
| image_vector | Image vectors | Collection(Edm.single). Vector representation of the image. Searchable and retrievable, but not filterable, facetable, or sortable.|
374+
375+
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 a collection of metadata fields.
373376

374377
1. Select **Add new**.
375378

0 commit comments

Comments
 (0)