File size: 171 Bytes
7954e87 | 1 2 3 4 5 6 7 8 | from app_02.layout import build_demo
# Hugging Face will look for a Gradio Blocks instance named `demo`
demo = build_demo()
if __name__ == "__main__":
demo.launch()
|
7954e87 | 1 2 3 4 5 6 7 8 | from app_02.layout import build_demo
# Hugging Face will look for a Gradio Blocks instance named `demo`
demo = build_demo()
if __name__ == "__main__":
demo.launch()
|