Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -33,5 +33,6 @@ def summarize(text):
|
|
33 |
|
34 |
paraphrased_text = paraphraze(text)
|
35 |
return paraphrased_text
|
36 |
-
|
|
|
37 |
]]).launch(inline=False)
|
|
|
33 |
|
34 |
paraphrased_text = paraphraze(text)
|
35 |
return paraphrased_text
|
36 |
+
|
37 |
+
gr.Interface(fn=summarize, inputs=gr.inputs.Textbox(lines=7, placeholder="Enter text here"), outputs=[gr.outputs.Textbox(label="Paraphrased Text")], css="footer {visibility: hidden}" examples=[["This Api is the best quillbot api alternative with no words limit."
|
38 |
]]).launch(inline=False)
|