Update app.py
Browse files
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=
|
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 |
|