chiruu12 commited on
Commit
303349a
·
verified ·
1 Parent(s): e52eb49

add gradio demo app

Browse files
Files changed (1) hide show
  1. app.py +10 -0
app.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ """Hugging Face Space entrypoint (Gradio expects app.py at repo root)."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from unplug_tiny_demo import build_demo
6
+
7
+ demo = build_demo()
8
+
9
+ if __name__ == "__main__":
10
+ demo.launch()