mano96 commited on
Commit
2befa1d
·
1 Parent(s): 5a794ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,9 +38,9 @@ def text(url):
38
  return output
39
 
40
  import gradio as gr
41
- def summarize(URL):
42
 
43
- outputtext = text(URL)
44
  return outputtext
45
  gr.Interface(fn=summarize, inputs=gr.inputs.Textbox(lines=7, placeholder="Enter text here"), outputs=[gr.outputs.Textbox(label="Paraphrased Text")],examples=[["developed by python team"
46
  ]]).launch(inline=False)
 
38
  return output
39
 
40
  import gradio as gr
41
+ def summarize(url):
42
 
43
+ outputtext = text(url)
44
  return outputtext
45
  gr.Interface(fn=summarize, inputs=gr.inputs.Textbox(lines=7, placeholder="Enter text here"), outputs=[gr.outputs.Textbox(label="Paraphrased Text")],examples=[["developed by python team"
46
  ]]).launch(inline=False)