Spaces:
Running
Running
| from fastapi import FastAPI | |
| app = FastAPI() | |
| def home(): | |
| return {"message": "Backend is working"} | |
| def chat(prompt: str): | |
| return { | |
| "reply": f"You said: {prompt}" | |
| } | |