Skip to content
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

[QnA Maker] Update API data fields. #7729

Merged
merged 2 commits into from
Nov 12, 2019
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,16 @@
"$ref": "#/definitions/UpdateKbContentsDTO"
}
]
},
"enableHierarchicalExtraction": {
"type": "boolean",
"description": "Enable hierarchical extraction of Q-A from files and urls. The value set during KB creation will be used if this field is not present."
},
"defaultAnswerUsedForExtraction": {
"type": "string",
"description": "Text string to be used as the answer in any Q-A which has no extracted answer from the document but has a hierarchy. Required when EnableHierarchicalExtraction field is set to True.",
"maxLength": 300,
"minLength": 1
}
}
},
Expand Down Expand Up @@ -879,6 +889,16 @@
"items": {
"$ref": "#/definitions/FileDTO"
}
},
"enableHierarchicalExtraction": {
"type": "boolean",
"description": "Enable hierarchical extraction of Q-A from files and urls. Value to be considered False if this field is not present."
},
"defaultAnswerUsedForExtraction":{
"type": "string",
"description": "Text string to be used as the answer in any Q-A which has no extracted answer from the document but has a hierarchy. Required when EnableHierarchicalExtraction field is set to True.",
"maxLength": 300,
"minLength": 1
}
}
},
Expand Down