Spaces:
Runtime error
Runtime error
File size: 218 Bytes
a62b942 | 1 2 3 4 5 6 7 8 9 10 11 | """
HuggingFace Spaces entry point.
Spaces expects app.py with a Gradio `demo` block that auto-launches.
"""
from demo import build_ui
demo, theme = build_ui()
if __name__ == "__main__":
demo.launch(theme=theme)
|