John Sathya
Add RF-DETR detection service with FastAPI
202fa33
Raw
History Blame Contribute Delete
521 Bytes
"""Request and response models for the component detection API."""
from component_detection.models.schemas import (
BatchDetectionRequest,
BatchDetectionResponse,
BoundingBox,
ClassDetectionResult,
Detection,
HealthResponse,
ImageDetectionResult,
ImageItem,
)
__all__ = [
"BatchDetectionRequest",
"BatchDetectionResponse",
"BoundingBox",
"ClassDetectionResult",
"Detection",
"HealthResponse",
"ImageDetectionResult",
"ImageItem",
]