# Alternative entry point for Hugging Face Spaces # This file can be used if main.py doesn't work as expected from main import app if __name__ == "__main__": import uvicorn import os port = int(os.getenv("PORT", 7860)) uvicorn.run(app, host="0.0.0.0", port=port)