File size: 131 Bytes
bfc39e7
 
 
 
9aa266f
bfc39e7
 
1
2
3
4
5
6
7
8
from fastapi import FastAPI

app = FastAPI()

@app.get("/predict")
async def predict():
    return {"prediction": "Hello, World!"}