from fastapi import FastAPI app = FastAPI() @app.get("/") async def read_root(): return {"message": "Welcome to my FastAPI deployment on Hugging Face!"}