from ui.gradio_ui import GradioUI def main(): print("🚀 Launching... \n\n") try: ui = GradioUI() demo = ui.create_interface() demo.launch(mcp_server=True) except Exception as e: print(f"❌ Error: {e}") if __name__ == "__main__": main()