pr0mila commited on
Commit
f7c3475
1 Parent(s): 00371e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -42,7 +42,7 @@ def abstractive_text(text):
42
  return summary_text
43
 
44
 
45
-
46
  iface = gr.Interface(fn=abstractive_text, inputs= ["text"],outputs=["text"],title="Case summary generation")
47
- iface.launch(share=True)
48
 
 
42
  return summary_text
43
 
44
 
45
+ import gradio as gr
46
  iface = gr.Interface(fn=abstractive_text, inputs= ["text"],outputs=["text"],title="Case summary generation")
47
+ iface.launch(share=False)
48