jonathang commited on
Commit
4cb9391
1 Parent(s): a8b401c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -97,7 +97,7 @@ def get_model():
97
 
98
  def greet(name):
99
  get_model()
100
- return f"Input is {name}. Processed input is {Sequence.process(name)}"
101
 
102
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
103
  iface.launch()
 
97
 
98
  def greet(name):
99
  get_model()
100
+ return f"Input is {name}. Processed input is {Sequence.prepare(name)}"
101
 
102
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
103
  iface.launch()