Skip to content

Commit 8518c7a

Browse files
committed
found a typo
1 parent f7d47e5 commit 8518c7a

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/search/semantic-how-to-query-request.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,30 +34,23 @@ To use semantic ranking:
3434
+ Review [semantic ranking](semantic-search-overview.md) if you need an introduction to the feature.
3535

3636
> [!NOTE]
37-
> Captions and answers are extracted verbatim from text in the search document. The semantic subsystem uses language understanding to determine what part of your content have the characteristics of a caption or answer, but it doesn't compose new sentences or phrases. For this reason, content that includes explanations or definitions work best for semantic ranking.
37+
> Captions and answers are extracted verbatim from text in the search document. The semantic subsystem uses language understanding to recognize what part of your content has the characteristics of a caption or answer, but it doesn't compose new sentences or phrases. For this reason, content that includes explanations or definitions work best for semantic ranking.
3838
3939
## 1 - Choose a client
4040

4141
Choose a search client that supports preview APIs on the query request. Here are some options:
4242

4343
+ [Search explorer](search-explorer.md) in Azure portal, recommended for initial exploration.
4444

45-
+ [Postman app](https://www.postman.com/downloads/) using the [2021-04-30-Preview REST APIs](/rest/api/searchservice/preview-api/search-documents). See this [Quickstart](search-get-started-rest.md) for help with setting up your requests.
45+
+ [Postman app](https://www.postman.com/downloads/) using [Preview REST APIs](/rest/api/searchservice/preview-api/search-documents). See this [Quickstart](search-get-started-rest.md) for help with setting up your requests.
4646

47-
+ [Azure.Search.Documents 11.4.0-beta.5](https://www.nuget.org/packages/Azure.Search.Documents/11.4.0-beta.5) in the Azure SDK for .NET Preview.
47+
+ [Azure.Search.Documents 11.4.0-beta.5](https://www.nuget.org/packages/Azure.Search.Documents/11.4.0-beta.5) in the Azure SDK for .NET.
4848

4949
+ [Azure.Search.Documents 11.3.0b6](https://azuresdkdocs.blob.core.windows.net/$web/python/azure-search-documents/11.3.0b6/azure.search.documents.aio.html) in the Azure SDK for Python.
5050

5151
## 2 - Create a semantic configuration
5252

53-
A *semantic configuration* establishes field inputs for semantic ranking. You can add or update a semantic configuration to an index definition at any time, no rebuild necessary. At query time, specify one on a query request.
54-
55-
+ Fields must be `searchable` and `retrievable`.
56-
+ Fields must be a string: `Edm.String`, `Edm.ComplexType`,`Collection(Edm.String)`.
57-
58-
String subfields of `Collection(Edm.ComplexType)` fields aren't currently supported in semantic ranking, captions, or answers.
59-
60-
A semantic configuration has a name and the following properties:
53+
A *semantic configuration* is a section in your index that establishes field inputs for semantic ranking. You can add or update a semantic configuration at any time, no rebuild necessary. At query time, specify one on a query request. A semantic configuration has a name and the following properties:
6154

6255
| Property | Characteristics |
6356
|----------|-----------------|
@@ -67,6 +60,13 @@ A semantic configuration has a name and the following properties:
6760

6861
You can only specify one title field, but you can specify as many content and keyword fields as you like. For content and keyword fields, list the fields in priority order because lower priority fields may get truncated.
6962

63+
Across all configuration properties, fields must be:
64+
65+
+ Attributed as `searchable` and `retrievable`.
66+
+ Strings of type `Edm.String`, `Edm.ComplexType`, or `Collection(Edm.String)`.
67+
68+
String subfields of `Collection(Edm.ComplexType)` fields aren't currently supported in semantic ranking, captions, or answers.
69+
7070
### [**Azure portal**](#tab/portal)
7171

7272
1. Sign in to the [Azure portal](https://portal.azure.com) and navigate to a search service that has [semantic search enabled](semantic-how-to-enable-disable.md).

0 commit comments

Comments
 (0)