File size: 318 Bytes
8797abf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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()
|