File size: 346 Bytes
690571a 62c3dde 690571a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | """
HuggingFace Spaces entry point
"""
import sys
import os
# Add the current directory to Python path
sys.path.insert(0, os.path.dirname(__file__))
# Import main application
from main import app
# Export the app for HuggingFace Spaces
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=7860, workers=1)
|