| import os | |
| from experiment1 import create_experiment_interface | |
| # Create the Gradio interface | |
| demo = create_experiment_interface() | |
| # Launch the app | |
| if __name__ == "__main__": | |
| # For local development | |
| demo.launch() | |
| # For Hugging Face Spaces, the demo variable will be used automatically |