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: pyproject.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[project]
2
2
name = "uipath"
3
-
version = "2.1.119"
3
+
version = "2.1.120"
4
4
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
file_path (str, optional): Path to the document file to be processed. Must be provided if `classification_result` is not provided.
778
778
project_type (ProjectType, optional): Type of the project. Must be provided if `project_name` is provided.
779
779
document_type_name (str, optional): Document type name associated with the extractor to be used for extraction. Required if `project_type` is `ProjectType.MODERN` and `project_name` is provided.
780
+
classification_result (ClassificationResult, optional): The classification result obtained from a previous classification step. If provided, `project_name`, `project_type`, `file`, `file_path`, and `document_type_name` must not be provided.
780
781
781
782
Note:
782
783
Either `file` or `file_path` must be provided, but not both.
783
784
784
785
Returns:
785
-
ExtractionResponse: The extraction result containing predicted data.
786
+
Union[ExtractionResponse, ExtractionResponseIXP]: The extraction response containing the extracted data.
"""Create a validation action for a document based on the extraction response. More details about validation actions can be found in the [official documentation](https://docs.uipath.com/ixp/automation-cloud/latest/user-guide/validating-extractions).
1101
+
"""Create a validate extraction action for a document based on the extraction response. More details about validation actions can be found in the [official documentation](https://docs.uipath.com/ixp/automation-cloud/latest/user-guide/validating-extractions).
"""Asynchronous version of the [`create_validation_action`][uipath._services.documents_service.DocumentsService.create_validation_action] method."""
1160
+
"""Asynchronous version of the [`create_validation_action`][uipath._services.documents_service.DocumentsService.create_validate_extraction_action] method."""
"""Get the result of a validate extraction action.
1172
1187
1173
1188
Note:
1174
1189
This method will block until the validation action is completed, meaning the user has completed the validation in UiPath Action Center.
1175
1190
1176
1191
Args:
1177
-
validation_action (ValidationAction): The validation action to get the result for, typically obtained from the [`create_validation_action`][uipath._services.documents_service.DocumentsService.create_validation_action] method.
1192
+
validation_action (ValidationAction): The validation action to get the result for, typically obtained from the [`create_validate_extraction_action`][uipath._services.documents_service.DocumentsService.create_validate_extraction_action] method.
1178
1193
1179
1194
Returns:
1180
-
ValidatedResult: The result of the validation action.
1195
+
Union[ExtractionResponse, ExtractionResponseIXP]: The validated extraction response.
"""Asynchronous version of the [`get_validation_result`][uipath._services.documents_service.DocumentsService.get_validate_extraction_result] method."""
0 commit comments