""" Tool_OCR - Database Models New schema with external API authentication and user task isolation. All tables use 'tool_ocr_' prefix for namespace separation. """ # New models for external authentication system from app.models.user_v2 import User from app.models.task import Task, TaskFile, TaskStatus from app.models.session import Session # Legacy models (will be deprecated after migration) from app.models.ocr import OCRBatch, OCRFile, OCRResult from app.models.export import ExportRule from app.models.translation import TranslationConfig __all__ = [ # New authentication and task models "User", "Task", "TaskFile", "TaskStatus", "Session", # Legacy models (deprecated) "OCRBatch", "OCRFile", "OCRResult", "ExportRule", "TranslationConfig", ]