Files
wehub-resource-sync e904b667c6
PaddleOCR PR Tests GPU / test-pr-gpu (push) Blocked by required conditions
PaddleOCR PR Tests / test-pr (push) Blocked by required conditions
PaddleOCR PR Tests / test-pr-python (3.8) (push) Waiting to run
Build/Publish Develop Docs / deploy (push) Failing after 1s
PaddleOCR Code Style Check / check-code-style (push) Failing after 1s
PaddleOCR PR Tests GPU / detect-changes (push) Failing after 1s
PaddleOCR PR Tests GPU / test-pr-gpu-impl (push) Waiting to run
PaddleOCR PR Tests / detect-changes (push) Failing after 1s
PaddleOCR PR Tests / test-pr-python (3.13) (push) Waiting to run
PaddleOCR PR Tests / test-pr-python (3.9) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 11:59:26 +08:00

82 lines
2.2 KiB
Python

# Copyright (c) 2026 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from dataclasses import dataclass, field
from typing import Any, Dict, List, Literal, Optional
@dataclass
class OCRPage:
pruned_result: Any
ocr_image_url: Optional[str] = None
doc_preprocessing_image_url: Optional[str] = None
input_image_url: Optional[str] = None
raw: Dict[str, Any] = field(default_factory=dict)
@dataclass
class DocParsingPage:
markdown_text: str
markdown_images: Dict[str, str] = field(default_factory=dict)
output_images: Dict[str, str] = field(default_factory=dict)
pruned_result: Any = None
input_image_url: Optional[str] = None
exports: Dict[str, Any] = field(default_factory=dict)
markdown: Dict[str, Any] = field(default_factory=dict)
raw: Dict[str, Any] = field(default_factory=dict)
@dataclass
class OCRResult:
job_id: str
pages: List[OCRPage] = field(default_factory=list)
data_info: Dict[str, Any] = field(default_factory=dict)
@dataclass
class DocParsingResult:
job_id: str
pages: List[DocParsingPage] = field(default_factory=list)
data_info: Dict[str, Any] = field(default_factory=dict)
@dataclass
class Progress:
total_pages: int = 0
extracted_pages: int = 0
start_time: Optional[str] = None
end_time: Optional[str] = None
@dataclass
class Job:
job_id: str
model: str
task: Literal["ocr", "document_parsing"]
@dataclass
class JobStatus:
job_id: str
state: str
progress: Optional[Progress] = None
result: Any = None
error_msg: Optional[str] = None
@dataclass
class BatchStatus:
batch_id: str
jobs: List[JobStatus] = field(default_factory=list)