Update app.py
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ output2 = gr.Textbox(label="Rephrased: Option 2")
|
|
36 |
output3 = gr.Textbox(label="Rephrased: Option 3")
|
37 |
|
38 |
iface = gr.Interface(fn=paraphrase,
|
39 |
-
inputs=["text"],
|
40 |
outputs=[output1, output2, output3],
|
41 |
title="Free AI Sentence Rephraser",
|
42 |
description="<ul><li>Paste text in the input box and press 'Submit'.</li><li>Max length: ~35 words (larger content is summarized)</li><li>The rephrased sentences *may not* be better than the original input.</li><li>Model 'humarin' pre-trained by ChatGPT. Temp = 0.7</li></ul>",
|
|
|
36 |
output3 = gr.Textbox(label="Rephrased: Option 3")
|
37 |
|
38 |
iface = gr.Interface(fn=paraphrase,
|
39 |
+
inputs=["text", scale=2],
|
40 |
outputs=[output1, output2, output3],
|
41 |
title="Free AI Sentence Rephraser",
|
42 |
description="<ul><li>Paste text in the input box and press 'Submit'.</li><li>Max length: ~35 words (larger content is summarized)</li><li>The rephrased sentences *may not* be better than the original input.</li><li>Model 'humarin' pre-trained by ChatGPT. Temp = 0.7</li></ul>",
|