Tantawi's picture
Upload 13 files
f2a4578 verified
raw
history blame contribute delete
214 Bytes
import os
import uvicorn
from main import app
if __name__ == "__main__":
# Hugging Face Spaces uses port 7860
port = int(os.environ.get("PORT", 7860))
uvicorn.run(app, host="0.0.0.0", port=port)