gyroing commited on
Commit
1b39098
1 Parent(s): 11b0444

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -36,7 +36,7 @@ def fix_words(words: typing.List[str]) -> typing.List[str]:
36
  return fixed_word
37
 
38
  def greet(name):
39
- return "Hello " + name + "!!"
40
 
41
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
42
  iface.launch()
 
36
  return fixed_word
37
 
38
  def greet(name):
39
+ return name
40
 
41
+ iface = gr.Interface(fn=preprocess_text, inputs="text", outputs="text")
42
  iface.launch()