Skip to content

Azure Cognitive Search 2021-04-30-Preview dataplane API update #21993

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
cd811b9
Add default semantic config to azure search
wenyangfu Nov 1, 2022
854a534
Add default semantic config
wenyangfu Nov 1, 2022
6b0ae1f
DefaultConfiguration nullable
wenyangfu Nov 3, 2022
24ef6fe
Add default configuration
wenyangfu Nov 15, 2022
6e7bf5c
Add semantic error handling parameter to Search API spec
wenyangfu Nov 15, 2022
f6b54c4
Revise and add semanticErrorHandling
wenyangfu Nov 15, 2022
3df7c4b
Add semanticMaxWaitInMilliseconds parameter
wenyangfu Nov 17, 2022
48939a9
Add semantic failure response to search results
wenyangfu Nov 17, 2022
43d2e8d
Add semantic partial response enums
wenyangfu Nov 17, 2022
491ea24
Revise SemanticMaxWait min valid thresholds
wenyangfu Nov 17, 2022
0e24997
Add debug API component to top-level search result response
wenyangfu Nov 18, 2022
fd37d2d
Add debug search request param
wenyangfu Nov 18, 2022
d7edbf9
Add debug info to each document in response
wenyangfu Nov 18, 2022
4fb0d43
Fix typo in AnswersDebugInfo
wenyangfu Nov 18, 2022
d44cc1f
Iterate on feedback, round 1
wenyangfu Nov 30, 2022
ec75980
Wording: semantic queries -> queries
wenyangfu Nov 30, 2022
5ae129a
Description wording updates
wenyangfu Dec 1, 2022
21671ad
Address another round of feedback
wenyangfu Dec 6, 2022
a12c6f4
More iteration on feedback
wenyangfu Dec 6, 2022
ced497b
Wordsmithing for reranker input description
wenyangfu Dec 6, 2022
652d799
Wordsmithing for semantic partial response
wenyangfu Dec 6, 2022
d374f50
Doc clarity updates
wenyangfu Dec 6, 2022
df266a4
Improve description clarity for semantic partial response
wenyangfu Dec 6, 2022
9e7a97e
Semantic debug info clarity
wenyangfu Dec 6, 2022
eb4a7c0
More doc updates
wenyangfu Dec 6, 2022
a028323
Revise debug API docs
wenyangfu Dec 6, 2022
6c79d29
More revisions
wenyangfu Dec 6, 2022
f8e32bb
Fix some spellcheck, semantic validation, and lintdiff errors
Jan 4, 2023
ea6f097
Fix LintDiff missing type:object specs
wenyangfu Jan 6, 2023
d6b00ce
Fix semantic validation error for search index spec
wenyangfu Jan 6, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1613,6 +1613,7 @@ phraselists
Pids
pipelineruns
piqd
Piqd
PITR
pixelated
pkcs
Expand Down Expand Up @@ -1815,7 +1816,9 @@ Reprovision
reprovisioned
Reprovisioning
reprovisions
reranked
reranker
Reranked
Reranker
Reregister
resnest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@
"k1": 1.3
},
"semantic": {
"defaultConfiguration": "semanticHotels",
"configurations": [
{
"name": "semanticHotels",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -621,6 +621,7 @@
"accessCredentials": null
},
"semantic": {
"defaultConfiguration": "semanticHotels",
"configurations": [
{
"name": "semanticHotels",
Expand Down
Loading