File size: 303 Bytes
3028f96 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #!/usr/bin/env python3
"""
DrRetina — Entry Point
AMD Developer Hackathon 2026
"""
from ui import build_ui
demo = build_ui()
if __name__ == "__main__":
demo.launch(
server_name="0.0.0.0",
server_port=7860,
show_error=True,
ssr_mode=False,
)
|