aes-ml-service / main.py
mferdian's picture
roor endpoint
10166b6
raw
history blame contribute delete
302 Bytes
from fastapi import FastAPI
from app.api import endpoint
app = FastAPI(title="AES ML Service")
@app.get("/")
def root():
return {
"service": "AES ML Service",
"status": "running",
"endpoints": ["/score", "/score/batch"]
}
app.include_router(endpoint.router)