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

Language Authoring 2022-10-01-preview #21068

Merged
merged 6 commits into from
Oct 14, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -2523,7 +2523,7 @@
"type": "object",
"properties": {
"expressions": {
"description": "The regex expressions of the regex component.",
"description": "The regex expressions of the regex component. These expressions follow the .NET regex syntax. For reference, check here: https://learn.microsoft.com/en-us/dotnet/standard/base-types/regular-expressions",
heaths marked this conversation as resolved.
Show resolved Hide resolved
"type": "array",
"items": {
"$ref": "#/definitions/ConversationalAnalysisAuthoringExportedEntityRegexExpression"
Expand All @@ -2533,7 +2533,7 @@
"x-ms-client-name": "ExportedEntityRegex"
},
"ConversationalAnalysisAuthoringExportedEntityRegexExpression": {
"description": "Represents a regex expression inside a regex component.",
"description": "Represents a regex expression inside a regex component. This expression follows the .NET regex syntax. For reference, check here: https://learn.microsoft.com/en-us/dotnet/standard/base-types/regular-expressions",
heaths marked this conversation as resolved.
Show resolved Hide resolved
"type": "object",
"properties": {
"regexKey": {
Expand Down Expand Up @@ -3291,7 +3291,7 @@
"properties": {
"confidenceThreshold": {
"format": "float",
"description": "The threshold of the intent with the highest confidence, at which the prediction will automatically be changed to \"None\".",
"description": "The threshold of the intent with the highest confidence, at which the prediction will automatically be changed to \"None\". The value of the threshold should be between 0 and 1 inclusive.",
"type": "number"
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,13 +285,6 @@
{
"$ref": "common.json#/parameters/ProjectNamePathParameter"
},
{
"in": "header",
"name": "format",
"description": "The format of the project to import. The currently supported formats are json and aml formats. If not provided, the default is set to json.",
"type": "string",
"x-ms-parameter-location": "method"
},
{
"in": "body",
"name": "body",
Expand All @@ -301,6 +294,13 @@
"$ref": "#/definitions/TextAnalysisAuthoringExportedProject"
}
},
{
"in": "header",
"name": "format",
"description": "The format of the project to import. The currently supported formats are json and aml formats. If not provided, the default is set to json.",
"type": "string",
"x-ms-parameter-location": "method"
},
{
"$ref": "common.json#/parameters/ApiVersionParameter"
}
Expand Down Expand Up @@ -3172,7 +3172,7 @@
"properties": {
"confidenceThreshold": {
"format": "float",
"description": "The threshold of the class with the highest confidence, at which the prediction will automatically be changed to \"None\".",
"description": "The threshold of the class with the highest confidence, at which the prediction will automatically be changed to \"None\". The value of the threshold should be between 0 and 1 inclusive.",
"type": "number"
}
},
Expand Down