from fastapi import FastAPI app = FastAPI(title="Generated Backend") @app.get("/") def read_root(): return {"message": "Welcome to the generated backend"}