THISverse / src /app.py
DD009's picture
Upload 2 files
5e409cd verified
raw
history blame contribute delete
397 Bytes
"""
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