Files
mediaproc/detect/models.py
2026-03-27 06:14:02 -03:00

22 lines
397 B
Python

"""Re-export pipeline runtime models from core/schema/models/pipeline.py."""
from core.schema.models.pipeline import (
BoundingBox,
BrandDetection,
BrandStats,
DetectionReport,
Frame,
PipelineStats,
TextCandidate,
)
__all__ = [
"BoundingBox",
"BrandDetection",
"BrandStats",
"DetectionReport",
"Frame",
"PipelineStats",
"TextCandidate",
]