siya02 commited on
Commit
441e6b7
·
1 Parent(s): a8c2ec4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -58,7 +58,8 @@ interface = gradio.Interface(
58
  )
59
 
60
  # Add a `predict()` method to the Gradio app.
61
- def predict(text):
 
62
  # Use the model to predict the output.
63
  output = model(text)
64
 
 
58
  )
59
 
60
  # Add a `predict()` method to the Gradio app.
61
+ def predict(name):
62
+ return "Hello " + name + "!!"
63
  # Use the model to predict the output.
64
  output = model(text)
65