Rag-project / app.py
Genos77's picture
Create app.py
1553695 verified
raw
history blame contribute delete
128 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello from HuggingFace!"}