topo-align / app.py
omesbah's picture
chore: initial commit for Hugging Face publication
8797abf
raw
history blame contribute delete
318 Bytes
import os
import streamlit as st
# Import the main UI logic
# Since the Space environment might have its own directory structure,
# we ensure the project root is in the path.
import sys
sys.path.append(os.path.dirname(__file__))
# Run the UI
from equilib.human_ui import main
if __name__ == "__main__":
main()