Spaces:
Sleeping
Sleeping
| from fastapi import FastAPI | |
| from app.api import endpoint | |
| app = FastAPI(title="AES ML Service") | |
| def root(): | |
| return { | |
| "service": "AES ML Service", | |
| "status": "running", | |
| "endpoints": ["/score", "/score/batch"] | |
| } | |
| app.include_router(endpoint.router) | |