pyrymikko commited on
Commit
2a56516
·
1 Parent(s): d35aed9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,8 +1,8 @@
1
  import gradio as gr
2
 
3
  def greet(name):
4
- for x in range(5)
5
- print(name)
6
 
7
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
8
  iface.launch()
 
1
  import gradio as gr
2
 
3
  def greet(name):
4
+ return "Hello" name "!"
5
+
6
 
7
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
8
  iface.launch()