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-portal-image-search.md
+26-1Lines changed: 26 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ author: HeidiSteen
7
7
ms.author: heidist
8
8
ms.service: azure-ai-search
9
9
ms.topic: quickstart
10
-
ms.date: 08/05/2024
10
+
ms.date: 10/18/2024
11
11
ms.custom:
12
12
- references_regions
13
13
---
@@ -112,6 +112,31 @@ The inclusion of plain text in the `chunk` field is useful if you want to use re
112
112
113
113
1. Select **Next**.
114
114
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
+
115
140
## Schedule indexing
116
141
117
142
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.
Copy file name to clipboardExpand all lines: articles/search/search-get-started-portal-import-vectors.md
+12-9Lines changed: 12 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -361,15 +361,18 @@ On the **Advanced settings** page, you can optionally add [semantic ranking](sem
361
361
362
362
On the **Advanced settings** page, you can optionally add new fields. By default, the wizard generates the following fields with these attributes:
363
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.
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.
0 commit comments