Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -21,6 +21,7 @@ def generate_text(inp):
|
|
| 21 |
return sent
|
| 22 |
|
| 23 |
title = "Paraphraser One"
|
|
|
|
| 24 |
|
| 25 |
output_text = gr.outputs.Textbox()
|
| 26 |
-
gr.Interface(generate_text, "textbox", output_text, title=title).launch(inline=False)
|
|
|
|
| 21 |
return sent
|
| 22 |
|
| 23 |
title = "Paraphraser One"
|
| 24 |
+
description = "Paraphrase means to express meaning using different words. Write or paste your text below, submit, and the machine will attempt to express your meaning using different words."
|
| 25 |
|
| 26 |
output_text = gr.outputs.Textbox()
|
| 27 |
+
gr.Interface(generate_text, "textbox", output_text, title=title, description=description).launch(inline=False)
|