Thumbapi / app.py
earncoding's picture
Update app.py
c0c4e97 verified
Raw
History Blame Contribute Delete
430 Bytes
"""
Hugging Face Spaces entry point.
HF Spaces runs Python 3.13 and injects uvicorn/gradio automatically.
Port 7860 is required.
"""
import uvicorn
from app.main import app # noqa: F401
if __name__ == "__main__":
uvicorn.run(
"app.main:app",
host="0.0.0.0",
port=7860,
workers=1,
loop="asyncio",
log_level="info",
access_log=True,
timeout_keep_alive=30,
)