File size: 397 Bytes
5e409cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
"""
Hugging Face Spaces Entry Point
This file is used when deploying to Hugging Face Spaces
"""
import sys
from pathlib import Path
# Add app directory to path
sys.path.insert(0, str(Path(__file__).parent))
# Import and run Streamlit app
from streamlit_app import *
# Note: Hugging Face Spaces will automatically detect streamlit_app.py
# But we can also use this as an entry point if needed
|