SamDaLamb commited on
Commit
05f9833
·
verified ·
1 Parent(s): 8dd7af4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -1,3 +1,9 @@
 
 
 
 
 
 
1
 
2
 
3
  def speclab(img):
 
1
+ import gradio as gr
2
+
3
+ def greet(name):
4
+ return "Hello " + name + "!!"
5
+
6
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
7
 
8
 
9
  def speclab(img):