22 lines
397 B
Python
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",
|
|
]
|