File size: 404 Bytes
ec4aa90 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"""
Entry point for HuggingFace Spaces
Redirects to the actual app in src/ui/app.py
"""
import sys
import os
# Add src directory to Python path
sys.path.insert(0, os.path.dirname(__file__))
# Import and run the actual app
from src.ui.app import app
if __name__ == "__main__":
app.launch(
server_name="0.0.0.0",
server_port=7860,
share=False,
show_error=True
)
|