Spaces:
Running
Running
File size: 368 Bytes
74effde |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
"""
Hugging Face Spaces entry point.
This file is required for Hugging Face Spaces deployment.
"""
from src.main import app
# Hugging Face Spaces will automatically run this app
if __name__ == "__main__":
import uvicorn
import os
host = os.getenv("HOST", "0.0.0.0")
port = int(os.getenv("PORT", "7860"))
uvicorn.run(app, host=host, port=port) |