Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,4 +12,5 @@ def generate(text):
|
|
| 12 |
return response
|
| 13 |
|
| 14 |
in_text = gr.Textbox(lines=1, label="English", placeholder="English text here")
|
| 15 |
-
out = gr.Textbox(lines=1,
|
|
|
|
|
|
| 12 |
return response
|
| 13 |
|
| 14 |
in_text = gr.Textbox(lines=1, label="English", placeholder="English text here")
|
| 15 |
+
out = gr.Textbox(lines=1, label="Generated tensors"
|
| 16 |
+
gr.Interface(generate, inputs=in_text, outputs=out).launch()
|