File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed
Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 2222 is_valid_async_response ,
2323 is_valid_sync_response ,
2424)
25- from mindee .mindee_http .endpoint import CustomEndpoint , Endpoint
26- from mindee .mindee_http .mindee_api import MindeeApi
2725from mindee .mindee_http .workflow_endpoint import WorkflowEndpoint
2826from mindee .mindee_http .workflow_settings import WorkflowSettings
2927from mindee .parsing .common .async_predict_response import AsyncPredictResponse
Original file line number Diff line number Diff line change 11from datetime import datetime
22from typing import Generic , Optional , Type
33
4- from mindee .parsing .common import Inference , Page , StringDict
54from mindee .parsing .common .execution_file import ExecutionFile
65from mindee .parsing .common .execution_priority import ExecutionPriority
6+ from mindee .parsing .common .inference import Inference
7+ from mindee .parsing .common .page import Page
78from mindee .parsing .common .prediction import TypePrediction
8- from mindee .product import GeneratedV1Document
9+ from mindee .parsing .common .string_dict import StringDict
10+ from mindee .product .generated .generated_v1 import GeneratedV1Document
911
1012
1113class Execution (Generic [TypePrediction ]):
Original file line number Diff line number Diff line change 11from typing import Optional
22
3- from mindee .parsing .common import StringDict
3+ from mindee .parsing .common . string_dict import StringDict
44
55
66class ExecutionFile :
Original file line number Diff line number Diff line change 11from typing import Generic , Type
22
3- from mindee .parsing .common import Inference , StringDict
43from mindee .parsing .common .api_response import ApiResponse
54from mindee .parsing .common .execution import Execution
5+ from mindee .parsing .common .inference import Inference
66from mindee .parsing .common .prediction import TypePrediction
7+ from mindee .parsing .common .string_dict import StringDict
78
89
910class WorkflowResponse (Generic [TypePrediction ], ApiResponse ):
You can’t perform that action at this time.
0 commit comments