Spaces:
Runtime error
Runtime error
| """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", | |
| ] | |