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
+ Chunking is nonconfigurable. The effective settings are:
24
26
25
27
```json
@@ -78,7 +80,7 @@ For more secure connections:
78
80
79
81
### Check for space
80
82
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.
82
84
83
85
### Check for semantic ranker
84
86
@@ -351,17 +353,41 @@ Azure AI Search and your Azure AI resource must be in the same region.
351
353
352
354
1. Select **Next**.
353
355
354
-
## Choose advanced settings
356
+
## Add semantic ranking
355
357
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.
357
359
358
-
1. Optionally, specify a [run schedule](search-howto-schedule-indexers.md) for the indexer.
360
+
## Map new fields
359
361
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.
361
387
362
388
## Finish the wizard
363
389
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.
0 commit comments