Yashwanth34567's picture
Upload server/app.py
6a87ad3 verified
raw
history blame contribute delete
304 Bytes
from fastapi import FastAPI
import uvicorn
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello, Hugging Face!"}
def main():
# Start the server
uvicorn.run("server.app:app", host="0.0.0.0", port=7860, reload=False)
if __name__ == "__main__":
main()