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-python.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ ms.author: heidist
8
8
ms.service: cognitive-search
9
9
ms.devlang: python
10
10
ms.topic: quickstart
11
-
ms.date: 08/31/2022
11
+
ms.date: 01/17/2023
12
12
ms.custom: devx-track-python, mode-api
13
13
---
14
14
@@ -275,7 +275,7 @@ This step shows you how to query an index using the **search** method of the [se
275
275
1. The following step executes an empty search (`search=*`), returning an unranked list (search score=1.0) of arbitrary documents. Because there are no criteria, all documents are included in results. This query prints just two of the fields in each document. It also adds `include_total_count=True` to get a count of all documents (4) in the results.
@@ -285,7 +285,7 @@ This step shows you how to query an index using the **search** method of the [se
285
285
1. The next query adds whole terms to the search expression ("wifi"). This query specifies that results contain only those fields in the `select` statement. Limiting the fields that come back minimizes the amount of data sent back over the wire and reduces search latency.
Copy file name to clipboardExpand all lines: articles/search/semantic-answers.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ author: HeidiSteen
8
8
ms.author: heidist
9
9
ms.service: cognitive-search
10
10
ms.topic: conceptual
11
-
ms.date: 11/02/2022
11
+
ms.date: 01/16/2023
12
12
---
13
13
14
14
# Return a semantic answer in Azure Cognitive Search
@@ -166,7 +166,7 @@ For best results, return semantic answers on a document corpus having the follow
166
166
167
167
+ The "semanticConfiguration" must include fields that offer sufficient text in which an answer is likely to be found. Fields more likely to contain answers should be listed first in "prioritizedContentFields". Only verbatim text from a document can appear as an answer.
168
168
169
-
+ Query strings must not be null (search=`*`) and the string should have the characteristics of a question, as opposed to a keyword search (a sequential list of arbitrary terms or phrases). If the query string doesn't appear to be answer, answer processing is skipped, even if the request specifies "answers" as a query parameter.
169
+
+ Query strings must not be null (search=`*`) and the string should have the characteristics of a question, such as "what is" or "how to", as opposed to a keyword search consisting of terms or phrases in arbitrary order. If the query string doesn't appear to be a question, answer processing is skipped, even if the request specifies "answers" as a query parameter.
170
170
171
171
+ Semantic extraction and summarization have limits over how many tokens per document can be analyzed in a timely fashion. In practical terms, if you have large documents that run into hundreds of pages, try to break up the content into smaller documents first.
0 commit comments