27 lines
571 B
Python
27 lines
571 B
Python
"""
|
|
Re-export pipeline runtime models from core/schema/models/detect_pipeline.py.
|
|
|
|
All models are defined in core/schema/ — this module exists for backward
|
|
compatibility so existing imports (from detect.models import Frame) keep working.
|
|
"""
|
|
|
|
from core.schema.models.detect_pipeline import (
|
|
BoundingBox,
|
|
BrandDetection,
|
|
BrandStats,
|
|
DetectionReport,
|
|
Frame,
|
|
PipelineStats,
|
|
TextCandidate,
|
|
)
|
|
|
|
__all__ = [
|
|
"BoundingBox",
|
|
"BrandDetection",
|
|
"BrandStats",
|
|
"DetectionReport",
|
|
"Frame",
|
|
"PipelineStats",
|
|
"TextCandidate",
|
|
]
|