my-ai-backend / main.py
manopriyonath's picture
Upload 3 files
dc3cf48 verified
raw
history blame
230 Bytes
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}"
}