File size: 293 Bytes
5370228
 
 
 
d224a2e
5370228
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()