Spaces:
Runtime error
Runtime error
File size: 248 Bytes
caf3a16 | 1 2 3 4 5 6 7 8 9 10 11 | """HuggingFace Spaces Entry Point - Streamlit Frontend"""
import sys
from pathlib import Path
# Add project root to path
sys.path.insert(0, str(Path(__file__).parent))
# Import and run the main Streamlit app
from frontend.streamlit_app import *
|