File size: 285 Bytes
7a11d7a
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# 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)