AiServices / server.py
ikraamkb's picture
Create server.py
76fbd63 verified
raw
history blame
229 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "FastAPI on Hugging Face Spaces"}
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860)