mnist / server.py
carlfeynman's picture
fastapi api server added
bfc39e7
raw
history blame
132 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.post("/predict")
async def predict():
return {"prediction": "Hello, World!"}