Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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
|
40 |
|
41 |
-
iface = gr.Interface(fn=
|
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()
|