Babu Pallam
Add Hugging Face Spaces entrypoint for Streamlit deployment
919e800
Raw
History Blame Contribute Delete
409 Bytes
# ============================================================
# FILE: app.py
# ============================================================
# PURPOSE:
# Hugging Face Spaces entry point.
#
# This file imports and runs the actual Streamlit app from:
# app/streamlit_app.py
# ============================================================
from app.streamlit_app import main
if __name__ == "__main__":
main()