ec17867 e133457
1
2
3
4
5
6
from fastapi import FastAPI app = FastAPI() @app.get("/predict") async def read_root(): return {"message": "Welcome to my FastAPI deployment on Hugging Face!"}