omerXfaruq commited on
Commit
ce12d47
·
1 Parent(s): 950245f

full commit

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ image_size = 384
4
+
5
+
6
+ def temp(input):
7
+ return "output"
8
+
9
+
10
+ iface = gr.Interface(fn=temp, allow_screenshot=True)
11
+ iface.launch(debug=True)