Spaces:
Sleeping
Sleeping
File size: 266 Bytes
04653e2 | 1 2 3 4 5 6 7 8 9 10 11 12 | """Entry point for Streamlit Cloud deployment."""
import sys
from pathlib import Path
# Add app directory to path
sys.path.append(str(Path(__file__).parent))
# Import and run the main app
if __name__ == "__main__":
from app.assistant_v2 import main
main()
|