from fastapi import FastAPI app = FastAPI(title="Auteur AI API") @app.get("/") async def root(): return {"message": "Auteur AI Backend is running"}