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
+25-2Lines changed: 25 additions & 2 deletions
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,29 @@ 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
+
| text_parent_id | Image vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the chunk originates. |
123
+
| image_parent_id | Image vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the image originates. |
124
+
| chunk | Text and image vectors | String field. Human readable version of the data chunk. Searchable and retrievable, but not filterable, facetable, or sortable. |
125
+
| 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. |
126
+
| image_vector | Image vectors | Collection(Edm.single). Vector representation of the image. Searchable and retrievable, but not filterable, facetable, or sortable.|
127
+
128
+
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.
129
+
130
+
1. Select **Add new**.
131
+
132
+
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.
133
+
134
+
Metadata fields are searchable, but not retrievable, filterable, facetable, or sortable.
135
+
136
+
1. Select **Reset** if you want to restore the schema to its original version.
137
+
115
138
## Schedule indexing
116
139
117
140
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.
@@ -132,7 +155,7 @@ When the wizard completes the configuration, it creates the following objects:
132
155
133
156
+ An indexer that drives the indexing pipeline.
134
157
135
-
+ A data source connection to Blob Storage.
158
+
+ A data source connection to Azure Blob Storage.
136
159
137
160
+ An index with vector fields, text fields, vectorizers, vector profiles, and vector algorithms. You can't modify the default index during the wizard workflow. Indexes conform to the [2024-05-01-preview REST API](/rest/api/searchservice/indexes/create-or-update?view=rest-searchservice-2024-05-01-preview&preserve-view=true) so that you can use preview features.
+ Chunking is nonconfigurable. The effective settings are:
24
26
25
27
```json
26
-
textSplitMode: "pages",
27
-
maximumPageLength: 2000,
28
-
pageOverlapLength: 500
28
+
"textSplitMode": "pages",
29
+
"maximumPageLength": 2000,
30
+
"pageOverlapLength": 500,
31
+
"maximumPagesToTake": 0, #unlimited
32
+
"unit": "characters",
29
33
```
30
34
31
35
## Prerequisites
@@ -78,7 +82,7 @@ For more secure connections:
78
82
79
83
### Check for space
80
84
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.
85
+
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.
82
86
83
87
### Check for semantic ranker
84
88
@@ -88,7 +92,7 @@ The wizard supports semantic ranking, but only on the Basic tier and higher, and
88
92
89
93
This section points you to data that works for this quickstart.
1. On the **Set up your data connection** page, select **Azure Blob Storage**.
234
238
@@ -351,17 +355,41 @@ Azure AI Search and your Azure AI resource must be in the same region.
351
355
352
356
1. Select **Next**.
353
357
354
-
## Choose advanced settings
358
+
## Add semantic ranking
355
359
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.
360
+
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.
357
361
358
-
1. Optionally, specify a [run schedule](search-howto-schedule-indexers.md) for the indexer.
362
+
## Map new fields
359
363
360
-
1. Select **Next**.
364
+
On the **Advanced settings** page, you can optionally add new fields. By default, the wizard generates the following fields with these attributes:
365
+
366
+
| Field | Applies to | Description |
367
+
|-------|------------|-------------|
368
+
| chunk_id | Text and image vectors | Generated string field. Searchable, retrievable, sortable. This is the document key for the index. |
369
+
| parent_id | Text vectors | Generated string field. Retrievable, filterable. Identifies the parent document from which the chunk 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
+
374
+
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.
375
+
376
+
1. Select **Add new**.
377
+
378
+
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.
379
+
380
+
Metadata fields are searchable, but not retrievable, filterable, facetable, or sortable.
381
+
382
+
1. Select **Reset** if you want to restore the schema to its original version.
383
+
384
+
## Schedule indexing
385
+
386
+
On the **Advanced settings** page, you can optionally specify a [run schedule](search-howto-schedule-indexers.md) for the indexer.
387
+
388
+
1. Select **Next** when you're done with the **Advanced settings** page.
361
389
362
390
## Finish the wizard
363
391
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.
392
+
1. On the **Review your configuration** page, specify a prefix for the objects that the wizard creates. A common prefix helps you stay organized.
0 commit comments