Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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.
|
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()
|