JuanJoseMV commited on
Commit
551f88f
·
1 Parent(s): 58995dc
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -2,8 +2,8 @@ import gradio as gr
2
 
3
  # model =
4
 
5
- def greet(name):
6
- return "Hello " + name + "!!"
7
 
8
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
  iface.launch()
 
2
 
3
  # model =
4
 
5
+ def greet(sentiment):
6
+ return "Hello " + sentiment + "!!"
7
 
8
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
9
  iface.launch()