File size: 298 Bytes
5e87341
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python3
"""
Hugging Face Spaces App Entry Point
"""

import sys
from pathlib import Path

# Add current directory to path
sys.path.append(str(Path(__file__).parent))

# Import and run the existing Gradio app
from frontend.gradio_app import main

if __name__ == "__main__":
    main()