hmb HF staff commited on
Commit
cf9cb6e
1 Parent(s): 66d9581

Create run.py

Browse files
Files changed (1) hide show
  1. run.py +10 -0
run.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ demo = gr.Interface(
4
+ fn=None,
5
+ inputs=["imageeditor"],
6
+ outputs=None,
7
+ title=gr.__version__
8
+ )
9
+
10
+ demo.launch()