aliabd HF Staff commited on
Commit
68167ac
·
1 Parent(s): 2d2bda5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -1,3 +1,4 @@
1
  import gradio as gr
2
-
3
- gr.Interface(lambda x:x, "text", "text").launch()
 
 
1
  import gradio as gr
2
+ def greet(name):
3
+ return "hello" + name
4
+ gr.Interface(greet, "text", "text").launch()