Wootang01 commited on
Commit
ca9e57a
·
1 Parent(s): e2891e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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)