Spaces:
Runtime error
Runtime error
| import gradio as gr | |
| from interface.app import WellnessInterface | |
| from config.config import load_config | |
| def main(): | |
| # Load configuration | |
| config = load_config() | |
| # Initialize interface | |
| interface = WellnessInterface(config) | |
| # Launch the application | |
| interface.launch( | |
| share=True, | |
| enable_queue=True, | |
| server_name="0.0.0.0", | |
| server_port=7860 | |
| ) | |
| if __name__ == "__main__": | |
| main() |