Spaces:
Paused
Paused
| """ | |
| 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) |