# -*- coding: utf-8 -*- """ Pydantic 数据模型模块 定义 API 请求和响应的数据结构 """ from api.schemas.request import OCRRequestBase64, OCRRequestParams, ROIParams from api.schemas.response import ( ErrorDetail, ExpressInfoData, ExpressResponse, HealthResponse, OCRResponse, OCRResultData, TextBlockData, ) __all__ = [ # Request "OCRRequestBase64", "OCRRequestParams", "ROIParams", # Response "OCRResponse", "OCRResultData", "TextBlockData", "ExpressResponse", "ExpressInfoData", "HealthResponse", "ErrorDetail", ]