"""OCR Service FastAPI Application.""" from fastapi import FastAPI from app.config import settings app = FastAPI( title="MotoVaultPro OCR Service", description="OCR processing service for vehicle documents", version="1.0.0", ) @app.get("/health") async def health_check() -> dict: """Health check endpoint for container orchestration.""" return {"status": "healthy"} @app.get("/") async def root() -> dict: """Root endpoint with service information.""" return { "service": "mvp-ocr", "version": "1.0.0", "log_level": settings.log_level, }