from fastapi import FastAPI app = FastAPI() @app.get("/") def home(): return {"message": "Backend is working"} @app.get("/chat") def chat(prompt: str): return { "reply": f"You said: {prompt}" }