Pulse_Chat / app.py
aimanathar's picture
Update app.py
1c61878 verified
raw
history blame contribute delete
152 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"message": "🚀 Feedback Chatbot API is running on Hugging Face!"}