PeacebinfLow commited on
Commit
7954e87
·
verified ·
1 Parent(s): 8d67576

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ from app_02.layout import build_demo
2
+
3
+ # Hugging Face will look for a Gradio Blocks instance named `demo`
4
+ demo = build_demo()
5
+
6
+ if __name__ == "__main__":
7
+ demo.launch()